Alibaba Cloud
getIpv6Gateways
This data source provides the Vpc Ipv6 Gateways of the current Alibaba Cloud user.
NOTE: Available in v1.142.0+.
Example Usage
using Pulumi;
using AliCloud = Pulumi.AliCloud;
class MyStack : Stack
{
public MyStack()
{
var ids = Output.Create(AliCloud.Vpc.GetIpv6Gateways.InvokeAsync(new AliCloud.Vpc.GetIpv6GatewaysArgs
{
Ids =
{
"example_id",
},
}));
this.VpcIpv6GatewayId1 = ids.Apply(ids => ids.Gateways?[0]?.Id);
var nameRegex = Output.Create(AliCloud.Vpc.GetIpv6Gateways.InvokeAsync(new AliCloud.Vpc.GetIpv6GatewaysArgs
{
NameRegex = "^my-Ipv6Gateway",
}));
this.VpcIpv6GatewayId2 = nameRegex.Apply(nameRegex => nameRegex.Gateways?[0]?.Id);
var vpcId = Output.Create(AliCloud.Vpc.GetIpv6Gateways.InvokeAsync(new AliCloud.Vpc.GetIpv6GatewaysArgs
{
Ids =
{
"example_id",
},
VpcId = "example_value",
}));
this.VpcIpv6GatewayId3 = vpcId.Apply(vpcId => vpcId.Gateways?[0]?.Id);
var status = Output.Create(AliCloud.Vpc.GetIpv6Gateways.InvokeAsync(new AliCloud.Vpc.GetIpv6GatewaysArgs
{
Ids =
{
"example_id",
},
Status = "Available",
}));
this.VpcIpv6GatewayId4 = status.Apply(status => status.Gateways?[0]?.Id);
}
[Output("vpcIpv6GatewayId1")]
public Output<string> VpcIpv6GatewayId1 { get; set; }
[Output("vpcIpv6GatewayId2")]
public Output<string> VpcIpv6GatewayId2 { get; set; }
[Output("vpcIpv6GatewayId3")]
public Output<string> VpcIpv6GatewayId3 { get; set; }
[Output("vpcIpv6GatewayId4")]
public Output<string> VpcIpv6GatewayId4 { get; set; }
}
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
ids, err := vpc.GetIpv6Gateways(ctx, &vpc.GetIpv6GatewaysArgs{
Ids: []string{
"example_id",
},
}, nil)
if err != nil {
return err
}
ctx.Export("vpcIpv6GatewayId1", ids.Gateways[0].Id)
nameRegex, err := vpc.GetIpv6Gateways(ctx, &vpc.GetIpv6GatewaysArgs{
NameRegex: pulumi.StringRef("^my-Ipv6Gateway"),
}, nil)
if err != nil {
return err
}
ctx.Export("vpcIpv6GatewayId2", nameRegex.Gateways[0].Id)
vpcId, err := vpc.GetIpv6Gateways(ctx, &vpc.GetIpv6GatewaysArgs{
Ids: []string{
"example_id",
},
VpcId: pulumi.StringRef("example_value"),
}, nil)
if err != nil {
return err
}
ctx.Export("vpcIpv6GatewayId3", vpcId.Gateways[0].Id)
status, err := vpc.GetIpv6Gateways(ctx, &vpc.GetIpv6GatewaysArgs{
Ids: []string{
"example_id",
},
Status: pulumi.StringRef("Available"),
}, nil)
if err != nil {
return err
}
ctx.Export("vpcIpv6GatewayId4", status.Gateways[0].Id)
return nil
})
}
Coming soon!
import pulumi
import pulumi_alicloud as alicloud
ids = alicloud.vpc.get_ipv6_gateways(ids=["example_id"])
pulumi.export("vpcIpv6GatewayId1", ids.gateways[0].id)
name_regex = alicloud.vpc.get_ipv6_gateways(name_regex="^my-Ipv6Gateway")
pulumi.export("vpcIpv6GatewayId2", name_regex.gateways[0].id)
vpc_id = alicloud.vpc.get_ipv6_gateways(ids=["example_id"],
vpc_id="example_value")
pulumi.export("vpcIpv6GatewayId3", vpc_id.gateways[0].id)
status = alicloud.vpc.get_ipv6_gateways(ids=["example_id"],
status="Available")
pulumi.export("vpcIpv6GatewayId4", status.gateways[0].id)
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const ids = alicloud.vpc.getIpv6Gateways({
ids: ["example_id"],
});
export const vpcIpv6GatewayId1 = ids.then(ids => ids.gateways?[0]?.id);
const nameRegex = alicloud.vpc.getIpv6Gateways({
nameRegex: "^my-Ipv6Gateway",
});
export const vpcIpv6GatewayId2 = nameRegex.then(nameRegex => nameRegex.gateways?[0]?.id);
const vpcId = alicloud.vpc.getIpv6Gateways({
ids: ["example_id"],
vpcId: "example_value",
});
export const vpcIpv6GatewayId3 = vpcId.then(vpcId => vpcId.gateways?[0]?.id);
const status = alicloud.vpc.getIpv6Gateways({
ids: ["example_id"],
status: "Available",
});
export const vpcIpv6GatewayId4 = status.then(status => status.gateways?[0]?.id);
Coming soon!
Using getIpv6Gateways
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getIpv6Gateways(args: GetIpv6GatewaysArgs, opts?: InvokeOptions): Promise<GetIpv6GatewaysResult>
function getIpv6GatewaysOutput(args: GetIpv6GatewaysOutputArgs, opts?: InvokeOptions): Output<GetIpv6GatewaysResult>
def get_ipv6_gateways(ids: Optional[Sequence[str]] = None,
ipv6_gateway_name: Optional[str] = None,
name_regex: Optional[str] = None,
output_file: Optional[str] = None,
status: Optional[str] = None,
vpc_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetIpv6GatewaysResult
def get_ipv6_gateways_output(ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
ipv6_gateway_name: Optional[pulumi.Input[str]] = None,
name_regex: Optional[pulumi.Input[str]] = None,
output_file: Optional[pulumi.Input[str]] = None,
status: Optional[pulumi.Input[str]] = None,
vpc_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetIpv6GatewaysResult]
func GetIpv6Gateways(ctx *Context, args *GetIpv6GatewaysArgs, opts ...InvokeOption) (*GetIpv6GatewaysResult, error)
func GetIpv6GatewaysOutput(ctx *Context, args *GetIpv6GatewaysOutputArgs, opts ...InvokeOption) GetIpv6GatewaysResultOutput
> Note: This function is named GetIpv6Gateways
in the Go SDK.
public static class GetIpv6Gateways
{
public static Task<GetIpv6GatewaysResult> InvokeAsync(GetIpv6GatewaysArgs args, InvokeOptions? opts = null)
public static Output<GetIpv6GatewaysResult> Invoke(GetIpv6GatewaysInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetIpv6GatewaysResult> getIpv6Gateways(GetIpv6GatewaysArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
Fn::Invoke:
Function: alicloud:vpc/getIpv6Gateways:getIpv6Gateways
Arguments:
# Arguments dictionary
The following arguments are supported:
- Ids List<string>
A list of Ipv6 Gateway IDs.
- Ipv6Gateway
Name string The name of the IPv6 gateway.
- Name
Regex string A regex string to filter results by Ipv6 Gateway name.
- Output
File string - Status string
The status of the IPv6 gateway. Valid values:
Available
,Deleting
,Pending
.- Vpc
Id string The ID of the virtual private cloud (VPC) to which the IPv6 gateway belongs.
- Ids []string
A list of Ipv6 Gateway IDs.
- Ipv6Gateway
Name string The name of the IPv6 gateway.
- Name
Regex string A regex string to filter results by Ipv6 Gateway name.
- Output
File string - Status string
The status of the IPv6 gateway. Valid values:
Available
,Deleting
,Pending
.- Vpc
Id string The ID of the virtual private cloud (VPC) to which the IPv6 gateway belongs.
- ids
List
A list of Ipv6 Gateway IDs.
- ipv6Gateway
Name String The name of the IPv6 gateway.
- name
Regex String A regex string to filter results by Ipv6 Gateway name.
- output
File String - status String
The status of the IPv6 gateway. Valid values:
Available
,Deleting
,Pending
.- vpc
Id String The ID of the virtual private cloud (VPC) to which the IPv6 gateway belongs.
- ids string[]
A list of Ipv6 Gateway IDs.
- ipv6Gateway
Name string The name of the IPv6 gateway.
- name
Regex string A regex string to filter results by Ipv6 Gateway name.
- output
File string - status string
The status of the IPv6 gateway. Valid values:
Available
,Deleting
,Pending
.- vpc
Id string The ID of the virtual private cloud (VPC) to which the IPv6 gateway belongs.
- ids Sequence[str]
A list of Ipv6 Gateway IDs.
- ipv6_
gateway_ strname The name of the IPv6 gateway.
- name_
regex str A regex string to filter results by Ipv6 Gateway name.
- output_
file str - status str
The status of the IPv6 gateway. Valid values:
Available
,Deleting
,Pending
.- vpc_
id str The ID of the virtual private cloud (VPC) to which the IPv6 gateway belongs.
- ids
List
A list of Ipv6 Gateway IDs.
- ipv6Gateway
Name String The name of the IPv6 gateway.
- name
Regex String A regex string to filter results by Ipv6 Gateway name.
- output
File String - status String
The status of the IPv6 gateway. Valid values:
Available
,Deleting
,Pending
.- vpc
Id String The ID of the virtual private cloud (VPC) to which the IPv6 gateway belongs.
getIpv6Gateways Result
The following output properties are available:
- Gateways
List<Pulumi.
Ali Cloud. Vpc. Outputs. Get Ipv6Gateways Gateway> - Id string
The provider-assigned unique ID for this managed resource.
- Ids List<string>
- Names List<string>
- Ipv6Gateway
Name string - Name
Regex string - Output
File string - Status string
- Vpc
Id string
- Gateways
[]Get
Ipv6Gateways Gateway - Id string
The provider-assigned unique ID for this managed resource.
- Ids []string
- Names []string
- Ipv6Gateway
Name string - Name
Regex string - Output
File string - Status string
- Vpc
Id string
- gateways
List
Ipv6Gateways Gateway> - id String
The provider-assigned unique ID for this managed resource.
- ids
List
- names
List
- ipv6Gateway
Name String - name
Regex String - output
File String - status String
- vpc
Id String
- gateways
Get
Ipv6Gateways Gateway[] - id string
The provider-assigned unique ID for this managed resource.
- ids string[]
- names string[]
- ipv6Gateway
Name string - name
Regex string - output
File string - status string
- vpc
Id string
- gateways
Sequence[Get
Ipv6Gateways Gateway] - id str
The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- names Sequence[str]
- ipv6_
gateway_ strname - name_
regex str - output_
file str - status str
- vpc_
id str
- gateways
List
- id String
The provider-assigned unique ID for this managed resource.
- ids
List
- names
List
- ipv6Gateway
Name String - name
Regex String - output
File String - status String
- vpc
Id String
Supporting Types
GetIpv6GatewaysGateway
- Business
Status string The status of the IPv6 gateway. Valid values:
Normal
,FinancialLocked
andSecurityLocked
.Normal
: working as expected.FinancialLocked
: locked due to overdue payments.SecurityLocked
: locked due to security reasons.- Create
Time string The creation time of the resource.
- Description string
The description of the IPv6 gateway.
- Expired
Time string The time when the IPv6 gateway expires.
- Id string
The ID of the Ipv6 Gateway.
- Instance
Charge stringType The metering method of the IPv6 gateway. Valid values:
PayAsYouGo
.- Ipv6Gateway
Id string The first ID of the resource.
- Ipv6Gateway
Name string The name of the IPv6 gateway.
- Spec string
The specification of the IPv6 gateway. Valid values:
Large
,Medium
andSmall
.Small
(default): Free Edition.Medium
: Enterprise Edition .Large
: Enhanced Enterprise Edition. The throughput capacity of an IPv6 gateway varies based on the edition. For more information, see Editions of IPv6 gateways.- Status string
The status of the IPv6 gateway. Valid values:
Available
,Deleting
,Pending
.- Vpc
Id string The ID of the virtual private cloud (VPC) to which the IPv6 gateway belongs.
- Business
Status string The status of the IPv6 gateway. Valid values:
Normal
,FinancialLocked
andSecurityLocked
.Normal
: working as expected.FinancialLocked
: locked due to overdue payments.SecurityLocked
: locked due to security reasons.- Create
Time string The creation time of the resource.
- Description string
The description of the IPv6 gateway.
- Expired
Time string The time when the IPv6 gateway expires.
- Id string
The ID of the Ipv6 Gateway.
- Instance
Charge stringType The metering method of the IPv6 gateway. Valid values:
PayAsYouGo
.- Ipv6Gateway
Id string The first ID of the resource.
- Ipv6Gateway
Name string The name of the IPv6 gateway.
- Spec string
The specification of the IPv6 gateway. Valid values:
Large
,Medium
andSmall
.Small
(default): Free Edition.Medium
: Enterprise Edition .Large
: Enhanced Enterprise Edition. The throughput capacity of an IPv6 gateway varies based on the edition. For more information, see Editions of IPv6 gateways.- Status string
The status of the IPv6 gateway. Valid values:
Available
,Deleting
,Pending
.- Vpc
Id string The ID of the virtual private cloud (VPC) to which the IPv6 gateway belongs.
- business
Status String The status of the IPv6 gateway. Valid values:
Normal
,FinancialLocked
andSecurityLocked
.Normal
: working as expected.FinancialLocked
: locked due to overdue payments.SecurityLocked
: locked due to security reasons.- create
Time String The creation time of the resource.
- description String
The description of the IPv6 gateway.
- expired
Time String The time when the IPv6 gateway expires.
- id String
The ID of the Ipv6 Gateway.
- instance
Charge StringType The metering method of the IPv6 gateway. Valid values:
PayAsYouGo
.- ipv6Gateway
Id String The first ID of the resource.
- ipv6Gateway
Name String The name of the IPv6 gateway.
- spec String
The specification of the IPv6 gateway. Valid values:
Large
,Medium
andSmall
.Small
(default): Free Edition.Medium
: Enterprise Edition .Large
: Enhanced Enterprise Edition. The throughput capacity of an IPv6 gateway varies based on the edition. For more information, see Editions of IPv6 gateways.- status String
The status of the IPv6 gateway. Valid values:
Available
,Deleting
,Pending
.- vpc
Id String The ID of the virtual private cloud (VPC) to which the IPv6 gateway belongs.
- business
Status string The status of the IPv6 gateway. Valid values:
Normal
,FinancialLocked
andSecurityLocked
.Normal
: working as expected.FinancialLocked
: locked due to overdue payments.SecurityLocked
: locked due to security reasons.- create
Time string The creation time of the resource.
- description string
The description of the IPv6 gateway.
- expired
Time string The time when the IPv6 gateway expires.
- id string
The ID of the Ipv6 Gateway.
- instance
Charge stringType The metering method of the IPv6 gateway. Valid values:
PayAsYouGo
.- ipv6Gateway
Id string The first ID of the resource.
- ipv6Gateway
Name string The name of the IPv6 gateway.
- spec string
The specification of the IPv6 gateway. Valid values:
Large
,Medium
andSmall
.Small
(default): Free Edition.Medium
: Enterprise Edition .Large
: Enhanced Enterprise Edition. The throughput capacity of an IPv6 gateway varies based on the edition. For more information, see Editions of IPv6 gateways.- status string
The status of the IPv6 gateway. Valid values:
Available
,Deleting
,Pending
.- vpc
Id string The ID of the virtual private cloud (VPC) to which the IPv6 gateway belongs.
- business_
status str The status of the IPv6 gateway. Valid values:
Normal
,FinancialLocked
andSecurityLocked
.Normal
: working as expected.FinancialLocked
: locked due to overdue payments.SecurityLocked
: locked due to security reasons.- create_
time str The creation time of the resource.
- description str
The description of the IPv6 gateway.
- expired_
time str The time when the IPv6 gateway expires.
- id str
The ID of the Ipv6 Gateway.
- instance_
charge_ strtype The metering method of the IPv6 gateway. Valid values:
PayAsYouGo
.- ipv6_
gateway_ strid The first ID of the resource.
- ipv6_
gateway_ strname The name of the IPv6 gateway.
- spec str
The specification of the IPv6 gateway. Valid values:
Large
,Medium
andSmall
.Small
(default): Free Edition.Medium
: Enterprise Edition .Large
: Enhanced Enterprise Edition. The throughput capacity of an IPv6 gateway varies based on the edition. For more information, see Editions of IPv6 gateways.- status str
The status of the IPv6 gateway. Valid values:
Available
,Deleting
,Pending
.- vpc_
id str The ID of the virtual private cloud (VPC) to which the IPv6 gateway belongs.
- business
Status String The status of the IPv6 gateway. Valid values:
Normal
,FinancialLocked
andSecurityLocked
.Normal
: working as expected.FinancialLocked
: locked due to overdue payments.SecurityLocked
: locked due to security reasons.- create
Time String The creation time of the resource.
- description String
The description of the IPv6 gateway.
- expired
Time String The time when the IPv6 gateway expires.
- id String
The ID of the Ipv6 Gateway.
- instance
Charge StringType The metering method of the IPv6 gateway. Valid values:
PayAsYouGo
.- ipv6Gateway
Id String The first ID of the resource.
- ipv6Gateway
Name String The name of the IPv6 gateway.
- spec String
The specification of the IPv6 gateway. Valid values:
Large
,Medium
andSmall
.Small
(default): Free Edition.Medium
: Enterprise Edition .Large
: Enhanced Enterprise Edition. The throughput capacity of an IPv6 gateway varies based on the edition. For more information, see Editions of IPv6 gateways.- status String
The status of the IPv6 gateway. Valid values:
Available
,Deleting
,Pending
.- vpc
Id String The ID of the virtual private cloud (VPC) to which the IPv6 gateway belongs.
Package Details
- Repository
- https://github.com/pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
alicloud
Terraform Provider.