alicloud.vpc.Ipv6Gateway
Explore with Pulumi AI
Provides a Vpc Ipv6 Gateway resource. Gateway Based on Internet Protocol Version 6.
For information about Vpc Ipv6 Gateway and how to use it, see What is Ipv6 Gateway.
NOTE: Available in v1.142.0+.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "tf-testacc-example";
const defaultVpc = new alicloud.vpc.Network("defaultVpc", {
    description: "tf-testacc",
    enableIpv6: true,
});
const defaultRg = new alicloud.resourcemanager.ResourceGroup("defaultRg", {
    displayName: "tf-testacc-ipv6gateway503",
    resourceGroupName: `${name}1`,
});
const changeRg = new alicloud.resourcemanager.ResourceGroup("changeRg", {
    displayName: "tf-testacc-ipv6gateway311",
    resourceGroupName: `${name}2`,
});
const _default = new alicloud.vpc.Ipv6Gateway("default", {
    description: "test",
    ipv6GatewayName: name,
    vpcId: defaultVpc.id,
    resourceGroupId: defaultRg.id,
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
    name = "tf-testacc-example"
default_vpc = alicloud.vpc.Network("defaultVpc",
    description="tf-testacc",
    enable_ipv6=True)
default_rg = alicloud.resourcemanager.ResourceGroup("defaultRg",
    display_name="tf-testacc-ipv6gateway503",
    resource_group_name=f"{name}1")
change_rg = alicloud.resourcemanager.ResourceGroup("changeRg",
    display_name="tf-testacc-ipv6gateway311",
    resource_group_name=f"{name}2")
default = alicloud.vpc.Ipv6Gateway("default",
    description="test",
    ipv6_gateway_name=name,
    vpc_id=default_vpc.id,
    resource_group_id=default_rg.id)
package main
import (
	"fmt"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/resourcemanager"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		name := "tf-testacc-example"
		if param := cfg.Get("name"); param != "" {
			name = param
		}
		defaultVpc, err := vpc.NewNetwork(ctx, "defaultVpc", &vpc.NetworkArgs{
			Description: pulumi.String("tf-testacc"),
			EnableIpv6:  pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		defaultRg, err := resourcemanager.NewResourceGroup(ctx, "defaultRg", &resourcemanager.ResourceGroupArgs{
			DisplayName:       pulumi.String("tf-testacc-ipv6gateway503"),
			ResourceGroupName: pulumi.Sprintf("%v1", name),
		})
		if err != nil {
			return err
		}
		_, err = resourcemanager.NewResourceGroup(ctx, "changeRg", &resourcemanager.ResourceGroupArgs{
			DisplayName:       pulumi.String("tf-testacc-ipv6gateway311"),
			ResourceGroupName: pulumi.Sprintf("%v2", name),
		})
		if err != nil {
			return err
		}
		_, err = vpc.NewIpv6Gateway(ctx, "default", &vpc.Ipv6GatewayArgs{
			Description:     pulumi.String("test"),
			Ipv6GatewayName: pulumi.String(name),
			VpcId:           defaultVpc.ID(),
			ResourceGroupId: defaultRg.ID(),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var name = config.Get("name") ?? "tf-testacc-example";
    var defaultVpc = new AliCloud.Vpc.Network("defaultVpc", new()
    {
        Description = "tf-testacc",
        EnableIpv6 = true,
    });
    var defaultRg = new AliCloud.ResourceManager.ResourceGroup("defaultRg", new()
    {
        DisplayName = "tf-testacc-ipv6gateway503",
        ResourceGroupName = $"{name}1",
    });
    var changeRg = new AliCloud.ResourceManager.ResourceGroup("changeRg", new()
    {
        DisplayName = "tf-testacc-ipv6gateway311",
        ResourceGroupName = $"{name}2",
    });
    var @default = new AliCloud.Vpc.Ipv6Gateway("default", new()
    {
        Description = "test",
        Ipv6GatewayName = name,
        VpcId = defaultVpc.Id,
        ResourceGroupId = defaultRg.Id,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.vpc.Network;
import com.pulumi.alicloud.vpc.NetworkArgs;
import com.pulumi.alicloud.resourcemanager.ResourceGroup;
import com.pulumi.alicloud.resourcemanager.ResourceGroupArgs;
import com.pulumi.alicloud.vpc.Ipv6Gateway;
import com.pulumi.alicloud.vpc.Ipv6GatewayArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var config = ctx.config();
        final var name = config.get("name").orElse("tf-testacc-example");
        var defaultVpc = new Network("defaultVpc", NetworkArgs.builder()
            .description("tf-testacc")
            .enableIpv6(true)
            .build());
        var defaultRg = new ResourceGroup("defaultRg", ResourceGroupArgs.builder()
            .displayName("tf-testacc-ipv6gateway503")
            .resourceGroupName(String.format("%s1", name))
            .build());
        var changeRg = new ResourceGroup("changeRg", ResourceGroupArgs.builder()
            .displayName("tf-testacc-ipv6gateway311")
            .resourceGroupName(String.format("%s2", name))
            .build());
        var default_ = new Ipv6Gateway("default", Ipv6GatewayArgs.builder()
            .description("test")
            .ipv6GatewayName(name)
            .vpcId(defaultVpc.id())
            .resourceGroupId(defaultRg.id())
            .build());
    }
}
configuration:
  name:
    type: string
    default: tf-testacc-example
resources:
  defaultVpc:
    type: alicloud:vpc:Network
    properties:
      description: tf-testacc
      enableIpv6: true
  defaultRg:
    type: alicloud:resourcemanager:ResourceGroup
    properties:
      displayName: tf-testacc-ipv6gateway503
      resourceGroupName: ${name}1
  changeRg:
    type: alicloud:resourcemanager:ResourceGroup
    properties:
      displayName: tf-testacc-ipv6gateway311
      resourceGroupName: ${name}2
  default:
    type: alicloud:vpc:Ipv6Gateway
    properties:
      description: test
      ipv6GatewayName: ${name}
      vpcId: ${defaultVpc.id}
      resourceGroupId: ${defaultRg.id}
Create Ipv6Gateway Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Ipv6Gateway(name: string, args: Ipv6GatewayArgs, opts?: CustomResourceOptions);@overload
def Ipv6Gateway(resource_name: str,
                args: Ipv6GatewayArgs,
                opts: Optional[ResourceOptions] = None)
@overload
def Ipv6Gateway(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                vpc_id: Optional[str] = None,
                description: Optional[str] = None,
                ipv6_gateway_name: Optional[str] = None,
                resource_group_id: Optional[str] = None,
                spec: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None)func NewIpv6Gateway(ctx *Context, name string, args Ipv6GatewayArgs, opts ...ResourceOption) (*Ipv6Gateway, error)public Ipv6Gateway(string name, Ipv6GatewayArgs args, CustomResourceOptions? opts = null)
public Ipv6Gateway(String name, Ipv6GatewayArgs args)
public Ipv6Gateway(String name, Ipv6GatewayArgs args, CustomResourceOptions options)
type: alicloud:vpc:Ipv6Gateway
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args Ipv6GatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args Ipv6GatewayArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args Ipv6GatewayArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args Ipv6GatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args Ipv6GatewayArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var ipv6GatewayResource = new AliCloud.Vpc.Ipv6Gateway("ipv6GatewayResource", new()
{
    VpcId = "string",
    Description = "string",
    Ipv6GatewayName = "string",
    ResourceGroupId = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := vpc.NewIpv6Gateway(ctx, "ipv6GatewayResource", &vpc.Ipv6GatewayArgs{
	VpcId:           pulumi.String("string"),
	Description:     pulumi.String("string"),
	Ipv6GatewayName: pulumi.String("string"),
	ResourceGroupId: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var ipv6GatewayResource = new Ipv6Gateway("ipv6GatewayResource", Ipv6GatewayArgs.builder()
    .vpcId("string")
    .description("string")
    .ipv6GatewayName("string")
    .resourceGroupId("string")
    .tags(Map.of("string", "string"))
    .build());
ipv6_gateway_resource = alicloud.vpc.Ipv6Gateway("ipv6GatewayResource",
    vpc_id="string",
    description="string",
    ipv6_gateway_name="string",
    resource_group_id="string",
    tags={
        "string": "string",
    })
const ipv6GatewayResource = new alicloud.vpc.Ipv6Gateway("ipv6GatewayResource", {
    vpcId: "string",
    description: "string",
    ipv6GatewayName: "string",
    resourceGroupId: "string",
    tags: {
        string: "string",
    },
});
type: alicloud:vpc:Ipv6Gateway
properties:
    description: string
    ipv6GatewayName: string
    resourceGroupId: string
    tags:
        string: string
    vpcId: string
Ipv6Gateway Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Ipv6Gateway resource accepts the following input properties:
- VpcId string
- The ID of the virtual private cloud (VPC) for which you want to create the IPv6 gateway.
- Description string
- The description of the IPv6 gateway. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
- Ipv6GatewayName string
- The name of the IPv6 gateway. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter but cannot start with http:// or https://.
- ResourceGroup stringId 
- The ID of the resource group to which the instance belongs.
- Spec string
- IPv6 gateways do not distinguish between specifications. This parameter is no longer used.
- Dictionary<string, string>
- The tags for the resource.
- VpcId string
- The ID of the virtual private cloud (VPC) for which you want to create the IPv6 gateway.
- Description string
- The description of the IPv6 gateway. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
- Ipv6GatewayName string
- The name of the IPv6 gateway. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter but cannot start with http:// or https://.
- ResourceGroup stringId 
- The ID of the resource group to which the instance belongs.
- Spec string
- IPv6 gateways do not distinguish between specifications. This parameter is no longer used.
- map[string]string
- The tags for the resource.
- vpcId String
- The ID of the virtual private cloud (VPC) for which you want to create the IPv6 gateway.
- description String
- The description of the IPv6 gateway. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
- ipv6GatewayName String
- The name of the IPv6 gateway. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter but cannot start with http:// or https://.
- resourceGroup StringId 
- The ID of the resource group to which the instance belongs.
- spec String
- IPv6 gateways do not distinguish between specifications. This parameter is no longer used.
- Map<String,String>
- The tags for the resource.
- vpcId string
- The ID of the virtual private cloud (VPC) for which you want to create the IPv6 gateway.
- description string
- The description of the IPv6 gateway. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
- ipv6GatewayName string
- The name of the IPv6 gateway. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter but cannot start with http:// or https://.
- resourceGroup stringId 
- The ID of the resource group to which the instance belongs.
- spec string
- IPv6 gateways do not distinguish between specifications. This parameter is no longer used.
- {[key: string]: string}
- The tags for the resource.
- vpc_id str
- The ID of the virtual private cloud (VPC) for which you want to create the IPv6 gateway.
- description str
- The description of the IPv6 gateway. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
- ipv6_gateway_ strname 
- The name of the IPv6 gateway. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter but cannot start with http:// or https://.
- resource_group_ strid 
- The ID of the resource group to which the instance belongs.
- spec str
- IPv6 gateways do not distinguish between specifications. This parameter is no longer used.
- Mapping[str, str]
- The tags for the resource.
- vpcId String
- The ID of the virtual private cloud (VPC) for which you want to create the IPv6 gateway.
- description String
- The description of the IPv6 gateway. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
- ipv6GatewayName String
- The name of the IPv6 gateway. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter but cannot start with http:// or https://.
- resourceGroup StringId 
- The ID of the resource group to which the instance belongs.
- spec String
- IPv6 gateways do not distinguish between specifications. This parameter is no longer used.
- Map<String>
- The tags for the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the Ipv6Gateway resource produces the following output properties:
- BusinessStatus string
- The status of the IPv6 gateway.
- CreateTime string
- The creation time of the resource.
- ExpiredTime string
- The expiration time of IPv6 gateway.
- Id string
- The provider-assigned unique ID for this managed resource.
- InstanceCharge stringType 
- The charge type of IPv6 gateway.
- Ipv6GatewayId string
- Resource primary key attribute field.
- Status string
- The status of the resource. Valid values: Available, Pending and Deleting.
- BusinessStatus string
- The status of the IPv6 gateway.
- CreateTime string
- The creation time of the resource.
- ExpiredTime string
- The expiration time of IPv6 gateway.
- Id string
- The provider-assigned unique ID for this managed resource.
- InstanceCharge stringType 
- The charge type of IPv6 gateway.
- Ipv6GatewayId string
- Resource primary key attribute field.
- Status string
- The status of the resource. Valid values: Available, Pending and Deleting.
- businessStatus String
- The status of the IPv6 gateway.
- createTime String
- The creation time of the resource.
- expiredTime String
- The expiration time of IPv6 gateway.
- id String
- The provider-assigned unique ID for this managed resource.
- instanceCharge StringType 
- The charge type of IPv6 gateway.
- ipv6GatewayId String
- Resource primary key attribute field.
- status String
- The status of the resource. Valid values: Available, Pending and Deleting.
- businessStatus string
- The status of the IPv6 gateway.
- createTime string
- The creation time of the resource.
- expiredTime string
- The expiration time of IPv6 gateway.
- id string
- The provider-assigned unique ID for this managed resource.
- instanceCharge stringType 
- The charge type of IPv6 gateway.
- ipv6GatewayId string
- Resource primary key attribute field.
- status string
- The status of the resource. Valid values: Available, Pending and Deleting.
- business_status str
- The status of the IPv6 gateway.
- create_time str
- The creation time of the resource.
- expired_time str
- The expiration time of IPv6 gateway.
- id str
- The provider-assigned unique ID for this managed resource.
- instance_charge_ strtype 
- The charge type of IPv6 gateway.
- ipv6_gateway_ strid 
- Resource primary key attribute field.
- status str
- The status of the resource. Valid values: Available, Pending and Deleting.
- businessStatus String
- The status of the IPv6 gateway.
- createTime String
- The creation time of the resource.
- expiredTime String
- The expiration time of IPv6 gateway.
- id String
- The provider-assigned unique ID for this managed resource.
- instanceCharge StringType 
- The charge type of IPv6 gateway.
- ipv6GatewayId String
- Resource primary key attribute field.
- status String
- The status of the resource. Valid values: Available, Pending and Deleting.
Look up Existing Ipv6Gateway Resource
Get an existing Ipv6Gateway resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: Ipv6GatewayState, opts?: CustomResourceOptions): Ipv6Gateway@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        business_status: Optional[str] = None,
        create_time: Optional[str] = None,
        description: Optional[str] = None,
        expired_time: Optional[str] = None,
        instance_charge_type: Optional[str] = None,
        ipv6_gateway_id: Optional[str] = None,
        ipv6_gateway_name: Optional[str] = None,
        resource_group_id: Optional[str] = None,
        spec: Optional[str] = None,
        status: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        vpc_id: Optional[str] = None) -> Ipv6Gatewayfunc GetIpv6Gateway(ctx *Context, name string, id IDInput, state *Ipv6GatewayState, opts ...ResourceOption) (*Ipv6Gateway, error)public static Ipv6Gateway Get(string name, Input<string> id, Ipv6GatewayState? state, CustomResourceOptions? opts = null)public static Ipv6Gateway get(String name, Output<String> id, Ipv6GatewayState state, CustomResourceOptions options)resources:  _:    type: alicloud:vpc:Ipv6Gateway    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- BusinessStatus string
- The status of the IPv6 gateway.
- CreateTime string
- The creation time of the resource.
- Description string
- The description of the IPv6 gateway. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
- ExpiredTime string
- The expiration time of IPv6 gateway.
- InstanceCharge stringType 
- The charge type of IPv6 gateway.
- Ipv6GatewayId string
- Resource primary key attribute field.
- Ipv6GatewayName string
- The name of the IPv6 gateway. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter but cannot start with http:// or https://.
- ResourceGroup stringId 
- The ID of the resource group to which the instance belongs.
- Spec string
- IPv6 gateways do not distinguish between specifications. This parameter is no longer used.
- Status string
- The status of the resource. Valid values: Available, Pending and Deleting.
- Dictionary<string, string>
- The tags for the resource.
- VpcId string
- The ID of the virtual private cloud (VPC) for which you want to create the IPv6 gateway.
- BusinessStatus string
- The status of the IPv6 gateway.
- CreateTime string
- The creation time of the resource.
- Description string
- The description of the IPv6 gateway. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
- ExpiredTime string
- The expiration time of IPv6 gateway.
- InstanceCharge stringType 
- The charge type of IPv6 gateway.
- Ipv6GatewayId string
- Resource primary key attribute field.
- Ipv6GatewayName string
- The name of the IPv6 gateway. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter but cannot start with http:// or https://.
- ResourceGroup stringId 
- The ID of the resource group to which the instance belongs.
- Spec string
- IPv6 gateways do not distinguish between specifications. This parameter is no longer used.
- Status string
- The status of the resource. Valid values: Available, Pending and Deleting.
- map[string]string
- The tags for the resource.
- VpcId string
- The ID of the virtual private cloud (VPC) for which you want to create the IPv6 gateway.
- businessStatus String
- The status of the IPv6 gateway.
- createTime String
- The creation time of the resource.
- description String
- The description of the IPv6 gateway. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
- expiredTime String
- The expiration time of IPv6 gateway.
- instanceCharge StringType 
- The charge type of IPv6 gateway.
- ipv6GatewayId String
- Resource primary key attribute field.
- ipv6GatewayName String
- The name of the IPv6 gateway. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter but cannot start with http:// or https://.
- resourceGroup StringId 
- The ID of the resource group to which the instance belongs.
- spec String
- IPv6 gateways do not distinguish between specifications. This parameter is no longer used.
- status String
- The status of the resource. Valid values: Available, Pending and Deleting.
- Map<String,String>
- The tags for the resource.
- vpcId String
- The ID of the virtual private cloud (VPC) for which you want to create the IPv6 gateway.
- businessStatus string
- The status of the IPv6 gateway.
- createTime string
- The creation time of the resource.
- description string
- The description of the IPv6 gateway. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
- expiredTime string
- The expiration time of IPv6 gateway.
- instanceCharge stringType 
- The charge type of IPv6 gateway.
- ipv6GatewayId string
- Resource primary key attribute field.
- ipv6GatewayName string
- The name of the IPv6 gateway. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter but cannot start with http:// or https://.
- resourceGroup stringId 
- The ID of the resource group to which the instance belongs.
- spec string
- IPv6 gateways do not distinguish between specifications. This parameter is no longer used.
- status string
- The status of the resource. Valid values: Available, Pending and Deleting.
- {[key: string]: string}
- The tags for the resource.
- vpcId string
- The ID of the virtual private cloud (VPC) for which you want to create the IPv6 gateway.
- business_status str
- The status of the IPv6 gateway.
- create_time str
- The creation time of the resource.
- description str
- The description of the IPv6 gateway. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
- expired_time str
- The expiration time of IPv6 gateway.
- instance_charge_ strtype 
- The charge type of IPv6 gateway.
- ipv6_gateway_ strid 
- Resource primary key attribute field.
- ipv6_gateway_ strname 
- The name of the IPv6 gateway. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter but cannot start with http:// or https://.
- resource_group_ strid 
- The ID of the resource group to which the instance belongs.
- spec str
- IPv6 gateways do not distinguish between specifications. This parameter is no longer used.
- status str
- The status of the resource. Valid values: Available, Pending and Deleting.
- Mapping[str, str]
- The tags for the resource.
- vpc_id str
- The ID of the virtual private cloud (VPC) for which you want to create the IPv6 gateway.
- businessStatus String
- The status of the IPv6 gateway.
- createTime String
- The creation time of the resource.
- description String
- The description of the IPv6 gateway. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
- expiredTime String
- The expiration time of IPv6 gateway.
- instanceCharge StringType 
- The charge type of IPv6 gateway.
- ipv6GatewayId String
- Resource primary key attribute field.
- ipv6GatewayName String
- The name of the IPv6 gateway. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter but cannot start with http:// or https://.
- resourceGroup StringId 
- The ID of the resource group to which the instance belongs.
- spec String
- IPv6 gateways do not distinguish between specifications. This parameter is no longer used.
- status String
- The status of the resource. Valid values: Available, Pending and Deleting.
- Map<String>
- The tags for the resource.
- vpcId String
- The ID of the virtual private cloud (VPC) for which you want to create the IPv6 gateway.
Import
Vpc Ipv6 Gateway can be imported using the id, e.g.
$ pulumi import alicloud:vpc/ipv6Gateway:Ipv6Gateway example <id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the alicloudTerraform Provider.