1. Packages
  2. Bytepluscc Provider
  3. API Docs
  4. vpc
  5. Ipv6AddressBandwidth
Viewing docs for bytepluscc v0.0.16
published on Monday, Mar 9, 2026 by Byteplus
bytepluscc logo
Viewing docs for bytepluscc v0.0.16
published on Monday, Mar 9, 2026 by Byteplus

    IPv6公网流量的带宽,决定IPv6地址的公网通信能力。IPv6地址若未开通IPv6公网带宽,则仅支持私网互通,您可以按需为IPv6地址开通IPv6公网带宽,使该IPv6地址具备与公网互通的能力。

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as bytepluscc from "@byteplus/pulumi-bytepluscc";
    
    const vPCIpv6AddressBandwidthDemo = new bytepluscc.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_bytepluscc as bytepluscc
    
    v_pc_ipv6_address_bandwidth_demo = bytepluscc.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/byteplus-sdk/pulumi-bytepluscc/sdk/go/bytepluscc/vpc"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    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 Bytepluscc = Byteplus.Pulumi.Bytepluscc;
    
    return await Deployment.RunAsync(() => 
    {
        var vPCIpv6AddressBandwidthDemo = new Bytepluscc.Vpc.Ipv6AddressBandwidth("VPCIpv6AddressBandwidthDemo", new()
        {
            Bandwidth = 200,
            BillingType = 2,
            Ipv6Address = "2406:d440:10a:****:92b:****:90b6:4f09",
            ProjectName = "default",
            BandwidthPackageId = "bwp-1vm41dmikjr451j8exxxxx",
            Tags = new[]
            {
                new Bytepluscc.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.byteplus.bytepluscc.vpc.Ipv6AddressBandwidth;
    import com.byteplus.bytepluscc.vpc.Ipv6AddressBandwidthArgs;
    import com.pulumi.bytepluscc.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: bytepluscc: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: bytepluscc: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.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var ipv6AddressBandwidthResource = new Bytepluscc.Vpc.Ipv6AddressBandwidth("ipv6AddressBandwidthResource", new()
    {
        BillingType = 0,
        Ipv6Address = "string",
        Bandwidth = 0,
        BandwidthPackageId = "string",
        ProjectName = "string",
        Tags = new[]
        {
            new Bytepluscc.Vpc.Inputs.Ipv6AddressBandwidthTagArgs
            {
                Key = "string",
                Value = "string",
            },
        },
    });
    
    example, err := vpc.NewIpv6AddressBandwidth(ctx, "ipv6AddressBandwidthResource", &vpc.Ipv6AddressBandwidthArgs{
    	BillingType:        pulumi.Int(0),
    	Ipv6Address:        pulumi.String("string"),
    	Bandwidth:          pulumi.Int(0),
    	BandwidthPackageId: pulumi.String("string"),
    	ProjectName:        pulumi.String("string"),
    	Tags: vpc.Ipv6AddressBandwidthTagArray{
    		&vpc.Ipv6AddressBandwidthTagArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    })
    
    var ipv6AddressBandwidthResource = new Ipv6AddressBandwidth("ipv6AddressBandwidthResource", Ipv6AddressBandwidthArgs.builder()
        .billingType(0)
        .ipv6Address("string")
        .bandwidth(0)
        .bandwidthPackageId("string")
        .projectName("string")
        .tags(Ipv6AddressBandwidthTagArgs.builder()
            .key("string")
            .value("string")
            .build())
        .build());
    
    ipv6_address_bandwidth_resource = bytepluscc.vpc.Ipv6AddressBandwidth("ipv6AddressBandwidthResource",
        billing_type=0,
        ipv6_address="string",
        bandwidth=0,
        bandwidth_package_id="string",
        project_name="string",
        tags=[{
            "key": "string",
            "value": "string",
        }])
    
    const ipv6AddressBandwidthResource = new bytepluscc.vpc.Ipv6AddressBandwidth("ipv6AddressBandwidthResource", {
        billingType: 0,
        ipv6Address: "string",
        bandwidth: 0,
        bandwidthPackageId: "string",
        projectName: "string",
        tags: [{
            key: "string",
            value: "string",
        }],
    });
    
    type: bytepluscc:vpc:Ipv6AddressBandwidth
    properties:
        bandwidth: 0
        bandwidthPackageId: string
        billingType: 0
        ipv6Address: string
        projectName: string
        tags:
            - key: string
              value: string
    

    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公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
    Ipv6Address string
    IPv6地址。
    Bandwidth int
    IPv6公网带宽的带宽上限。
    BandwidthPackageId string
    IPv6共享带宽包的ID。
    ProjectName string
    IPv6公网带宽的项目。
    Tags List<Byteplus.Ipv6AddressBandwidthTag>
    BillingType int
    IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
    Ipv6Address string
    IPv6地址。
    Bandwidth int
    IPv6公网带宽的带宽上限。
    BandwidthPackageId string
    IPv6共享带宽包的ID。
    ProjectName string
    IPv6公网带宽的项目。
    Tags []Ipv6AddressBandwidthTagArgs
    billingType Integer
    IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
    ipv6Address String
    IPv6地址。
    bandwidth Integer
    IPv6公网带宽的带宽上限。
    bandwidthPackageId String
    IPv6共享带宽包的ID。
    projectName String
    IPv6公网带宽的项目。
    tags List<Ipv6AddressBandwidthTag>
    billingType number
    IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
    ipv6Address string
    IPv6地址。
    bandwidth number
    IPv6公网带宽的带宽上限。
    bandwidthPackageId string
    IPv6共享带宽包的ID。
    projectName string
    IPv6公网带宽的项目。
    tags Ipv6AddressBandwidthTag[]
    billing_type int
    IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
    ipv6_address str
    IPv6地址。
    bandwidth int
    IPv6公网带宽的带宽上限。
    bandwidth_package_id str
    IPv6共享带宽包的ID。
    project_name str
    IPv6公网带宽的项目。
    tags Sequence[Ipv6AddressBandwidthTagArgs]
    billingType Number
    IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
    ipv6Address String
    IPv6地址。
    bandwidth Number
    IPv6公网带宽的带宽上限。
    bandwidthPackageId String
    IPv6共享带宽包的ID。
    projectName String
    IPv6公网带宽的项目。
    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公网带宽的ID。
    BusinessStatus string
    IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
    CreatedTime string
    IPv6公网带宽的开通时间。
    DeletedTime string
    IPv6公网带宽的删除时间。
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    IPv6公网带宽关联的实例ID。
    InstanceType string
    IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
    Ipv6GatewayId string
    IPv6网关的ID。
    Isp string
    IPv6公网带宽的线路类型。BGP:BGP(多线)。
    LockReason string
    IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
    NetworkType string
    IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
    OverdueTime string
    IPv6公网带宽欠费关停的时间。
    ServiceManaged bool
    是否为服务托管。
    Status string
    IPv6公网带宽的状态。Creating:创建中。Available:可用。
    UpdatedTime string
    IPv6公网带宽的最近操作时间。
    AllocationId string
    IPv6公网带宽的ID。
    BusinessStatus string
    IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
    CreatedTime string
    IPv6公网带宽的开通时间。
    DeletedTime string
    IPv6公网带宽的删除时间。
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    IPv6公网带宽关联的实例ID。
    InstanceType string
    IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
    Ipv6GatewayId string
    IPv6网关的ID。
    Isp string
    IPv6公网带宽的线路类型。BGP:BGP(多线)。
    LockReason string
    IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
    NetworkType string
    IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
    OverdueTime string
    IPv6公网带宽欠费关停的时间。
    ServiceManaged bool
    是否为服务托管。
    Status string
    IPv6公网带宽的状态。Creating:创建中。Available:可用。
    UpdatedTime string
    IPv6公网带宽的最近操作时间。
    allocationId String
    IPv6公网带宽的ID。
    businessStatus String
    IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
    createdTime String
    IPv6公网带宽的开通时间。
    deletedTime String
    IPv6公网带宽的删除时间。
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    IPv6公网带宽关联的实例ID。
    instanceType String
    IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
    ipv6GatewayId String
    IPv6网关的ID。
    isp String
    IPv6公网带宽的线路类型。BGP:BGP(多线)。
    lockReason String
    IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
    networkType String
    IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
    overdueTime String
    IPv6公网带宽欠费关停的时间。
    serviceManaged Boolean
    是否为服务托管。
    status String
    IPv6公网带宽的状态。Creating:创建中。Available:可用。
    updatedTime String
    IPv6公网带宽的最近操作时间。
    allocationId string
    IPv6公网带宽的ID。
    businessStatus string
    IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
    createdTime string
    IPv6公网带宽的开通时间。
    deletedTime string
    IPv6公网带宽的删除时间。
    id string
    The provider-assigned unique ID for this managed resource.
    instanceId string
    IPv6公网带宽关联的实例ID。
    instanceType string
    IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
    ipv6GatewayId string
    IPv6网关的ID。
    isp string
    IPv6公网带宽的线路类型。BGP:BGP(多线)。
    lockReason string
    IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
    networkType string
    IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
    overdueTime string
    IPv6公网带宽欠费关停的时间。
    serviceManaged boolean
    是否为服务托管。
    status string
    IPv6公网带宽的状态。Creating:创建中。Available:可用。
    updatedTime string
    IPv6公网带宽的最近操作时间。
    allocation_id str
    IPv6公网带宽的ID。
    business_status str
    IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
    created_time str
    IPv6公网带宽的开通时间。
    deleted_time str
    IPv6公网带宽的删除时间。
    id str
    The provider-assigned unique ID for this managed resource.
    instance_id str
    IPv6公网带宽关联的实例ID。
    instance_type str
    IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
    ipv6_gateway_id str
    IPv6网关的ID。
    isp str
    IPv6公网带宽的线路类型。BGP:BGP(多线)。
    lock_reason str
    IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
    network_type str
    IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
    overdue_time str
    IPv6公网带宽欠费关停的时间。
    service_managed bool
    是否为服务托管。
    status str
    IPv6公网带宽的状态。Creating:创建中。Available:可用。
    updated_time str
    IPv6公网带宽的最近操作时间。
    allocationId String
    IPv6公网带宽的ID。
    businessStatus String
    IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
    createdTime String
    IPv6公网带宽的开通时间。
    deletedTime String
    IPv6公网带宽的删除时间。
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    IPv6公网带宽关联的实例ID。
    instanceType String
    IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
    ipv6GatewayId String
    IPv6网关的ID。
    isp String
    IPv6公网带宽的线路类型。BGP:BGP(多线)。
    lockReason String
    IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
    networkType String
    IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
    overdueTime String
    IPv6公网带宽欠费关停的时间。
    serviceManaged Boolean
    是否为服务托管。
    status String
    IPv6公网带宽的状态。Creating:创建中。Available:可用。
    updatedTime String
    IPv6公网带宽的最近操作时间。

    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: bytepluscc: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公网带宽的ID。
    Bandwidth int
    IPv6公网带宽的带宽上限。
    BandwidthPackageId string
    IPv6共享带宽包的ID。
    BillingType int
    IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
    BusinessStatus string
    IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
    CreatedTime string
    IPv6公网带宽的开通时间。
    DeletedTime string
    IPv6公网带宽的删除时间。
    InstanceId string
    IPv6公网带宽关联的实例ID。
    InstanceType string
    IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
    Ipv6Address string
    IPv6地址。
    Ipv6GatewayId string
    IPv6网关的ID。
    Isp string
    IPv6公网带宽的线路类型。BGP:BGP(多线)。
    LockReason string
    IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
    NetworkType string
    IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
    OverdueTime string
    IPv6公网带宽欠费关停的时间。
    ProjectName string
    IPv6公网带宽的项目。
    ServiceManaged bool
    是否为服务托管。
    Status string
    IPv6公网带宽的状态。Creating:创建中。Available:可用。
    Tags List<Byteplus.Ipv6AddressBandwidthTag>
    UpdatedTime string
    IPv6公网带宽的最近操作时间。
    AllocationId string
    IPv6公网带宽的ID。
    Bandwidth int
    IPv6公网带宽的带宽上限。
    BandwidthPackageId string
    IPv6共享带宽包的ID。
    BillingType int
    IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
    BusinessStatus string
    IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
    CreatedTime string
    IPv6公网带宽的开通时间。
    DeletedTime string
    IPv6公网带宽的删除时间。
    InstanceId string
    IPv6公网带宽关联的实例ID。
    InstanceType string
    IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
    Ipv6Address string
    IPv6地址。
    Ipv6GatewayId string
    IPv6网关的ID。
    Isp string
    IPv6公网带宽的线路类型。BGP:BGP(多线)。
    LockReason string
    IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
    NetworkType string
    IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
    OverdueTime string
    IPv6公网带宽欠费关停的时间。
    ProjectName string
    IPv6公网带宽的项目。
    ServiceManaged bool
    是否为服务托管。
    Status string
    IPv6公网带宽的状态。Creating:创建中。Available:可用。
    Tags []Ipv6AddressBandwidthTagArgs
    UpdatedTime string
    IPv6公网带宽的最近操作时间。
    allocationId String
    IPv6公网带宽的ID。
    bandwidth Integer
    IPv6公网带宽的带宽上限。
    bandwidthPackageId String
    IPv6共享带宽包的ID。
    billingType Integer
    IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
    businessStatus String
    IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
    createdTime String
    IPv6公网带宽的开通时间。
    deletedTime String
    IPv6公网带宽的删除时间。
    instanceId String
    IPv6公网带宽关联的实例ID。
    instanceType String
    IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
    ipv6Address String
    IPv6地址。
    ipv6GatewayId String
    IPv6网关的ID。
    isp String
    IPv6公网带宽的线路类型。BGP:BGP(多线)。
    lockReason String
    IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
    networkType String
    IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
    overdueTime String
    IPv6公网带宽欠费关停的时间。
    projectName String
    IPv6公网带宽的项目。
    serviceManaged Boolean
    是否为服务托管。
    status String
    IPv6公网带宽的状态。Creating:创建中。Available:可用。
    tags List<Ipv6AddressBandwidthTag>
    updatedTime String
    IPv6公网带宽的最近操作时间。
    allocationId string
    IPv6公网带宽的ID。
    bandwidth number
    IPv6公网带宽的带宽上限。
    bandwidthPackageId string
    IPv6共享带宽包的ID。
    billingType number
    IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
    businessStatus string
    IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
    createdTime string
    IPv6公网带宽的开通时间。
    deletedTime string
    IPv6公网带宽的删除时间。
    instanceId string
    IPv6公网带宽关联的实例ID。
    instanceType string
    IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
    ipv6Address string
    IPv6地址。
    ipv6GatewayId string
    IPv6网关的ID。
    isp string
    IPv6公网带宽的线路类型。BGP:BGP(多线)。
    lockReason string
    IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
    networkType string
    IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
    overdueTime string
    IPv6公网带宽欠费关停的时间。
    projectName string
    IPv6公网带宽的项目。
    serviceManaged boolean
    是否为服务托管。
    status string
    IPv6公网带宽的状态。Creating:创建中。Available:可用。
    tags Ipv6AddressBandwidthTag[]
    updatedTime string
    IPv6公网带宽的最近操作时间。
    allocation_id str
    IPv6公网带宽的ID。
    bandwidth int
    IPv6公网带宽的带宽上限。
    bandwidth_package_id str
    IPv6共享带宽包的ID。
    billing_type int
    IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
    business_status str
    IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
    created_time str
    IPv6公网带宽的开通时间。
    deleted_time str
    IPv6公网带宽的删除时间。
    instance_id str
    IPv6公网带宽关联的实例ID。
    instance_type str
    IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
    ipv6_address str
    IPv6地址。
    ipv6_gateway_id str
    IPv6网关的ID。
    isp str
    IPv6公网带宽的线路类型。BGP:BGP(多线)。
    lock_reason str
    IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
    network_type str
    IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
    overdue_time str
    IPv6公网带宽欠费关停的时间。
    project_name str
    IPv6公网带宽的项目。
    service_managed bool
    是否为服务托管。
    status str
    IPv6公网带宽的状态。Creating:创建中。Available:可用。
    tags Sequence[Ipv6AddressBandwidthTagArgs]
    updated_time str
    IPv6公网带宽的最近操作时间。
    allocationId String
    IPv6公网带宽的ID。
    bandwidth Number
    IPv6公网带宽的带宽上限。
    bandwidthPackageId String
    IPv6共享带宽包的ID。
    billingType Number
    IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
    businessStatus String
    IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
    createdTime String
    IPv6公网带宽的开通时间。
    deletedTime String
    IPv6公网带宽的删除时间。
    instanceId String
    IPv6公网带宽关联的实例ID。
    instanceType String
    IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
    ipv6Address String
    IPv6地址。
    ipv6GatewayId String
    IPv6网关的ID。
    isp String
    IPv6公网带宽的线路类型。BGP:BGP(多线)。
    lockReason String
    IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
    networkType String
    IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
    overdueTime String
    IPv6公网带宽欠费关停的时间。
    projectName String
    IPv6公网带宽的项目。
    serviceManaged Boolean
    是否为服务托管。
    status String
    IPv6公网带宽的状态。Creating:创建中。Available:可用。
    tags List<Property Map>
    updatedTime String
    IPv6公网带宽的最近操作时间。

    Supporting Types

    Ipv6AddressBandwidthTag, Ipv6AddressBandwidthTagArgs

    Key string
    标签键。
    Value string
    标签值。
    Key string
    标签键。
    Value string
    标签值。
    key String
    标签键。
    value String
    标签值。
    key string
    标签键。
    value string
    标签值。
    key str
    标签键。
    value str
    标签值。
    key String
    标签键。
    value String
    标签值。

    Import

    $ pulumi import bytepluscc:vpc/ipv6AddressBandwidth:Ipv6AddressBandwidth example "allocation_id"
    

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

    Package Details

    Repository
    bytepluscc byteplus-sdk/pulumi-bytepluscc
    License
    MPL-2.0
    Notes
    This Pulumi package is based on the bytepluscc Terraform Provider.
    bytepluscc logo
    Viewing docs for bytepluscc v0.0.16
    published on Monday, Mar 9, 2026 by Byteplus
      Try Pulumi Cloud free. Your team will thank you.