published on Thursday, Apr 23, 2026 by Volcengine
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:
- Vpc
Id 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
- Project
Name string - Name of the project to which the IPv6 gateway belongs
-
List<Volcengine.
Ipv6Gateway Tag>
- Vpc
Id 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
- Project
Name string - Name of the project to which the IPv6 gateway belongs
-
[]Ipv6Gateway
Tag Args
- vpc
Id 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
- project
Name String - Name of the project to which the IPv6 gateway belongs
-
List<Ipv6Gateway
Tag>
- vpc
Id 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
- project
Name string - Name of the project to which the IPv6 gateway belongs
-
Ipv6Gateway
Tag[]
- 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
-
Sequence[Ipv6Gateway
Tag Args]
- vpc
Id 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
- project
Name String - Name of the project to which the IPv6 gateway belongs
- List<Property Map>
Outputs
All input properties are implicitly available as output properties. Additionally, the Ipv6Gateway resource produces the following output properties:
- Created
Time string - Creation time of the IPv6 gateway instance
- Id string
- The provider-assigned unique ID for this managed resource.
- Ipv6Gateway
Id string - IPv6 gateway instance ID
- Route
Table stringId - 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
- Updated
Time string - Modification time of the IPv6 gateway instance
- Created
Time string - Creation time of the IPv6 gateway instance
- Id string
- The provider-assigned unique ID for this managed resource.
- Ipv6Gateway
Id string - IPv6 gateway instance ID
- Route
Table stringId - 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
- Updated
Time string - Modification time of the IPv6 gateway instance
- created
Time String - Creation time of the IPv6 gateway instance
- id String
- The provider-assigned unique ID for this managed resource.
- ipv6Gateway
Id String - IPv6 gateway instance ID
- route
Table StringId - 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
- updated
Time String - Modification time of the IPv6 gateway instance
- created
Time string - Creation time of the IPv6 gateway instance
- id string
- The provider-assigned unique ID for this managed resource.
- ipv6Gateway
Id string - IPv6 gateway instance ID
- route
Table stringId - 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
- updated
Time 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_ strid - IPv6 gateway instance ID
- route_
table_ strid - 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
- created
Time String - Creation time of the IPv6 gateway instance
- id String
- The provider-assigned unique ID for this managed resource.
- ipv6Gateway
Id String - IPv6 gateway instance ID
- route
Table StringId - 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
- updated
Time 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) -> 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: 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.
- Created
Time 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 (。)
- Ipv6Gateway
Id 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
- Project
Name string - Name of the project to which the IPv6 gateway belongs
- Route
Table stringId - 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
-
List<Volcengine.
Ipv6Gateway Tag> - Updated
Time string - Modification time of the IPv6 gateway instance
- Vpc
Id 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 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 (。)
- Ipv6Gateway
Id 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
- Project
Name string - Name of the project to which the IPv6 gateway belongs
- Route
Table stringId - 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
-
[]Ipv6Gateway
Tag Args - Updated
Time string - Modification time of the IPv6 gateway instance
- Vpc
Id 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 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 (。)
- ipv6Gateway
Id 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
- project
Name String - Name of the project to which the IPv6 gateway belongs
- route
Table StringId - 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
-
List<Ipv6Gateway
Tag> - updated
Time String - Modification time of the IPv6 gateway instance
- vpc
Id 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 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 (。)
- ipv6Gateway
Id 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
- project
Name string - Name of the project to which the IPv6 gateway belongs
- route
Table stringId - 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
-
Ipv6Gateway
Tag[] - updated
Time string - Modification time of the IPv6 gateway instance
- vpc
Id 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_ strid - 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_ strid - 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
-
Sequence[Ipv6Gateway
Tag Args] - 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
- created
Time 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 (。)
- ipv6Gateway
Id 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
- project
Name String - Name of the project to which the IPv6 gateway belongs
- route
Table StringId - 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
- List<Property Map>
- updated
Time String - Modification time of the IPv6 gateway instance
- vpc
Id 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
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
volcengineccTerraform Provider.
published on Thursday, Apr 23, 2026 by Volcengine
