1. Packages
  2. Packages
  3. Volcenginecc Provider
  4. API Docs
  5. vpc
  6. Ipv6AddressBandwidth
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

    IPv6 public traffic bandwidth determines the public communication capability of the IPv6 address. If the IPv6 address does not have IPv6 public bandwidth enabled, it only supports private network communication. You can enable IPv6 public bandwidth for the IPv6 address as needed to allow public network communication.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
    
    const vPCIpv6AddressBandwidthDemo = new volcenginecc.vpc.Ipv6AddressBandwidth("VPCIpv6AddressBandwidthDemo", {
        bandwidth: 200,
        billingType: 2,
        ipv6Address: "2406:d440:10a:****:92b:****:90b6:4f09",
        projectName: "default",
        bandwidthPackageId: "bwp-1vm41dmikjr451j8exxxxx",
        tags: [{
            key: "env",
            value: "test",
        }],
    });
    
    import pulumi
    import pulumi_volcenginecc as volcenginecc
    
    v_pc_ipv6_address_bandwidth_demo = volcenginecc.vpc.Ipv6AddressBandwidth("VPCIpv6AddressBandwidthDemo",
        bandwidth=200,
        billing_type=2,
        ipv6_address="2406:d440:10a:****:92b:****:90b6:4f09",
        project_name="default",
        bandwidth_package_id="bwp-1vm41dmikjr451j8exxxxx",
        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.NewIpv6AddressBandwidth(ctx, "VPCIpv6AddressBandwidthDemo", &vpc.Ipv6AddressBandwidthArgs{
    			Bandwidth:          pulumi.Int(200),
    			BillingType:        pulumi.Int(2),
    			Ipv6Address:        pulumi.String("2406:d440:10a:****:92b:****:90b6:4f09"),
    			ProjectName:        pulumi.String("default"),
    			BandwidthPackageId: pulumi.String("bwp-1vm41dmikjr451j8exxxxx"),
    			Tags: vpc.Ipv6AddressBandwidthTagArray{
    				&vpc.Ipv6AddressBandwidthTagArgs{
    					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 vPCIpv6AddressBandwidthDemo = new Volcenginecc.Vpc.Ipv6AddressBandwidth("VPCIpv6AddressBandwidthDemo", new()
        {
            Bandwidth = 200,
            BillingType = 2,
            Ipv6Address = "2406:d440:10a:****:92b:****:90b6:4f09",
            ProjectName = "default",
            BandwidthPackageId = "bwp-1vm41dmikjr451j8exxxxx",
            Tags = new[]
            {
                new Volcenginecc.Vpc.Inputs.Ipv6AddressBandwidthTagArgs
                {
                    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.Ipv6AddressBandwidth;
    import com.volcengine.volcenginecc.vpc.Ipv6AddressBandwidthArgs;
    import com.pulumi.volcenginecc.vpc.inputs.Ipv6AddressBandwidthTagArgs;
    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 vPCIpv6AddressBandwidthDemo = new Ipv6AddressBandwidth("vPCIpv6AddressBandwidthDemo", Ipv6AddressBandwidthArgs.builder()
                .bandwidth(200)
                .billingType(2)
                .ipv6Address("2406:d440:10a:****:92b:****:90b6:4f09")
                .projectName("default")
                .bandwidthPackageId("bwp-1vm41dmikjr451j8exxxxx")
                .tags(Ipv6AddressBandwidthTagArgs.builder()
                    .key("env")
                    .value("test")
                    .build())
                .build());
    
        }
    }
    
    resources:
      vPCIpv6AddressBandwidthDemo:
        type: volcenginecc:vpc:Ipv6AddressBandwidth
        name: VPCIpv6AddressBandwidthDemo
        properties:
          bandwidth: 200
          billingType: 2
          ipv6Address: 2406:d440:10a:****:92b:****:90b6:4f09
          projectName: default
          bandwidthPackageId: bwp-1vm41dmikjr451j8exxxxx
          tags:
            - key: env
              value: test
    

    Create Ipv6AddressBandwidth Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Ipv6AddressBandwidth(name: string, args: Ipv6AddressBandwidthArgs, opts?: CustomResourceOptions);
    @overload
    def Ipv6AddressBandwidth(resource_name: str,
                             args: Ipv6AddressBandwidthArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def Ipv6AddressBandwidth(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             billing_type: Optional[int] = None,
                             ipv6_address: Optional[str] = None,
                             bandwidth: Optional[int] = None,
                             bandwidth_package_id: Optional[str] = None,
                             project_name: Optional[str] = None,
                             tags: Optional[Sequence[Ipv6AddressBandwidthTagArgs]] = None)
    func NewIpv6AddressBandwidth(ctx *Context, name string, args Ipv6AddressBandwidthArgs, opts ...ResourceOption) (*Ipv6AddressBandwidth, error)
    public Ipv6AddressBandwidth(string name, Ipv6AddressBandwidthArgs args, CustomResourceOptions? opts = null)
    public Ipv6AddressBandwidth(String name, Ipv6AddressBandwidthArgs args)
    public Ipv6AddressBandwidth(String name, Ipv6AddressBandwidthArgs args, CustomResourceOptions options)
    
    type: volcenginecc:vpc:Ipv6AddressBandwidth
    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 Ipv6AddressBandwidthArgs
    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 Ipv6AddressBandwidthArgs
    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 Ipv6AddressBandwidthArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args Ipv6AddressBandwidthArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args Ipv6AddressBandwidthArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Ipv6AddressBandwidth 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 Ipv6AddressBandwidth resource accepts the following input properties:

    BillingType int
    IPv6 public bandwidth billing type. 2: Pay-as-you-go - billed by bandwidth cap. 3: Pay-as-you-go - billed by actual traffic.
    Ipv6Address string
    IPv6 address
    Bandwidth int
    IPv6 public bandwidth cap
    BandwidthPackageId string
    IPv6 shared bandwidth package ID
    ProjectName string
    IPv6 public bandwidth project
    Tags List<Volcengine.Ipv6AddressBandwidthTag>
    BillingType int
    IPv6 public bandwidth billing type. 2: Pay-as-you-go - billed by bandwidth cap. 3: Pay-as-you-go - billed by actual traffic.
    Ipv6Address string
    IPv6 address
    Bandwidth int
    IPv6 public bandwidth cap
    BandwidthPackageId string
    IPv6 shared bandwidth package ID
    ProjectName string
    IPv6 public bandwidth project
    Tags []Ipv6AddressBandwidthTagArgs
    billingType Integer
    IPv6 public bandwidth billing type. 2: Pay-as-you-go - billed by bandwidth cap. 3: Pay-as-you-go - billed by actual traffic.
    ipv6Address String
    IPv6 address
    bandwidth Integer
    IPv6 public bandwidth cap
    bandwidthPackageId String
    IPv6 shared bandwidth package ID
    projectName String
    IPv6 public bandwidth project
    tags List<Ipv6AddressBandwidthTag>
    billingType number
    IPv6 public bandwidth billing type. 2: Pay-as-you-go - billed by bandwidth cap. 3: Pay-as-you-go - billed by actual traffic.
    ipv6Address string
    IPv6 address
    bandwidth number
    IPv6 public bandwidth cap
    bandwidthPackageId string
    IPv6 shared bandwidth package ID
    projectName string
    IPv6 public bandwidth project
    tags Ipv6AddressBandwidthTag[]
    billing_type int
    IPv6 public bandwidth billing type. 2: Pay-as-you-go - billed by bandwidth cap. 3: Pay-as-you-go - billed by actual traffic.
    ipv6_address str
    IPv6 address
    bandwidth int
    IPv6 public bandwidth cap
    bandwidth_package_id str
    IPv6 shared bandwidth package ID
    project_name str
    IPv6 public bandwidth project
    tags Sequence[Ipv6AddressBandwidthTagArgs]
    billingType Number
    IPv6 public bandwidth billing type. 2: Pay-as-you-go - billed by bandwidth cap. 3: Pay-as-you-go - billed by actual traffic.
    ipv6Address String
    IPv6 address
    bandwidth Number
    IPv6 public bandwidth cap
    bandwidthPackageId String
    IPv6 shared bandwidth package ID
    projectName String
    IPv6 public bandwidth project
    tags List<Property Map>

    Outputs

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

    AllocationId string
    IPv6 public bandwidth ID
    BusinessStatus string
    Whether IPv6 public bandwidth is locked. Normal: Normal. FinancialLocked: Locked.
    CreatedTime string
    IPv6 public bandwidth activation time
    DeletedTime string
    IPv6 public bandwidth deletion time
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    Instance ID associated with IPv6 public bandwidth
    InstanceType string
    Instance type associated with IPv6 public bandwidth. EcsInstance: Cloud server instance. ClbInstance: Load balancer.
    Ipv6GatewayId string
    IPv6 gateway ID
    Isp string
    IPv6 public bandwidth line type. BGP: BGP (multi-line).
    LockReason string
    Reason for IPv6 public bandwidth lock. This parameter is returned only when IPv6 public bandwidth is in FinancialLocked status. Financial: Locked due to overdue payment. Security: Locked due to security reasons.
    NetworkType string
    IPv6 address communication type. Private: Private network communication type. Public: Public network communication type.
    OverdueTime string
    IPv6 public bandwidth deactivation time due to overdue payment
    ServiceManaged bool
    Service hosting status
    Status string
    IPv6 public bandwidth status. Creating: Creating. Available: Available.
    UpdatedTime string
    IPv6 public bandwidth last operation time
    AllocationId string
    IPv6 public bandwidth ID
    BusinessStatus string
    Whether IPv6 public bandwidth is locked. Normal: Normal. FinancialLocked: Locked.
    CreatedTime string
    IPv6 public bandwidth activation time
    DeletedTime string
    IPv6 public bandwidth deletion time
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    Instance ID associated with IPv6 public bandwidth
    InstanceType string
    Instance type associated with IPv6 public bandwidth. EcsInstance: Cloud server instance. ClbInstance: Load balancer.
    Ipv6GatewayId string
    IPv6 gateway ID
    Isp string
    IPv6 public bandwidth line type. BGP: BGP (multi-line).
    LockReason string
    Reason for IPv6 public bandwidth lock. This parameter is returned only when IPv6 public bandwidth is in FinancialLocked status. Financial: Locked due to overdue payment. Security: Locked due to security reasons.
    NetworkType string
    IPv6 address communication type. Private: Private network communication type. Public: Public network communication type.
    OverdueTime string
    IPv6 public bandwidth deactivation time due to overdue payment
    ServiceManaged bool
    Service hosting status
    Status string
    IPv6 public bandwidth status. Creating: Creating. Available: Available.
    UpdatedTime string
    IPv6 public bandwidth last operation time
    allocationId String
    IPv6 public bandwidth ID
    businessStatus String
    Whether IPv6 public bandwidth is locked. Normal: Normal. FinancialLocked: Locked.
    createdTime String
    IPv6 public bandwidth activation time
    deletedTime String
    IPv6 public bandwidth deletion time
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    Instance ID associated with IPv6 public bandwidth
    instanceType String
    Instance type associated with IPv6 public bandwidth. EcsInstance: Cloud server instance. ClbInstance: Load balancer.
    ipv6GatewayId String
    IPv6 gateway ID
    isp String
    IPv6 public bandwidth line type. BGP: BGP (multi-line).
    lockReason String
    Reason for IPv6 public bandwidth lock. This parameter is returned only when IPv6 public bandwidth is in FinancialLocked status. Financial: Locked due to overdue payment. Security: Locked due to security reasons.
    networkType String
    IPv6 address communication type. Private: Private network communication type. Public: Public network communication type.
    overdueTime String
    IPv6 public bandwidth deactivation time due to overdue payment
    serviceManaged Boolean
    Service hosting status
    status String
    IPv6 public bandwidth status. Creating: Creating. Available: Available.
    updatedTime String
    IPv6 public bandwidth last operation time
    allocationId string
    IPv6 public bandwidth ID
    businessStatus string
    Whether IPv6 public bandwidth is locked. Normal: Normal. FinancialLocked: Locked.
    createdTime string
    IPv6 public bandwidth activation time
    deletedTime string
    IPv6 public bandwidth deletion time
    id string
    The provider-assigned unique ID for this managed resource.
    instanceId string
    Instance ID associated with IPv6 public bandwidth
    instanceType string
    Instance type associated with IPv6 public bandwidth. EcsInstance: Cloud server instance. ClbInstance: Load balancer.
    ipv6GatewayId string
    IPv6 gateway ID
    isp string
    IPv6 public bandwidth line type. BGP: BGP (multi-line).
    lockReason string
    Reason for IPv6 public bandwidth lock. This parameter is returned only when IPv6 public bandwidth is in FinancialLocked status. Financial: Locked due to overdue payment. Security: Locked due to security reasons.
    networkType string
    IPv6 address communication type. Private: Private network communication type. Public: Public network communication type.
    overdueTime string
    IPv6 public bandwidth deactivation time due to overdue payment
    serviceManaged boolean
    Service hosting status
    status string
    IPv6 public bandwidth status. Creating: Creating. Available: Available.
    updatedTime string
    IPv6 public bandwidth last operation time
    allocation_id str
    IPv6 public bandwidth ID
    business_status str
    Whether IPv6 public bandwidth is locked. Normal: Normal. FinancialLocked: Locked.
    created_time str
    IPv6 public bandwidth activation time
    deleted_time str
    IPv6 public bandwidth deletion time
    id str
    The provider-assigned unique ID for this managed resource.
    instance_id str
    Instance ID associated with IPv6 public bandwidth
    instance_type str
    Instance type associated with IPv6 public bandwidth. EcsInstance: Cloud server instance. ClbInstance: Load balancer.
    ipv6_gateway_id str
    IPv6 gateway ID
    isp str
    IPv6 public bandwidth line type. BGP: BGP (multi-line).
    lock_reason str
    Reason for IPv6 public bandwidth lock. This parameter is returned only when IPv6 public bandwidth is in FinancialLocked status. Financial: Locked due to overdue payment. Security: Locked due to security reasons.
    network_type str
    IPv6 address communication type. Private: Private network communication type. Public: Public network communication type.
    overdue_time str
    IPv6 public bandwidth deactivation time due to overdue payment
    service_managed bool
    Service hosting status
    status str
    IPv6 public bandwidth status. Creating: Creating. Available: Available.
    updated_time str
    IPv6 public bandwidth last operation time
    allocationId String
    IPv6 public bandwidth ID
    businessStatus String
    Whether IPv6 public bandwidth is locked. Normal: Normal. FinancialLocked: Locked.
    createdTime String
    IPv6 public bandwidth activation time
    deletedTime String
    IPv6 public bandwidth deletion time
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    Instance ID associated with IPv6 public bandwidth
    instanceType String
    Instance type associated with IPv6 public bandwidth. EcsInstance: Cloud server instance. ClbInstance: Load balancer.
    ipv6GatewayId String
    IPv6 gateway ID
    isp String
    IPv6 public bandwidth line type. BGP: BGP (multi-line).
    lockReason String
    Reason for IPv6 public bandwidth lock. This parameter is returned only when IPv6 public bandwidth is in FinancialLocked status. Financial: Locked due to overdue payment. Security: Locked due to security reasons.
    networkType String
    IPv6 address communication type. Private: Private network communication type. Public: Public network communication type.
    overdueTime String
    IPv6 public bandwidth deactivation time due to overdue payment
    serviceManaged Boolean
    Service hosting status
    status String
    IPv6 public bandwidth status. Creating: Creating. Available: Available.
    updatedTime String
    IPv6 public bandwidth last operation time

    Look up Existing Ipv6AddressBandwidth Resource

    Get an existing Ipv6AddressBandwidth 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?: Ipv6AddressBandwidthState, opts?: CustomResourceOptions): Ipv6AddressBandwidth
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allocation_id: Optional[str] = None,
            bandwidth: Optional[int] = None,
            bandwidth_package_id: Optional[str] = None,
            billing_type: Optional[int] = None,
            business_status: Optional[str] = None,
            created_time: Optional[str] = None,
            deleted_time: Optional[str] = None,
            instance_id: Optional[str] = None,
            instance_type: Optional[str] = None,
            ipv6_address: Optional[str] = None,
            ipv6_gateway_id: Optional[str] = None,
            isp: Optional[str] = None,
            lock_reason: Optional[str] = None,
            network_type: Optional[str] = None,
            overdue_time: Optional[str] = None,
            project_name: Optional[str] = None,
            service_managed: Optional[bool] = None,
            status: Optional[str] = None,
            tags: Optional[Sequence[Ipv6AddressBandwidthTagArgs]] = None,
            updated_time: Optional[str] = None) -> Ipv6AddressBandwidth
    func GetIpv6AddressBandwidth(ctx *Context, name string, id IDInput, state *Ipv6AddressBandwidthState, opts ...ResourceOption) (*Ipv6AddressBandwidth, error)
    public static Ipv6AddressBandwidth Get(string name, Input<string> id, Ipv6AddressBandwidthState? state, CustomResourceOptions? opts = null)
    public static Ipv6AddressBandwidth get(String name, Output<String> id, Ipv6AddressBandwidthState state, CustomResourceOptions options)
    resources:  _:    type: volcenginecc:vpc:Ipv6AddressBandwidth    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:
    AllocationId string
    IPv6 public bandwidth ID
    Bandwidth int
    IPv6 public bandwidth cap
    BandwidthPackageId string
    IPv6 shared bandwidth package ID
    BillingType int
    IPv6 public bandwidth billing type. 2: Pay-as-you-go - billed by bandwidth cap. 3: Pay-as-you-go - billed by actual traffic.
    BusinessStatus string
    Whether IPv6 public bandwidth is locked. Normal: Normal. FinancialLocked: Locked.
    CreatedTime string
    IPv6 public bandwidth activation time
    DeletedTime string
    IPv6 public bandwidth deletion time
    InstanceId string
    Instance ID associated with IPv6 public bandwidth
    InstanceType string
    Instance type associated with IPv6 public bandwidth. EcsInstance: Cloud server instance. ClbInstance: Load balancer.
    Ipv6Address string
    IPv6 address
    Ipv6GatewayId string
    IPv6 gateway ID
    Isp string
    IPv6 public bandwidth line type. BGP: BGP (multi-line).
    LockReason string
    Reason for IPv6 public bandwidth lock. This parameter is returned only when IPv6 public bandwidth is in FinancialLocked status. Financial: Locked due to overdue payment. Security: Locked due to security reasons.
    NetworkType string
    IPv6 address communication type. Private: Private network communication type. Public: Public network communication type.
    OverdueTime string
    IPv6 public bandwidth deactivation time due to overdue payment
    ProjectName string
    IPv6 public bandwidth project
    ServiceManaged bool
    Service hosting status
    Status string
    IPv6 public bandwidth status. Creating: Creating. Available: Available.
    Tags List<Volcengine.Ipv6AddressBandwidthTag>
    UpdatedTime string
    IPv6 public bandwidth last operation time
    AllocationId string
    IPv6 public bandwidth ID
    Bandwidth int
    IPv6 public bandwidth cap
    BandwidthPackageId string
    IPv6 shared bandwidth package ID
    BillingType int
    IPv6 public bandwidth billing type. 2: Pay-as-you-go - billed by bandwidth cap. 3: Pay-as-you-go - billed by actual traffic.
    BusinessStatus string
    Whether IPv6 public bandwidth is locked. Normal: Normal. FinancialLocked: Locked.
    CreatedTime string
    IPv6 public bandwidth activation time
    DeletedTime string
    IPv6 public bandwidth deletion time
    InstanceId string
    Instance ID associated with IPv6 public bandwidth
    InstanceType string
    Instance type associated with IPv6 public bandwidth. EcsInstance: Cloud server instance. ClbInstance: Load balancer.
    Ipv6Address string
    IPv6 address
    Ipv6GatewayId string
    IPv6 gateway ID
    Isp string
    IPv6 public bandwidth line type. BGP: BGP (multi-line).
    LockReason string
    Reason for IPv6 public bandwidth lock. This parameter is returned only when IPv6 public bandwidth is in FinancialLocked status. Financial: Locked due to overdue payment. Security: Locked due to security reasons.
    NetworkType string
    IPv6 address communication type. Private: Private network communication type. Public: Public network communication type.
    OverdueTime string
    IPv6 public bandwidth deactivation time due to overdue payment
    ProjectName string
    IPv6 public bandwidth project
    ServiceManaged bool
    Service hosting status
    Status string
    IPv6 public bandwidth status. Creating: Creating. Available: Available.
    Tags []Ipv6AddressBandwidthTagArgs
    UpdatedTime string
    IPv6 public bandwidth last operation time
    allocationId String
    IPv6 public bandwidth ID
    bandwidth Integer
    IPv6 public bandwidth cap
    bandwidthPackageId String
    IPv6 shared bandwidth package ID
    billingType Integer
    IPv6 public bandwidth billing type. 2: Pay-as-you-go - billed by bandwidth cap. 3: Pay-as-you-go - billed by actual traffic.
    businessStatus String
    Whether IPv6 public bandwidth is locked. Normal: Normal. FinancialLocked: Locked.
    createdTime String
    IPv6 public bandwidth activation time
    deletedTime String
    IPv6 public bandwidth deletion time
    instanceId String
    Instance ID associated with IPv6 public bandwidth
    instanceType String
    Instance type associated with IPv6 public bandwidth. EcsInstance: Cloud server instance. ClbInstance: Load balancer.
    ipv6Address String
    IPv6 address
    ipv6GatewayId String
    IPv6 gateway ID
    isp String
    IPv6 public bandwidth line type. BGP: BGP (multi-line).
    lockReason String
    Reason for IPv6 public bandwidth lock. This parameter is returned only when IPv6 public bandwidth is in FinancialLocked status. Financial: Locked due to overdue payment. Security: Locked due to security reasons.
    networkType String
    IPv6 address communication type. Private: Private network communication type. Public: Public network communication type.
    overdueTime String
    IPv6 public bandwidth deactivation time due to overdue payment
    projectName String
    IPv6 public bandwidth project
    serviceManaged Boolean
    Service hosting status
    status String
    IPv6 public bandwidth status. Creating: Creating. Available: Available.
    tags List<Ipv6AddressBandwidthTag>
    updatedTime String
    IPv6 public bandwidth last operation time
    allocationId string
    IPv6 public bandwidth ID
    bandwidth number
    IPv6 public bandwidth cap
    bandwidthPackageId string
    IPv6 shared bandwidth package ID
    billingType number
    IPv6 public bandwidth billing type. 2: Pay-as-you-go - billed by bandwidth cap. 3: Pay-as-you-go - billed by actual traffic.
    businessStatus string
    Whether IPv6 public bandwidth is locked. Normal: Normal. FinancialLocked: Locked.
    createdTime string
    IPv6 public bandwidth activation time
    deletedTime string
    IPv6 public bandwidth deletion time
    instanceId string
    Instance ID associated with IPv6 public bandwidth
    instanceType string
    Instance type associated with IPv6 public bandwidth. EcsInstance: Cloud server instance. ClbInstance: Load balancer.
    ipv6Address string
    IPv6 address
    ipv6GatewayId string
    IPv6 gateway ID
    isp string
    IPv6 public bandwidth line type. BGP: BGP (multi-line).
    lockReason string
    Reason for IPv6 public bandwidth lock. This parameter is returned only when IPv6 public bandwidth is in FinancialLocked status. Financial: Locked due to overdue payment. Security: Locked due to security reasons.
    networkType string
    IPv6 address communication type. Private: Private network communication type. Public: Public network communication type.
    overdueTime string
    IPv6 public bandwidth deactivation time due to overdue payment
    projectName string
    IPv6 public bandwidth project
    serviceManaged boolean
    Service hosting status
    status string
    IPv6 public bandwidth status. Creating: Creating. Available: Available.
    tags Ipv6AddressBandwidthTag[]
    updatedTime string
    IPv6 public bandwidth last operation time
    allocation_id str
    IPv6 public bandwidth ID
    bandwidth int
    IPv6 public bandwidth cap
    bandwidth_package_id str
    IPv6 shared bandwidth package ID
    billing_type int
    IPv6 public bandwidth billing type. 2: Pay-as-you-go - billed by bandwidth cap. 3: Pay-as-you-go - billed by actual traffic.
    business_status str
    Whether IPv6 public bandwidth is locked. Normal: Normal. FinancialLocked: Locked.
    created_time str
    IPv6 public bandwidth activation time
    deleted_time str
    IPv6 public bandwidth deletion time
    instance_id str
    Instance ID associated with IPv6 public bandwidth
    instance_type str
    Instance type associated with IPv6 public bandwidth. EcsInstance: Cloud server instance. ClbInstance: Load balancer.
    ipv6_address str
    IPv6 address
    ipv6_gateway_id str
    IPv6 gateway ID
    isp str
    IPv6 public bandwidth line type. BGP: BGP (multi-line).
    lock_reason str
    Reason for IPv6 public bandwidth lock. This parameter is returned only when IPv6 public bandwidth is in FinancialLocked status. Financial: Locked due to overdue payment. Security: Locked due to security reasons.
    network_type str
    IPv6 address communication type. Private: Private network communication type. Public: Public network communication type.
    overdue_time str
    IPv6 public bandwidth deactivation time due to overdue payment
    project_name str
    IPv6 public bandwidth project
    service_managed bool
    Service hosting status
    status str
    IPv6 public bandwidth status. Creating: Creating. Available: Available.
    tags Sequence[Ipv6AddressBandwidthTagArgs]
    updated_time str
    IPv6 public bandwidth last operation time
    allocationId String
    IPv6 public bandwidth ID
    bandwidth Number
    IPv6 public bandwidth cap
    bandwidthPackageId String
    IPv6 shared bandwidth package ID
    billingType Number
    IPv6 public bandwidth billing type. 2: Pay-as-you-go - billed by bandwidth cap. 3: Pay-as-you-go - billed by actual traffic.
    businessStatus String
    Whether IPv6 public bandwidth is locked. Normal: Normal. FinancialLocked: Locked.
    createdTime String
    IPv6 public bandwidth activation time
    deletedTime String
    IPv6 public bandwidth deletion time
    instanceId String
    Instance ID associated with IPv6 public bandwidth
    instanceType String
    Instance type associated with IPv6 public bandwidth. EcsInstance: Cloud server instance. ClbInstance: Load balancer.
    ipv6Address String
    IPv6 address
    ipv6GatewayId String
    IPv6 gateway ID
    isp String
    IPv6 public bandwidth line type. BGP: BGP (multi-line).
    lockReason String
    Reason for IPv6 public bandwidth lock. This parameter is returned only when IPv6 public bandwidth is in FinancialLocked status. Financial: Locked due to overdue payment. Security: Locked due to security reasons.
    networkType String
    IPv6 address communication type. Private: Private network communication type. Public: Public network communication type.
    overdueTime String
    IPv6 public bandwidth deactivation time due to overdue payment
    projectName String
    IPv6 public bandwidth project
    serviceManaged Boolean
    Service hosting status
    status String
    IPv6 public bandwidth status. Creating: Creating. Available: Available.
    tags List<Property Map>
    updatedTime String
    IPv6 public bandwidth last operation time

    Supporting Types

    Ipv6AddressBandwidthTag, Ipv6AddressBandwidthTagArgs

    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/ipv6AddressBandwidth:Ipv6AddressBandwidth example "allocation_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.