1. Packages
  2. Packages
  3. Volcenginecc Provider
  4. API Docs
  5. vpc
  6. Ipv6Gateway
Viewing docs for volcenginecc v0.0.32
published on Thursday, Apr 23, 2026 by Volcengine
volcenginecc logo
Viewing docs for volcenginecc v0.0.32
published on Thursday, Apr 23, 2026 by Volcengine

    Carrier for the IPv6 gateway service. Creating an IPv6 gateway instance is required for IPv6 public network configuration

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
    
    const ipv6GatewayDemo = new volcenginecc.vpc.Ipv6Gateway("Ipv6GatewayDemo", {
        vpcId: "vpc-3nrh1tqschwcg931exxxxx",
        name: "terraform-test-2",
        description: "Create by terraform",
        projectName: "default",
        tags: [{
            key: "env",
            value: "test",
        }],
    });
    
    import pulumi
    import pulumi_volcenginecc as volcenginecc
    
    ipv6_gateway_demo = volcenginecc.vpc.Ipv6Gateway("Ipv6GatewayDemo",
        vpc_id="vpc-3nrh1tqschwcg931exxxxx",
        name="terraform-test-2",
        description="Create by terraform",
        project_name="default",
        tags=[{
            "key": "env",
            "value": "test",
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/vpc"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := vpc.NewIpv6Gateway(ctx, "Ipv6GatewayDemo", &vpc.Ipv6GatewayArgs{
    			VpcId:       pulumi.String("vpc-3nrh1tqschwcg931exxxxx"),
    			Name:        pulumi.String("terraform-test-2"),
    			Description: pulumi.String("Create by terraform"),
    			ProjectName: pulumi.String("default"),
    			Tags: vpc.Ipv6GatewayTagArray{
    				&vpc.Ipv6GatewayTagArgs{
    					Key:   pulumi.String("env"),
    					Value: pulumi.String("test"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcenginecc = Volcengine.Pulumi.Volcenginecc;
    
    return await Deployment.RunAsync(() => 
    {
        var ipv6GatewayDemo = new Volcenginecc.Vpc.Ipv6Gateway("Ipv6GatewayDemo", new()
        {
            VpcId = "vpc-3nrh1tqschwcg931exxxxx",
            Name = "terraform-test-2",
            Description = "Create by terraform",
            ProjectName = "default",
            Tags = new[]
            {
                new Volcenginecc.Vpc.Inputs.Ipv6GatewayTagArgs
                {
                    Key = "env",
                    Value = "test",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.volcengine.volcenginecc.vpc.Ipv6Gateway;
    import com.volcengine.volcenginecc.vpc.Ipv6GatewayArgs;
    import com.pulumi.volcenginecc.vpc.inputs.Ipv6GatewayTagArgs;
    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) {
            var ipv6GatewayDemo = new Ipv6Gateway("ipv6GatewayDemo", Ipv6GatewayArgs.builder()
                .vpcId("vpc-3nrh1tqschwcg931exxxxx")
                .name("terraform-test-2")
                .description("Create by terraform")
                .projectName("default")
                .tags(Ipv6GatewayTagArgs.builder()
                    .key("env")
                    .value("test")
                    .build())
                .build());
    
        }
    }
    
    resources:
      ipv6GatewayDemo:
        type: volcenginecc:vpc:Ipv6Gateway
        name: Ipv6GatewayDemo
        properties:
          vpcId: vpc-3nrh1tqschwcg931exxxxx
          name: terraform-test-2
          description: Create by terraform
          projectName: default
          tags:
            - key: env
              value: test
    

    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,
                    name: Optional[str] = None,
                    project_name: Optional[str] = None,
                    tags: Optional[Sequence[Ipv6GatewayTagArgs]] = 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: volcenginecc: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 Volcenginecc.Vpc.Ipv6Gateway("ipv6GatewayResource", new()
    {
        VpcId = "string",
        Description = "string",
        Name = "string",
        ProjectName = "string",
        Tags = new[]
        {
            new Volcenginecc.Vpc.Inputs.Ipv6GatewayTagArgs
            {
                Key = "string",
                Value = "string",
            },
        },
    });
    
    example, err := vpc.NewIpv6Gateway(ctx, "ipv6GatewayResource", &vpc.Ipv6GatewayArgs{
    	VpcId:       pulumi.String("string"),
    	Description: pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	ProjectName: pulumi.String("string"),
    	Tags: vpc.Ipv6GatewayTagArray{
    		&vpc.Ipv6GatewayTagArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    })
    
    var ipv6GatewayResource = new Ipv6Gateway("ipv6GatewayResource", Ipv6GatewayArgs.builder()
        .vpcId("string")
        .description("string")
        .name("string")
        .projectName("string")
        .tags(Ipv6GatewayTagArgs.builder()
            .key("string")
            .value("string")
            .build())
        .build());
    
    ipv6_gateway_resource = volcenginecc.vpc.Ipv6Gateway("ipv6GatewayResource",
        vpc_id="string",
        description="string",
        name="string",
        project_name="string",
        tags=[{
            "key": "string",
            "value": "string",
        }])
    
    const ipv6GatewayResource = new volcenginecc.vpc.Ipv6Gateway("ipv6GatewayResource", {
        vpcId: "string",
        description: "string",
        name: "string",
        projectName: "string",
        tags: [{
            key: "string",
            value: "string",
        }],
    });
    
    type: volcenginecc:vpc:Ipv6Gateway
    properties:
        description: string
        name: string
        projectName: string
        tags:
            - key: string
              value: 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
    VPC ID to be associated with the IPv6 gateway instance. Each VPC can only be associated with one IPv6 gateway instance. Ensure the VPC to be associated is not linked to another IPv6 gateway instance
    Description string
    Description of the IPv6 gateway instance. Length limit: 0–255 characters. If not specified, defaults to an empty string. Must start with a letter, Chinese character, or number. Can include English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。)
    Name string
    Name of the IPv6 gateway instance. Length limit: 1–128 characters. Must start with a letter, Chinese character, or number. Can include period (.), underscore (_), and hyphen (-). If not specified, defaults to the IPv6 gateway ID
    ProjectName string
    Name of the project to which the IPv6 gateway belongs
    Tags List<Volcengine.Ipv6GatewayTag>
    VpcId string
    VPC ID to be associated with the IPv6 gateway instance. Each VPC can only be associated with one IPv6 gateway instance. Ensure the VPC to be associated is not linked to another IPv6 gateway instance
    Description string
    Description of the IPv6 gateway instance. Length limit: 0–255 characters. If not specified, defaults to an empty string. Must start with a letter, Chinese character, or number. Can include English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。)
    Name string
    Name of the IPv6 gateway instance. Length limit: 1–128 characters. Must start with a letter, Chinese character, or number. Can include period (.), underscore (_), and hyphen (-). If not specified, defaults to the IPv6 gateway ID
    ProjectName string
    Name of the project to which the IPv6 gateway belongs
    Tags []Ipv6GatewayTagArgs
    vpcId String
    VPC ID to be associated with the IPv6 gateway instance. Each VPC can only be associated with one IPv6 gateway instance. Ensure the VPC to be associated is not linked to another IPv6 gateway instance
    description String
    Description of the IPv6 gateway instance. Length limit: 0–255 characters. If not specified, defaults to an empty string. Must start with a letter, Chinese character, or number. Can include English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。)
    name String
    Name of the IPv6 gateway instance. Length limit: 1–128 characters. Must start with a letter, Chinese character, or number. Can include period (.), underscore (_), and hyphen (-). If not specified, defaults to the IPv6 gateway ID
    projectName String
    Name of the project to which the IPv6 gateway belongs
    tags List<Ipv6GatewayTag>
    vpcId string
    VPC ID to be associated with the IPv6 gateway instance. Each VPC can only be associated with one IPv6 gateway instance. Ensure the VPC to be associated is not linked to another IPv6 gateway instance
    description string
    Description of the IPv6 gateway instance. Length limit: 0–255 characters. If not specified, defaults to an empty string. Must start with a letter, Chinese character, or number. Can include English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。)
    name string
    Name of the IPv6 gateway instance. Length limit: 1–128 characters. Must start with a letter, Chinese character, or number. Can include period (.), underscore (_), and hyphen (-). If not specified, defaults to the IPv6 gateway ID
    projectName string
    Name of the project to which the IPv6 gateway belongs
    tags Ipv6GatewayTag[]
    vpc_id str
    VPC ID to be associated with the IPv6 gateway instance. Each VPC can only be associated with one IPv6 gateway instance. Ensure the VPC to be associated is not linked to another IPv6 gateway instance
    description str
    Description of the IPv6 gateway instance. Length limit: 0–255 characters. If not specified, defaults to an empty string. Must start with a letter, Chinese character, or number. Can include English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。)
    name str
    Name of the IPv6 gateway instance. Length limit: 1–128 characters. Must start with a letter, Chinese character, or number. Can include period (.), underscore (_), and hyphen (-). If not specified, defaults to the IPv6 gateway ID
    project_name str
    Name of the project to which the IPv6 gateway belongs
    tags Sequence[Ipv6GatewayTagArgs]
    vpcId String
    VPC ID to be associated with the IPv6 gateway instance. Each VPC can only be associated with one IPv6 gateway instance. Ensure the VPC to be associated is not linked to another IPv6 gateway instance
    description String
    Description of the IPv6 gateway instance. Length limit: 0–255 characters. If not specified, defaults to an empty string. Must start with a letter, Chinese character, or number. Can include English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。)
    name String
    Name of the IPv6 gateway instance. Length limit: 1–128 characters. Must start with a letter, Chinese character, or number. Can include period (.), underscore (_), and hyphen (-). If not specified, defaults to the IPv6 gateway ID
    projectName String
    Name of the project to which the IPv6 gateway belongs
    tags List<Property Map>

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Ipv6Gateway resource produces the following output properties:

    CreatedTime string
    Creation time of the IPv6 gateway instance
    Id string
    The provider-assigned unique ID for this managed resource.
    Ipv6GatewayId string
    IPv6 gateway instance ID
    RouteTableId string
    Route table ID associated with the IPv6 gateway instance
    Status string
    Operating status of the IPv6 gateway instance. Possible values: Creating: Creating. Deleting: Deleting. Available: Available
    UpdatedTime string
    Modification time of the IPv6 gateway instance
    CreatedTime string
    Creation time of the IPv6 gateway instance
    Id string
    The provider-assigned unique ID for this managed resource.
    Ipv6GatewayId string
    IPv6 gateway instance ID
    RouteTableId string
    Route table ID associated with the IPv6 gateway instance
    Status string
    Operating status of the IPv6 gateway instance. Possible values: Creating: Creating. Deleting: Deleting. Available: Available
    UpdatedTime string
    Modification time of the IPv6 gateway instance
    createdTime String
    Creation time of the IPv6 gateway instance
    id String
    The provider-assigned unique ID for this managed resource.
    ipv6GatewayId String
    IPv6 gateway instance ID
    routeTableId String
    Route table ID associated with the IPv6 gateway instance
    status String
    Operating status of the IPv6 gateway instance. Possible values: Creating: Creating. Deleting: Deleting. Available: Available
    updatedTime String
    Modification time of the IPv6 gateway instance
    createdTime string
    Creation time of the IPv6 gateway instance
    id string
    The provider-assigned unique ID for this managed resource.
    ipv6GatewayId string
    IPv6 gateway instance ID
    routeTableId string
    Route table ID associated with the IPv6 gateway instance
    status string
    Operating status of the IPv6 gateway instance. Possible values: Creating: Creating. Deleting: Deleting. Available: Available
    updatedTime string
    Modification time of the IPv6 gateway instance
    created_time str
    Creation time of the IPv6 gateway instance
    id str
    The provider-assigned unique ID for this managed resource.
    ipv6_gateway_id str
    IPv6 gateway instance ID
    route_table_id str
    Route table ID associated with the IPv6 gateway instance
    status str
    Operating status of the IPv6 gateway instance. Possible values: Creating: Creating. Deleting: Deleting. Available: Available
    updated_time str
    Modification time of the IPv6 gateway instance
    createdTime String
    Creation time of the IPv6 gateway instance
    id String
    The provider-assigned unique ID for this managed resource.
    ipv6GatewayId String
    IPv6 gateway instance ID
    routeTableId String
    Route table ID associated with the IPv6 gateway instance
    status String
    Operating status of the IPv6 gateway instance. Possible values: Creating: Creating. Deleting: Deleting. Available: Available
    updatedTime String
    Modification time of the IPv6 gateway instance

    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,
            created_time: Optional[str] = None,
            description: Optional[str] = None,
            ipv6_gateway_id: Optional[str] = None,
            name: Optional[str] = None,
            project_name: Optional[str] = None,
            route_table_id: Optional[str] = None,
            status: Optional[str] = None,
            tags: Optional[Sequence[Ipv6GatewayTagArgs]] = None,
            updated_time: Optional[str] = None,
            vpc_id: Optional[str] = None) -> Ipv6Gateway
    func 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: volcenginecc: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.
    The following state arguments are supported:
    CreatedTime string
    Creation time of the IPv6 gateway instance
    Description string
    Description of the IPv6 gateway instance. Length limit: 0–255 characters. If not specified, defaults to an empty string. Must start with a letter, Chinese character, or number. Can include English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。)
    Ipv6GatewayId string
    IPv6 gateway instance ID
    Name string
    Name of the IPv6 gateway instance. Length limit: 1–128 characters. Must start with a letter, Chinese character, or number. Can include period (.), underscore (_), and hyphen (-). If not specified, defaults to the IPv6 gateway ID
    ProjectName string
    Name of the project to which the IPv6 gateway belongs
    RouteTableId string
    Route table ID associated with the IPv6 gateway instance
    Status string
    Operating status of the IPv6 gateway instance. Possible values: Creating: Creating. Deleting: Deleting. Available: Available
    Tags List<Volcengine.Ipv6GatewayTag>
    UpdatedTime string
    Modification time of the IPv6 gateway instance
    VpcId string
    VPC ID to be associated with the IPv6 gateway instance. Each VPC can only be associated with one IPv6 gateway instance. Ensure the VPC to be associated is not linked to another IPv6 gateway instance
    CreatedTime string
    Creation time of the IPv6 gateway instance
    Description string
    Description of the IPv6 gateway instance. Length limit: 0–255 characters. If not specified, defaults to an empty string. Must start with a letter, Chinese character, or number. Can include English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。)
    Ipv6GatewayId string
    IPv6 gateway instance ID
    Name string
    Name of the IPv6 gateway instance. Length limit: 1–128 characters. Must start with a letter, Chinese character, or number. Can include period (.), underscore (_), and hyphen (-). If not specified, defaults to the IPv6 gateway ID
    ProjectName string
    Name of the project to which the IPv6 gateway belongs
    RouteTableId string
    Route table ID associated with the IPv6 gateway instance
    Status string
    Operating status of the IPv6 gateway instance. Possible values: Creating: Creating. Deleting: Deleting. Available: Available
    Tags []Ipv6GatewayTagArgs
    UpdatedTime string
    Modification time of the IPv6 gateway instance
    VpcId string
    VPC ID to be associated with the IPv6 gateway instance. Each VPC can only be associated with one IPv6 gateway instance. Ensure the VPC to be associated is not linked to another IPv6 gateway instance
    createdTime String
    Creation time of the IPv6 gateway instance
    description String
    Description of the IPv6 gateway instance. Length limit: 0–255 characters. If not specified, defaults to an empty string. Must start with a letter, Chinese character, or number. Can include English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。)
    ipv6GatewayId String
    IPv6 gateway instance ID
    name String
    Name of the IPv6 gateway instance. Length limit: 1–128 characters. Must start with a letter, Chinese character, or number. Can include period (.), underscore (_), and hyphen (-). If not specified, defaults to the IPv6 gateway ID
    projectName String
    Name of the project to which the IPv6 gateway belongs
    routeTableId String
    Route table ID associated with the IPv6 gateway instance
    status String
    Operating status of the IPv6 gateway instance. Possible values: Creating: Creating. Deleting: Deleting. Available: Available
    tags List<Ipv6GatewayTag>
    updatedTime String
    Modification time of the IPv6 gateway instance
    vpcId String
    VPC ID to be associated with the IPv6 gateway instance. Each VPC can only be associated with one IPv6 gateway instance. Ensure the VPC to be associated is not linked to another IPv6 gateway instance
    createdTime string
    Creation time of the IPv6 gateway instance
    description string
    Description of the IPv6 gateway instance. Length limit: 0–255 characters. If not specified, defaults to an empty string. Must start with a letter, Chinese character, or number. Can include English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。)
    ipv6GatewayId string
    IPv6 gateway instance ID
    name string
    Name of the IPv6 gateway instance. Length limit: 1–128 characters. Must start with a letter, Chinese character, or number. Can include period (.), underscore (_), and hyphen (-). If not specified, defaults to the IPv6 gateway ID
    projectName string
    Name of the project to which the IPv6 gateway belongs
    routeTableId string
    Route table ID associated with the IPv6 gateway instance
    status string
    Operating status of the IPv6 gateway instance. Possible values: Creating: Creating. Deleting: Deleting. Available: Available
    tags Ipv6GatewayTag[]
    updatedTime string
    Modification time of the IPv6 gateway instance
    vpcId string
    VPC ID to be associated with the IPv6 gateway instance. Each VPC can only be associated with one IPv6 gateway instance. Ensure the VPC to be associated is not linked to another IPv6 gateway instance
    created_time str
    Creation time of the IPv6 gateway instance
    description str
    Description of the IPv6 gateway instance. Length limit: 0–255 characters. If not specified, defaults to an empty string. Must start with a letter, Chinese character, or number. Can include English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。)
    ipv6_gateway_id str
    IPv6 gateway instance ID
    name str
    Name of the IPv6 gateway instance. Length limit: 1–128 characters. Must start with a letter, Chinese character, or number. Can include period (.), underscore (_), and hyphen (-). If not specified, defaults to the IPv6 gateway ID
    project_name str
    Name of the project to which the IPv6 gateway belongs
    route_table_id str
    Route table ID associated with the IPv6 gateway instance
    status str
    Operating status of the IPv6 gateway instance. Possible values: Creating: Creating. Deleting: Deleting. Available: Available
    tags Sequence[Ipv6GatewayTagArgs]
    updated_time str
    Modification time of the IPv6 gateway instance
    vpc_id str
    VPC ID to be associated with the IPv6 gateway instance. Each VPC can only be associated with one IPv6 gateway instance. Ensure the VPC to be associated is not linked to another IPv6 gateway instance
    createdTime String
    Creation time of the IPv6 gateway instance
    description String
    Description of the IPv6 gateway instance. Length limit: 0–255 characters. If not specified, defaults to an empty string. Must start with a letter, Chinese character, or number. Can include English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。)
    ipv6GatewayId String
    IPv6 gateway instance ID
    name String
    Name of the IPv6 gateway instance. Length limit: 1–128 characters. Must start with a letter, Chinese character, or number. Can include period (.), underscore (_), and hyphen (-). If not specified, defaults to the IPv6 gateway ID
    projectName String
    Name of the project to which the IPv6 gateway belongs
    routeTableId String
    Route table ID associated with the IPv6 gateway instance
    status String
    Operating status of the IPv6 gateway instance. Possible values: Creating: Creating. Deleting: Deleting. Available: Available
    tags List<Property Map>
    updatedTime String
    Modification time of the IPv6 gateway instance
    vpcId String
    VPC ID to be associated with the IPv6 gateway instance. Each VPC can only be associated with one IPv6 gateway instance. Ensure the VPC to be associated is not linked to another IPv6 gateway instance

    Supporting Types

    Ipv6GatewayTag, Ipv6GatewayTagArgs

    Key string
    Tag key
    Value string
    Tag value
    Key string
    Tag key
    Value string
    Tag value
    key String
    Tag key
    value String
    Tag value
    key string
    Tag key
    value string
    Tag value
    key str
    Tag key
    value str
    Tag value
    key String
    Tag key
    value String
    Tag value

    Import

    $ pulumi import volcenginecc:vpc/ipv6Gateway:Ipv6Gateway example "ipv6_gateway_id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    volcenginecc volcengine/pulumi-volcenginecc
    License
    MPL-2.0
    Notes
    This Pulumi package is based on the volcenginecc Terraform Provider.
    volcenginecc logo
    Viewing docs for volcenginecc v0.0.32
    published on Thursday, Apr 23, 2026 by Volcengine
      Try Pulumi Cloud free. Your team will thank you.