published on Monday, Mar 9, 2026 by Byteplus
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:
- Billing
Type int - IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
- Ipv6Address string
- IPv6地址。
- Bandwidth int
- IPv6公网带宽的带宽上限。
- Bandwidth
Package stringId - IPv6共享带宽包的ID。
- Project
Name string - IPv6公网带宽的项目。
-
List<Byteplus.
Ipv6Address Bandwidth Tag>
- Billing
Type int - IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
- Ipv6Address string
- IPv6地址。
- Bandwidth int
- IPv6公网带宽的带宽上限。
- Bandwidth
Package stringId - IPv6共享带宽包的ID。
- Project
Name string - IPv6公网带宽的项目。
-
[]Ipv6Address
Bandwidth Tag Args
- billing
Type Integer - IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
- ipv6Address String
- IPv6地址。
- bandwidth Integer
- IPv6公网带宽的带宽上限。
- bandwidth
Package StringId - IPv6共享带宽包的ID。
- project
Name String - IPv6公网带宽的项目。
-
List<Ipv6Address
Bandwidth Tag>
- billing
Type number - IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
- ipv6Address string
- IPv6地址。
- bandwidth number
- IPv6公网带宽的带宽上限。
- bandwidth
Package stringId - IPv6共享带宽包的ID。
- project
Name string - IPv6公网带宽的项目。
-
Ipv6Address
Bandwidth Tag[]
- billing_
type int - IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
- ipv6_
address str - IPv6地址。
- bandwidth int
- IPv6公网带宽的带宽上限。
- bandwidth_
package_ strid - IPv6共享带宽包的ID。
- project_
name str - IPv6公网带宽的项目。
-
Sequence[Ipv6Address
Bandwidth Tag Args]
- billing
Type Number - IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
- ipv6Address String
- IPv6地址。
- bandwidth Number
- IPv6公网带宽的带宽上限。
- bandwidth
Package StringId - IPv6共享带宽包的ID。
- project
Name String - IPv6公网带宽的项目。
- List<Property Map>
Outputs
All input properties are implicitly available as output properties. Additionally, the Ipv6AddressBandwidth resource produces the following output properties:
- Allocation
Id string - IPv6公网带宽的ID。
- Business
Status string - IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
- Created
Time string - IPv6公网带宽的开通时间。
- Deleted
Time string - IPv6公网带宽的删除时间。
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Id string - IPv6公网带宽关联的实例ID。
- Instance
Type string - IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
- Ipv6Gateway
Id string - IPv6网关的ID。
- Isp string
- IPv6公网带宽的线路类型。BGP:BGP(多线)。
- Lock
Reason string - IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
- Network
Type string - IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
- Overdue
Time string - IPv6公网带宽欠费关停的时间。
- Service
Managed bool - 是否为服务托管。
- Status string
- IPv6公网带宽的状态。Creating:创建中。Available:可用。
- Updated
Time string - IPv6公网带宽的最近操作时间。
- Allocation
Id string - IPv6公网带宽的ID。
- Business
Status string - IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
- Created
Time string - IPv6公网带宽的开通时间。
- Deleted
Time string - IPv6公网带宽的删除时间。
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Id string - IPv6公网带宽关联的实例ID。
- Instance
Type string - IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
- Ipv6Gateway
Id string - IPv6网关的ID。
- Isp string
- IPv6公网带宽的线路类型。BGP:BGP(多线)。
- Lock
Reason string - IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
- Network
Type string - IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
- Overdue
Time string - IPv6公网带宽欠费关停的时间。
- Service
Managed bool - 是否为服务托管。
- Status string
- IPv6公网带宽的状态。Creating:创建中。Available:可用。
- Updated
Time string - IPv6公网带宽的最近操作时间。
- allocation
Id String - IPv6公网带宽的ID。
- business
Status String - IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
- created
Time String - IPv6公网带宽的开通时间。
- deleted
Time String - IPv6公网带宽的删除时间。
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Id String - IPv6公网带宽关联的实例ID。
- instance
Type String - IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
- ipv6Gateway
Id String - IPv6网关的ID。
- isp String
- IPv6公网带宽的线路类型。BGP:BGP(多线)。
- lock
Reason String - IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
- network
Type String - IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
- overdue
Time String - IPv6公网带宽欠费关停的时间。
- service
Managed Boolean - 是否为服务托管。
- status String
- IPv6公网带宽的状态。Creating:创建中。Available:可用。
- updated
Time String - IPv6公网带宽的最近操作时间。
- allocation
Id string - IPv6公网带宽的ID。
- business
Status string - IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
- created
Time string - IPv6公网带宽的开通时间。
- deleted
Time string - IPv6公网带宽的删除时间。
- id string
- The provider-assigned unique ID for this managed resource.
- instance
Id string - IPv6公网带宽关联的实例ID。
- instance
Type string - IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
- ipv6Gateway
Id string - IPv6网关的ID。
- isp string
- IPv6公网带宽的线路类型。BGP:BGP(多线)。
- lock
Reason string - IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
- network
Type string - IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
- overdue
Time string - IPv6公网带宽欠费关停的时间。
- service
Managed boolean - 是否为服务托管。
- status string
- IPv6公网带宽的状态。Creating:创建中。Available:可用。
- updated
Time 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_ strid - 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公网带宽的最近操作时间。
- allocation
Id String - IPv6公网带宽的ID。
- business
Status String - IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
- created
Time String - IPv6公网带宽的开通时间。
- deleted
Time String - IPv6公网带宽的删除时间。
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Id String - IPv6公网带宽关联的实例ID。
- instance
Type String - IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
- ipv6Gateway
Id String - IPv6网关的ID。
- isp String
- IPv6公网带宽的线路类型。BGP:BGP(多线)。
- lock
Reason String - IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
- network
Type String - IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
- overdue
Time String - IPv6公网带宽欠费关停的时间。
- service
Managed Boolean - 是否为服务托管。
- status String
- IPv6公网带宽的状态。Creating:创建中。Available:可用。
- updated
Time 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) -> Ipv6AddressBandwidthfunc 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.
- Allocation
Id string - IPv6公网带宽的ID。
- Bandwidth int
- IPv6公网带宽的带宽上限。
- Bandwidth
Package stringId - IPv6共享带宽包的ID。
- Billing
Type int - IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
- Business
Status string - IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
- Created
Time string - IPv6公网带宽的开通时间。
- Deleted
Time string - IPv6公网带宽的删除时间。
- Instance
Id string - IPv6公网带宽关联的实例ID。
- Instance
Type string - IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
- Ipv6Address string
- IPv6地址。
- Ipv6Gateway
Id string - IPv6网关的ID。
- Isp string
- IPv6公网带宽的线路类型。BGP:BGP(多线)。
- Lock
Reason string - IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
- Network
Type string - IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
- Overdue
Time string - IPv6公网带宽欠费关停的时间。
- Project
Name string - IPv6公网带宽的项目。
- Service
Managed bool - 是否为服务托管。
- Status string
- IPv6公网带宽的状态。Creating:创建中。Available:可用。
-
List<Byteplus.
Ipv6Address Bandwidth Tag> - Updated
Time string - IPv6公网带宽的最近操作时间。
- Allocation
Id string - IPv6公网带宽的ID。
- Bandwidth int
- IPv6公网带宽的带宽上限。
- Bandwidth
Package stringId - IPv6共享带宽包的ID。
- Billing
Type int - IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
- Business
Status string - IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
- Created
Time string - IPv6公网带宽的开通时间。
- Deleted
Time string - IPv6公网带宽的删除时间。
- Instance
Id string - IPv6公网带宽关联的实例ID。
- Instance
Type string - IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
- Ipv6Address string
- IPv6地址。
- Ipv6Gateway
Id string - IPv6网关的ID。
- Isp string
- IPv6公网带宽的线路类型。BGP:BGP(多线)。
- Lock
Reason string - IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
- Network
Type string - IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
- Overdue
Time string - IPv6公网带宽欠费关停的时间。
- Project
Name string - IPv6公网带宽的项目。
- Service
Managed bool - 是否为服务托管。
- Status string
- IPv6公网带宽的状态。Creating:创建中。Available:可用。
-
[]Ipv6Address
Bandwidth Tag Args - Updated
Time string - IPv6公网带宽的最近操作时间。
- allocation
Id String - IPv6公网带宽的ID。
- bandwidth Integer
- IPv6公网带宽的带宽上限。
- bandwidth
Package StringId - IPv6共享带宽包的ID。
- billing
Type Integer - IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
- business
Status String - IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
- created
Time String - IPv6公网带宽的开通时间。
- deleted
Time String - IPv6公网带宽的删除时间。
- instance
Id String - IPv6公网带宽关联的实例ID。
- instance
Type String - IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
- ipv6Address String
- IPv6地址。
- ipv6Gateway
Id String - IPv6网关的ID。
- isp String
- IPv6公网带宽的线路类型。BGP:BGP(多线)。
- lock
Reason String - IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
- network
Type String - IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
- overdue
Time String - IPv6公网带宽欠费关停的时间。
- project
Name String - IPv6公网带宽的项目。
- service
Managed Boolean - 是否为服务托管。
- status String
- IPv6公网带宽的状态。Creating:创建中。Available:可用。
-
List<Ipv6Address
Bandwidth Tag> - updated
Time String - IPv6公网带宽的最近操作时间。
- allocation
Id string - IPv6公网带宽的ID。
- bandwidth number
- IPv6公网带宽的带宽上限。
- bandwidth
Package stringId - IPv6共享带宽包的ID。
- billing
Type number - IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
- business
Status string - IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
- created
Time string - IPv6公网带宽的开通时间。
- deleted
Time string - IPv6公网带宽的删除时间。
- instance
Id string - IPv6公网带宽关联的实例ID。
- instance
Type string - IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
- ipv6Address string
- IPv6地址。
- ipv6Gateway
Id string - IPv6网关的ID。
- isp string
- IPv6公网带宽的线路类型。BGP:BGP(多线)。
- lock
Reason string - IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
- network
Type string - IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
- overdue
Time string - IPv6公网带宽欠费关停的时间。
- project
Name string - IPv6公网带宽的项目。
- service
Managed boolean - 是否为服务托管。
- status string
- IPv6公网带宽的状态。Creating:创建中。Available:可用。
-
Ipv6Address
Bandwidth Tag[] - updated
Time string - IPv6公网带宽的最近操作时间。
- allocation_
id str - IPv6公网带宽的ID。
- bandwidth int
- IPv6公网带宽的带宽上限。
- bandwidth_
package_ strid - 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_ strid - 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:可用。
-
Sequence[Ipv6Address
Bandwidth Tag Args] - updated_
time str - IPv6公网带宽的最近操作时间。
- allocation
Id String - IPv6公网带宽的ID。
- bandwidth Number
- IPv6公网带宽的带宽上限。
- bandwidth
Package StringId - IPv6共享带宽包的ID。
- billing
Type Number - IPv6公网带宽的计费类型。2:按量计费-按带宽上限计费。3:按量计费-按实际流量计费。
- business
Status String - IPv6公网带宽是否被锁定。Normal:正常。FinancialLocked:被锁定。
- created
Time String - IPv6公网带宽的开通时间。
- deleted
Time String - IPv6公网带宽的删除时间。
- instance
Id String - IPv6公网带宽关联的实例ID。
- instance
Type String - IPv6公网带宽关联的实例类型。EcsInstance:云服务器实例。ClbInstance:负载均衡。
- ipv6Address String
- IPv6地址。
- ipv6Gateway
Id String - IPv6网关的ID。
- isp String
- IPv6公网带宽的线路类型。BGP:BGP(多线)。
- lock
Reason String - IPv6公网带宽被锁定的原因。该参数只有IPv6公网带宽处于FinancialLocked状态时才有返回值。Financial:因欠费被锁定。Security:因安全被锁定。
- network
Type String - IPv6地址的通信类型。Private:私网通信类型。Public:公网通信类型。
- overdue
Time String - IPv6公网带宽欠费关停的时间。
- project
Name String - IPv6公网带宽的项目。
- service
Managed Boolean - 是否为服务托管。
- status String
- IPv6公网带宽的状态。Creating:创建中。Available:可用。
- List<Property Map>
- updated
Time String - IPv6公网带宽的最近操作时间。
Supporting Types
Ipv6AddressBandwidthTag, Ipv6AddressBandwidthTagArgs
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
byteplusccTerraform Provider.
published on Monday, Mar 9, 2026 by Byteplus
