published on Thursday, Apr 23, 2026 by Volcengine
published on Thursday, Apr 23, 2026 by Volcengine
Provides cross-region communication bandwidth for Cloud Enterprise Network instances. You can allocate bandwidth to different inter-region connections. By creating a bandwidth package and assigning inter-region bandwidth, you enable connectivity between network instances in different regions.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
const cENBandwidthPackageDemo = new volcenginecc.cen.BandwidthPackage("CENBandwidthPackageDemo", {
bandwidth: 3,
billingType: 4,
cenBandwidthPackageName: "ccapi-test",
cenIds: ["cen-2v73nw1h8a03k6x7exxxxx"],
description: "this is a cen test",
localGeographicRegionSetId: "China",
peerGeographicRegionSetId: "China",
projectName: "default",
tags: [{
key: "env",
value: "test",
}],
});
import pulumi
import pulumi_volcenginecc as volcenginecc
c_en_bandwidth_package_demo = volcenginecc.cen.BandwidthPackage("CENBandwidthPackageDemo",
bandwidth=3,
billing_type=4,
cen_bandwidth_package_name="ccapi-test",
cen_ids=["cen-2v73nw1h8a03k6x7exxxxx"],
description="this is a cen test",
local_geographic_region_set_id="China",
peer_geographic_region_set_id="China",
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/cen"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cen.NewBandwidthPackage(ctx, "CENBandwidthPackageDemo", &cen.BandwidthPackageArgs{
Bandwidth: pulumi.Int(3),
BillingType: pulumi.Int(4),
CenBandwidthPackageName: pulumi.String("ccapi-test"),
CenIds: pulumi.StringArray{
pulumi.String("cen-2v73nw1h8a03k6x7exxxxx"),
},
Description: pulumi.String("this is a cen test"),
LocalGeographicRegionSetId: pulumi.String("China"),
PeerGeographicRegionSetId: pulumi.String("China"),
ProjectName: pulumi.String("default"),
Tags: cen.BandwidthPackageTagArray{
&cen.BandwidthPackageTagArgs{
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 cENBandwidthPackageDemo = new Volcenginecc.Cen.BandwidthPackage("CENBandwidthPackageDemo", new()
{
Bandwidth = 3,
BillingType = 4,
CenBandwidthPackageName = "ccapi-test",
CenIds = new[]
{
"cen-2v73nw1h8a03k6x7exxxxx",
},
Description = "this is a cen test",
LocalGeographicRegionSetId = "China",
PeerGeographicRegionSetId = "China",
ProjectName = "default",
Tags = new[]
{
new Volcenginecc.Cen.Inputs.BandwidthPackageTagArgs
{
Key = "env",
Value = "test",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.volcengine.volcenginecc.cen.BandwidthPackage;
import com.volcengine.volcenginecc.cen.BandwidthPackageArgs;
import com.pulumi.volcenginecc.cen.inputs.BandwidthPackageTagArgs;
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 cENBandwidthPackageDemo = new BandwidthPackage("cENBandwidthPackageDemo", BandwidthPackageArgs.builder()
.bandwidth(3)
.billingType(4)
.cenBandwidthPackageName("ccapi-test")
.cenIds("cen-2v73nw1h8a03k6x7exxxxx")
.description("this is a cen test")
.localGeographicRegionSetId("China")
.peerGeographicRegionSetId("China")
.projectName("default")
.tags(BandwidthPackageTagArgs.builder()
.key("env")
.value("test")
.build())
.build());
}
}
resources:
cENBandwidthPackageDemo:
type: volcenginecc:cen:BandwidthPackage
name: CENBandwidthPackageDemo
properties:
bandwidth: 3
billingType: 4
cenBandwidthPackageName: ccapi-test
cenIds:
- cen-2v73nw1h8a03k6x7exxxxx
description: this is a cen test
localGeographicRegionSetId: China
peerGeographicRegionSetId: China
projectName: default
tags:
- key: env
value: test
Create BandwidthPackage Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BandwidthPackage(name: string, args: BandwidthPackageArgs, opts?: CustomResourceOptions);@overload
def BandwidthPackage(resource_name: str,
args: BandwidthPackageArgs,
opts: Optional[ResourceOptions] = None)
@overload
def BandwidthPackage(resource_name: str,
opts: Optional[ResourceOptions] = None,
local_geographic_region_set_id: Optional[str] = None,
peer_geographic_region_set_id: Optional[str] = None,
cen_ids: Optional[Sequence[str]] = None,
bandwidth: Optional[int] = None,
description: Optional[str] = None,
line_operator: Optional[str] = None,
cen_bandwidth_package_name: Optional[str] = None,
billing_type: Optional[int] = None,
period: Optional[int] = None,
period_unit: Optional[str] = None,
project_name: Optional[str] = None,
remain_renew_times: Optional[int] = None,
renew_period: Optional[int] = None,
renew_type: Optional[str] = None,
tags: Optional[Sequence[BandwidthPackageTagArgs]] = None)func NewBandwidthPackage(ctx *Context, name string, args BandwidthPackageArgs, opts ...ResourceOption) (*BandwidthPackage, error)public BandwidthPackage(string name, BandwidthPackageArgs args, CustomResourceOptions? opts = null)
public BandwidthPackage(String name, BandwidthPackageArgs args)
public BandwidthPackage(String name, BandwidthPackageArgs args, CustomResourceOptions options)
type: volcenginecc:cen:BandwidthPackage
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 BandwidthPackageArgs
- 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 BandwidthPackageArgs
- 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 BandwidthPackageArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BandwidthPackageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BandwidthPackageArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
BandwidthPackage 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 BandwidthPackage resource accepts the following input properties:
- Local
Geographic stringRegion Set Id - Local geographic region ID for Cloud Enterprise Network communication. Available values: China: Chinese mainland. Asia: Asia-Pacific.
- Peer
Geographic stringRegion Set Id - Peer geographic region ID for Cloud Enterprise Network interconnection. Valid values: China: Chinese mainland. Asia: Asia-Pacific.
- Bandwidth int
- Bandwidth peak of the bandwidth package. Value range: 2–10000 Mbps. Default: 2 Mbps.
- Billing
Type int - Billing method of the bandwidth package. Valid values: 1 (default): yearly/monthly subscription. 4: pay-as-you-go—95th percentile billing.
- Cen
Bandwidth stringPackage Name - Name of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length must be between 1 and 128 characters. If not specified, defaults to the bandwidth package ID.
- Cen
Ids List<string> - List of associated CEN instance IDs.
- Description string
- Description of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters. If not specified, defaults to an empty string.
- Line
Operator string - Carrier for cross-border bandwidth package lines. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are the same, this parameter is not supported. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are different, available values are: ChinaUnicom (default): China Unicom.
- Period int
- Purchase duration of the bandwidth package. Default is 1. Valid values: If PeriodUnit is Month, range is 1–9, 12, 24, and 36. If PeriodUnit is Year, range is 1–3.
- Period
Unit string - Billing cycle of the bandwidth package. Valid values: Month (default): month. Year: year.
- Project
Name string - Name of the project to which the bandwidth package belongs. If not specified, defaults to 'default'.
- Remain
Renew intTimes - Number of automatic renewals. Values include -1 and 1–100. Default is -1, which means unlimited automatic renewals.
- Renew
Period int - Duration of each automatic renewal, in months. Valid values: 1–3, 6, and 12. Default is 1.
- Renew
Type string - Renewal type of the bandwidth package instance. Manual: Manual renewal. Auto: Automatic renewal. NoRenew: No renewal.
-
List<Volcengine.
Bandwidth Package Tag>
- Local
Geographic stringRegion Set Id - Local geographic region ID for Cloud Enterprise Network communication. Available values: China: Chinese mainland. Asia: Asia-Pacific.
- Peer
Geographic stringRegion Set Id - Peer geographic region ID for Cloud Enterprise Network interconnection. Valid values: China: Chinese mainland. Asia: Asia-Pacific.
- Bandwidth int
- Bandwidth peak of the bandwidth package. Value range: 2–10000 Mbps. Default: 2 Mbps.
- Billing
Type int - Billing method of the bandwidth package. Valid values: 1 (default): yearly/monthly subscription. 4: pay-as-you-go—95th percentile billing.
- Cen
Bandwidth stringPackage Name - Name of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length must be between 1 and 128 characters. If not specified, defaults to the bandwidth package ID.
- Cen
Ids []string - List of associated CEN instance IDs.
- Description string
- Description of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters. If not specified, defaults to an empty string.
- Line
Operator string - Carrier for cross-border bandwidth package lines. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are the same, this parameter is not supported. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are different, available values are: ChinaUnicom (default): China Unicom.
- Period int
- Purchase duration of the bandwidth package. Default is 1. Valid values: If PeriodUnit is Month, range is 1–9, 12, 24, and 36. If PeriodUnit is Year, range is 1–3.
- Period
Unit string - Billing cycle of the bandwidth package. Valid values: Month (default): month. Year: year.
- Project
Name string - Name of the project to which the bandwidth package belongs. If not specified, defaults to 'default'.
- Remain
Renew intTimes - Number of automatic renewals. Values include -1 and 1–100. Default is -1, which means unlimited automatic renewals.
- Renew
Period int - Duration of each automatic renewal, in months. Valid values: 1–3, 6, and 12. Default is 1.
- Renew
Type string - Renewal type of the bandwidth package instance. Manual: Manual renewal. Auto: Automatic renewal. NoRenew: No renewal.
-
[]Bandwidth
Package Tag Args
- local
Geographic StringRegion Set Id - Local geographic region ID for Cloud Enterprise Network communication. Available values: China: Chinese mainland. Asia: Asia-Pacific.
- peer
Geographic StringRegion Set Id - Peer geographic region ID for Cloud Enterprise Network interconnection. Valid values: China: Chinese mainland. Asia: Asia-Pacific.
- bandwidth Integer
- Bandwidth peak of the bandwidth package. Value range: 2–10000 Mbps. Default: 2 Mbps.
- billing
Type Integer - Billing method of the bandwidth package. Valid values: 1 (default): yearly/monthly subscription. 4: pay-as-you-go—95th percentile billing.
- cen
Bandwidth StringPackage Name - Name of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length must be between 1 and 128 characters. If not specified, defaults to the bandwidth package ID.
- cen
Ids List<String> - List of associated CEN instance IDs.
- description String
- Description of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters. If not specified, defaults to an empty string.
- line
Operator String - Carrier for cross-border bandwidth package lines. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are the same, this parameter is not supported. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are different, available values are: ChinaUnicom (default): China Unicom.
- period Integer
- Purchase duration of the bandwidth package. Default is 1. Valid values: If PeriodUnit is Month, range is 1–9, 12, 24, and 36. If PeriodUnit is Year, range is 1–3.
- period
Unit String - Billing cycle of the bandwidth package. Valid values: Month (default): month. Year: year.
- project
Name String - Name of the project to which the bandwidth package belongs. If not specified, defaults to 'default'.
- remain
Renew IntegerTimes - Number of automatic renewals. Values include -1 and 1–100. Default is -1, which means unlimited automatic renewals.
- renew
Period Integer - Duration of each automatic renewal, in months. Valid values: 1–3, 6, and 12. Default is 1.
- renew
Type String - Renewal type of the bandwidth package instance. Manual: Manual renewal. Auto: Automatic renewal. NoRenew: No renewal.
-
List<Bandwidth
Package Tag>
- local
Geographic stringRegion Set Id - Local geographic region ID for Cloud Enterprise Network communication. Available values: China: Chinese mainland. Asia: Asia-Pacific.
- peer
Geographic stringRegion Set Id - Peer geographic region ID for Cloud Enterprise Network interconnection. Valid values: China: Chinese mainland. Asia: Asia-Pacific.
- bandwidth number
- Bandwidth peak of the bandwidth package. Value range: 2–10000 Mbps. Default: 2 Mbps.
- billing
Type number - Billing method of the bandwidth package. Valid values: 1 (default): yearly/monthly subscription. 4: pay-as-you-go—95th percentile billing.
- cen
Bandwidth stringPackage Name - Name of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length must be between 1 and 128 characters. If not specified, defaults to the bandwidth package ID.
- cen
Ids string[] - List of associated CEN instance IDs.
- description string
- Description of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters. If not specified, defaults to an empty string.
- line
Operator string - Carrier for cross-border bandwidth package lines. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are the same, this parameter is not supported. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are different, available values are: ChinaUnicom (default): China Unicom.
- period number
- Purchase duration of the bandwidth package. Default is 1. Valid values: If PeriodUnit is Month, range is 1–9, 12, 24, and 36. If PeriodUnit is Year, range is 1–3.
- period
Unit string - Billing cycle of the bandwidth package. Valid values: Month (default): month. Year: year.
- project
Name string - Name of the project to which the bandwidth package belongs. If not specified, defaults to 'default'.
- remain
Renew numberTimes - Number of automatic renewals. Values include -1 and 1–100. Default is -1, which means unlimited automatic renewals.
- renew
Period number - Duration of each automatic renewal, in months. Valid values: 1–3, 6, and 12. Default is 1.
- renew
Type string - Renewal type of the bandwidth package instance. Manual: Manual renewal. Auto: Automatic renewal. NoRenew: No renewal.
-
Bandwidth
Package Tag[]
- local_
geographic_ strregion_ set_ id - Local geographic region ID for Cloud Enterprise Network communication. Available values: China: Chinese mainland. Asia: Asia-Pacific.
- peer_
geographic_ strregion_ set_ id - Peer geographic region ID for Cloud Enterprise Network interconnection. Valid values: China: Chinese mainland. Asia: Asia-Pacific.
- bandwidth int
- Bandwidth peak of the bandwidth package. Value range: 2–10000 Mbps. Default: 2 Mbps.
- billing_
type int - Billing method of the bandwidth package. Valid values: 1 (default): yearly/monthly subscription. 4: pay-as-you-go—95th percentile billing.
- cen_
bandwidth_ strpackage_ name - Name of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length must be between 1 and 128 characters. If not specified, defaults to the bandwidth package ID.
- cen_
ids Sequence[str] - List of associated CEN instance IDs.
- description str
- Description of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters. If not specified, defaults to an empty string.
- line_
operator str - Carrier for cross-border bandwidth package lines. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are the same, this parameter is not supported. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are different, available values are: ChinaUnicom (default): China Unicom.
- period int
- Purchase duration of the bandwidth package. Default is 1. Valid values: If PeriodUnit is Month, range is 1–9, 12, 24, and 36. If PeriodUnit is Year, range is 1–3.
- period_
unit str - Billing cycle of the bandwidth package. Valid values: Month (default): month. Year: year.
- project_
name str - Name of the project to which the bandwidth package belongs. If not specified, defaults to 'default'.
- remain_
renew_ inttimes - Number of automatic renewals. Values include -1 and 1–100. Default is -1, which means unlimited automatic renewals.
- renew_
period int - Duration of each automatic renewal, in months. Valid values: 1–3, 6, and 12. Default is 1.
- renew_
type str - Renewal type of the bandwidth package instance. Manual: Manual renewal. Auto: Automatic renewal. NoRenew: No renewal.
-
Sequence[Bandwidth
Package Tag Args]
- local
Geographic StringRegion Set Id - Local geographic region ID for Cloud Enterprise Network communication. Available values: China: Chinese mainland. Asia: Asia-Pacific.
- peer
Geographic StringRegion Set Id - Peer geographic region ID for Cloud Enterprise Network interconnection. Valid values: China: Chinese mainland. Asia: Asia-Pacific.
- bandwidth Number
- Bandwidth peak of the bandwidth package. Value range: 2–10000 Mbps. Default: 2 Mbps.
- billing
Type Number - Billing method of the bandwidth package. Valid values: 1 (default): yearly/monthly subscription. 4: pay-as-you-go—95th percentile billing.
- cen
Bandwidth StringPackage Name - Name of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length must be between 1 and 128 characters. If not specified, defaults to the bandwidth package ID.
- cen
Ids List<String> - List of associated CEN instance IDs.
- description String
- Description of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters. If not specified, defaults to an empty string.
- line
Operator String - Carrier for cross-border bandwidth package lines. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are the same, this parameter is not supported. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are different, available values are: ChinaUnicom (default): China Unicom.
- period Number
- Purchase duration of the bandwidth package. Default is 1. Valid values: If PeriodUnit is Month, range is 1–9, 12, 24, and 36. If PeriodUnit is Year, range is 1–3.
- period
Unit String - Billing cycle of the bandwidth package. Valid values: Month (default): month. Year: year.
- project
Name String - Name of the project to which the bandwidth package belongs. If not specified, defaults to 'default'.
- remain
Renew NumberTimes - Number of automatic renewals. Values include -1 and 1–100. Default is -1, which means unlimited automatic renewals.
- renew
Period Number - Duration of each automatic renewal, in months. Valid values: 1–3, 6, and 12. Default is 1.
- renew
Type String - Renewal type of the bandwidth package instance. Manual: Manual renewal. Auto: Automatic renewal. NoRenew: No renewal.
- List<Property Map>
Outputs
All input properties are implicitly available as output properties. Additionally, the BandwidthPackage resource produces the following output properties:
- Billing
Status int - Billing status of the bandwidth package instance. 0: Creating 1: Running 3: Unsubscribed 4: Expired and stopped 5: Expired and recycled 8: Unsubscribed and stopped
- Business
Status string - Frozen status of the bandwidth package. Normal: normal. FinancialLocked: frozen.
- Cen
Bandwidth stringPackage Id - Bandwidth package ID.
- Creation
Time string - Creation time of the bandwidth package.
- Deleted
Time string - Deletion time of the bandwidth package.
- Expired
Time string - Expiration time of the bandwidth package.
- Id string
- The provider-assigned unique ID for this managed resource.
- Reclaim
Time string - Recycle time after the bandwidth package instance expires.
- Remaining
Bandwidth int - Remaining bandwidth, measured in Mbps.
- Status string
- Status of the bandwidth package. Creating: Being created. Deleting: Being deleted. Pending: In progress. Available: Unbound. InUse: Bound.
- Update
Time string - Update time of the bandwidth package.
- Billing
Status int - Billing status of the bandwidth package instance. 0: Creating 1: Running 3: Unsubscribed 4: Expired and stopped 5: Expired and recycled 8: Unsubscribed and stopped
- Business
Status string - Frozen status of the bandwidth package. Normal: normal. FinancialLocked: frozen.
- Cen
Bandwidth stringPackage Id - Bandwidth package ID.
- Creation
Time string - Creation time of the bandwidth package.
- Deleted
Time string - Deletion time of the bandwidth package.
- Expired
Time string - Expiration time of the bandwidth package.
- Id string
- The provider-assigned unique ID for this managed resource.
- Reclaim
Time string - Recycle time after the bandwidth package instance expires.
- Remaining
Bandwidth int - Remaining bandwidth, measured in Mbps.
- Status string
- Status of the bandwidth package. Creating: Being created. Deleting: Being deleted. Pending: In progress. Available: Unbound. InUse: Bound.
- Update
Time string - Update time of the bandwidth package.
- billing
Status Integer - Billing status of the bandwidth package instance. 0: Creating 1: Running 3: Unsubscribed 4: Expired and stopped 5: Expired and recycled 8: Unsubscribed and stopped
- business
Status String - Frozen status of the bandwidth package. Normal: normal. FinancialLocked: frozen.
- cen
Bandwidth StringPackage Id - Bandwidth package ID.
- creation
Time String - Creation time of the bandwidth package.
- deleted
Time String - Deletion time of the bandwidth package.
- expired
Time String - Expiration time of the bandwidth package.
- id String
- The provider-assigned unique ID for this managed resource.
- reclaim
Time String - Recycle time after the bandwidth package instance expires.
- remaining
Bandwidth Integer - Remaining bandwidth, measured in Mbps.
- status String
- Status of the bandwidth package. Creating: Being created. Deleting: Being deleted. Pending: In progress. Available: Unbound. InUse: Bound.
- update
Time String - Update time of the bandwidth package.
- billing
Status number - Billing status of the bandwidth package instance. 0: Creating 1: Running 3: Unsubscribed 4: Expired and stopped 5: Expired and recycled 8: Unsubscribed and stopped
- business
Status string - Frozen status of the bandwidth package. Normal: normal. FinancialLocked: frozen.
- cen
Bandwidth stringPackage Id - Bandwidth package ID.
- creation
Time string - Creation time of the bandwidth package.
- deleted
Time string - Deletion time of the bandwidth package.
- expired
Time string - Expiration time of the bandwidth package.
- id string
- The provider-assigned unique ID for this managed resource.
- reclaim
Time string - Recycle time after the bandwidth package instance expires.
- remaining
Bandwidth number - Remaining bandwidth, measured in Mbps.
- status string
- Status of the bandwidth package. Creating: Being created. Deleting: Being deleted. Pending: In progress. Available: Unbound. InUse: Bound.
- update
Time string - Update time of the bandwidth package.
- billing_
status int - Billing status of the bandwidth package instance. 0: Creating 1: Running 3: Unsubscribed 4: Expired and stopped 5: Expired and recycled 8: Unsubscribed and stopped
- business_
status str - Frozen status of the bandwidth package. Normal: normal. FinancialLocked: frozen.
- cen_
bandwidth_ strpackage_ id - Bandwidth package ID.
- creation_
time str - Creation time of the bandwidth package.
- deleted_
time str - Deletion time of the bandwidth package.
- expired_
time str - Expiration time of the bandwidth package.
- id str
- The provider-assigned unique ID for this managed resource.
- reclaim_
time str - Recycle time after the bandwidth package instance expires.
- remaining_
bandwidth int - Remaining bandwidth, measured in Mbps.
- status str
- Status of the bandwidth package. Creating: Being created. Deleting: Being deleted. Pending: In progress. Available: Unbound. InUse: Bound.
- update_
time str - Update time of the bandwidth package.
- billing
Status Number - Billing status of the bandwidth package instance. 0: Creating 1: Running 3: Unsubscribed 4: Expired and stopped 5: Expired and recycled 8: Unsubscribed and stopped
- business
Status String - Frozen status of the bandwidth package. Normal: normal. FinancialLocked: frozen.
- cen
Bandwidth StringPackage Id - Bandwidth package ID.
- creation
Time String - Creation time of the bandwidth package.
- deleted
Time String - Deletion time of the bandwidth package.
- expired
Time String - Expiration time of the bandwidth package.
- id String
- The provider-assigned unique ID for this managed resource.
- reclaim
Time String - Recycle time after the bandwidth package instance expires.
- remaining
Bandwidth Number - Remaining bandwidth, measured in Mbps.
- status String
- Status of the bandwidth package. Creating: Being created. Deleting: Being deleted. Pending: In progress. Available: Unbound. InUse: Bound.
- update
Time String - Update time of the bandwidth package.
Look up Existing BandwidthPackage Resource
Get an existing BandwidthPackage 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?: BandwidthPackageState, opts?: CustomResourceOptions): BandwidthPackage@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
bandwidth: Optional[int] = None,
billing_status: Optional[int] = None,
billing_type: Optional[int] = None,
business_status: Optional[str] = None,
cen_bandwidth_package_id: Optional[str] = None,
cen_bandwidth_package_name: Optional[str] = None,
cen_ids: Optional[Sequence[str]] = None,
creation_time: Optional[str] = None,
deleted_time: Optional[str] = None,
description: Optional[str] = None,
expired_time: Optional[str] = None,
line_operator: Optional[str] = None,
local_geographic_region_set_id: Optional[str] = None,
peer_geographic_region_set_id: Optional[str] = None,
period: Optional[int] = None,
period_unit: Optional[str] = None,
project_name: Optional[str] = None,
reclaim_time: Optional[str] = None,
remain_renew_times: Optional[int] = None,
remaining_bandwidth: Optional[int] = None,
renew_period: Optional[int] = None,
renew_type: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Sequence[BandwidthPackageTagArgs]] = None,
update_time: Optional[str] = None) -> BandwidthPackagefunc GetBandwidthPackage(ctx *Context, name string, id IDInput, state *BandwidthPackageState, opts ...ResourceOption) (*BandwidthPackage, error)public static BandwidthPackage Get(string name, Input<string> id, BandwidthPackageState? state, CustomResourceOptions? opts = null)public static BandwidthPackage get(String name, Output<String> id, BandwidthPackageState state, CustomResourceOptions options)resources: _: type: volcenginecc:cen:BandwidthPackage 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.
- Bandwidth int
- Bandwidth peak of the bandwidth package. Value range: 2–10000 Mbps. Default: 2 Mbps.
- Billing
Status int - Billing status of the bandwidth package instance. 0: Creating 1: Running 3: Unsubscribed 4: Expired and stopped 5: Expired and recycled 8: Unsubscribed and stopped
- Billing
Type int - Billing method of the bandwidth package. Valid values: 1 (default): yearly/monthly subscription. 4: pay-as-you-go—95th percentile billing.
- Business
Status string - Frozen status of the bandwidth package. Normal: normal. FinancialLocked: frozen.
- Cen
Bandwidth stringPackage Id - Bandwidth package ID.
- Cen
Bandwidth stringPackage Name - Name of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length must be between 1 and 128 characters. If not specified, defaults to the bandwidth package ID.
- Cen
Ids List<string> - List of associated CEN instance IDs.
- Creation
Time string - Creation time of the bandwidth package.
- Deleted
Time string - Deletion time of the bandwidth package.
- Description string
- Description of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters. If not specified, defaults to an empty string.
- Expired
Time string - Expiration time of the bandwidth package.
- Line
Operator string - Carrier for cross-border bandwidth package lines. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are the same, this parameter is not supported. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are different, available values are: ChinaUnicom (default): China Unicom.
- Local
Geographic stringRegion Set Id - Local geographic region ID for Cloud Enterprise Network communication. Available values: China: Chinese mainland. Asia: Asia-Pacific.
- Peer
Geographic stringRegion Set Id - Peer geographic region ID for Cloud Enterprise Network interconnection. Valid values: China: Chinese mainland. Asia: Asia-Pacific.
- Period int
- Purchase duration of the bandwidth package. Default is 1. Valid values: If PeriodUnit is Month, range is 1–9, 12, 24, and 36. If PeriodUnit is Year, range is 1–3.
- Period
Unit string - Billing cycle of the bandwidth package. Valid values: Month (default): month. Year: year.
- Project
Name string - Name of the project to which the bandwidth package belongs. If not specified, defaults to 'default'.
- Reclaim
Time string - Recycle time after the bandwidth package instance expires.
- Remain
Renew intTimes - Number of automatic renewals. Values include -1 and 1–100. Default is -1, which means unlimited automatic renewals.
- Remaining
Bandwidth int - Remaining bandwidth, measured in Mbps.
- Renew
Period int - Duration of each automatic renewal, in months. Valid values: 1–3, 6, and 12. Default is 1.
- Renew
Type string - Renewal type of the bandwidth package instance. Manual: Manual renewal. Auto: Automatic renewal. NoRenew: No renewal.
- Status string
- Status of the bandwidth package. Creating: Being created. Deleting: Being deleted. Pending: In progress. Available: Unbound. InUse: Bound.
-
List<Volcengine.
Bandwidth Package Tag> - Update
Time string - Update time of the bandwidth package.
- Bandwidth int
- Bandwidth peak of the bandwidth package. Value range: 2–10000 Mbps. Default: 2 Mbps.
- Billing
Status int - Billing status of the bandwidth package instance. 0: Creating 1: Running 3: Unsubscribed 4: Expired and stopped 5: Expired and recycled 8: Unsubscribed and stopped
- Billing
Type int - Billing method of the bandwidth package. Valid values: 1 (default): yearly/monthly subscription. 4: pay-as-you-go—95th percentile billing.
- Business
Status string - Frozen status of the bandwidth package. Normal: normal. FinancialLocked: frozen.
- Cen
Bandwidth stringPackage Id - Bandwidth package ID.
- Cen
Bandwidth stringPackage Name - Name of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length must be between 1 and 128 characters. If not specified, defaults to the bandwidth package ID.
- Cen
Ids []string - List of associated CEN instance IDs.
- Creation
Time string - Creation time of the bandwidth package.
- Deleted
Time string - Deletion time of the bandwidth package.
- Description string
- Description of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters. If not specified, defaults to an empty string.
- Expired
Time string - Expiration time of the bandwidth package.
- Line
Operator string - Carrier for cross-border bandwidth package lines. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are the same, this parameter is not supported. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are different, available values are: ChinaUnicom (default): China Unicom.
- Local
Geographic stringRegion Set Id - Local geographic region ID for Cloud Enterprise Network communication. Available values: China: Chinese mainland. Asia: Asia-Pacific.
- Peer
Geographic stringRegion Set Id - Peer geographic region ID for Cloud Enterprise Network interconnection. Valid values: China: Chinese mainland. Asia: Asia-Pacific.
- Period int
- Purchase duration of the bandwidth package. Default is 1. Valid values: If PeriodUnit is Month, range is 1–9, 12, 24, and 36. If PeriodUnit is Year, range is 1–3.
- Period
Unit string - Billing cycle of the bandwidth package. Valid values: Month (default): month. Year: year.
- Project
Name string - Name of the project to which the bandwidth package belongs. If not specified, defaults to 'default'.
- Reclaim
Time string - Recycle time after the bandwidth package instance expires.
- Remain
Renew intTimes - Number of automatic renewals. Values include -1 and 1–100. Default is -1, which means unlimited automatic renewals.
- Remaining
Bandwidth int - Remaining bandwidth, measured in Mbps.
- Renew
Period int - Duration of each automatic renewal, in months. Valid values: 1–3, 6, and 12. Default is 1.
- Renew
Type string - Renewal type of the bandwidth package instance. Manual: Manual renewal. Auto: Automatic renewal. NoRenew: No renewal.
- Status string
- Status of the bandwidth package. Creating: Being created. Deleting: Being deleted. Pending: In progress. Available: Unbound. InUse: Bound.
-
[]Bandwidth
Package Tag Args - Update
Time string - Update time of the bandwidth package.
- bandwidth Integer
- Bandwidth peak of the bandwidth package. Value range: 2–10000 Mbps. Default: 2 Mbps.
- billing
Status Integer - Billing status of the bandwidth package instance. 0: Creating 1: Running 3: Unsubscribed 4: Expired and stopped 5: Expired and recycled 8: Unsubscribed and stopped
- billing
Type Integer - Billing method of the bandwidth package. Valid values: 1 (default): yearly/monthly subscription. 4: pay-as-you-go—95th percentile billing.
- business
Status String - Frozen status of the bandwidth package. Normal: normal. FinancialLocked: frozen.
- cen
Bandwidth StringPackage Id - Bandwidth package ID.
- cen
Bandwidth StringPackage Name - Name of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length must be between 1 and 128 characters. If not specified, defaults to the bandwidth package ID.
- cen
Ids List<String> - List of associated CEN instance IDs.
- creation
Time String - Creation time of the bandwidth package.
- deleted
Time String - Deletion time of the bandwidth package.
- description String
- Description of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters. If not specified, defaults to an empty string.
- expired
Time String - Expiration time of the bandwidth package.
- line
Operator String - Carrier for cross-border bandwidth package lines. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are the same, this parameter is not supported. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are different, available values are: ChinaUnicom (default): China Unicom.
- local
Geographic StringRegion Set Id - Local geographic region ID for Cloud Enterprise Network communication. Available values: China: Chinese mainland. Asia: Asia-Pacific.
- peer
Geographic StringRegion Set Id - Peer geographic region ID for Cloud Enterprise Network interconnection. Valid values: China: Chinese mainland. Asia: Asia-Pacific.
- period Integer
- Purchase duration of the bandwidth package. Default is 1. Valid values: If PeriodUnit is Month, range is 1–9, 12, 24, and 36. If PeriodUnit is Year, range is 1–3.
- period
Unit String - Billing cycle of the bandwidth package. Valid values: Month (default): month. Year: year.
- project
Name String - Name of the project to which the bandwidth package belongs. If not specified, defaults to 'default'.
- reclaim
Time String - Recycle time after the bandwidth package instance expires.
- remain
Renew IntegerTimes - Number of automatic renewals. Values include -1 and 1–100. Default is -1, which means unlimited automatic renewals.
- remaining
Bandwidth Integer - Remaining bandwidth, measured in Mbps.
- renew
Period Integer - Duration of each automatic renewal, in months. Valid values: 1–3, 6, and 12. Default is 1.
- renew
Type String - Renewal type of the bandwidth package instance. Manual: Manual renewal. Auto: Automatic renewal. NoRenew: No renewal.
- status String
- Status of the bandwidth package. Creating: Being created. Deleting: Being deleted. Pending: In progress. Available: Unbound. InUse: Bound.
-
List<Bandwidth
Package Tag> - update
Time String - Update time of the bandwidth package.
- bandwidth number
- Bandwidth peak of the bandwidth package. Value range: 2–10000 Mbps. Default: 2 Mbps.
- billing
Status number - Billing status of the bandwidth package instance. 0: Creating 1: Running 3: Unsubscribed 4: Expired and stopped 5: Expired and recycled 8: Unsubscribed and stopped
- billing
Type number - Billing method of the bandwidth package. Valid values: 1 (default): yearly/monthly subscription. 4: pay-as-you-go—95th percentile billing.
- business
Status string - Frozen status of the bandwidth package. Normal: normal. FinancialLocked: frozen.
- cen
Bandwidth stringPackage Id - Bandwidth package ID.
- cen
Bandwidth stringPackage Name - Name of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length must be between 1 and 128 characters. If not specified, defaults to the bandwidth package ID.
- cen
Ids string[] - List of associated CEN instance IDs.
- creation
Time string - Creation time of the bandwidth package.
- deleted
Time string - Deletion time of the bandwidth package.
- description string
- Description of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters. If not specified, defaults to an empty string.
- expired
Time string - Expiration time of the bandwidth package.
- line
Operator string - Carrier for cross-border bandwidth package lines. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are the same, this parameter is not supported. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are different, available values are: ChinaUnicom (default): China Unicom.
- local
Geographic stringRegion Set Id - Local geographic region ID for Cloud Enterprise Network communication. Available values: China: Chinese mainland. Asia: Asia-Pacific.
- peer
Geographic stringRegion Set Id - Peer geographic region ID for Cloud Enterprise Network interconnection. Valid values: China: Chinese mainland. Asia: Asia-Pacific.
- period number
- Purchase duration of the bandwidth package. Default is 1. Valid values: If PeriodUnit is Month, range is 1–9, 12, 24, and 36. If PeriodUnit is Year, range is 1–3.
- period
Unit string - Billing cycle of the bandwidth package. Valid values: Month (default): month. Year: year.
- project
Name string - Name of the project to which the bandwidth package belongs. If not specified, defaults to 'default'.
- reclaim
Time string - Recycle time after the bandwidth package instance expires.
- remain
Renew numberTimes - Number of automatic renewals. Values include -1 and 1–100. Default is -1, which means unlimited automatic renewals.
- remaining
Bandwidth number - Remaining bandwidth, measured in Mbps.
- renew
Period number - Duration of each automatic renewal, in months. Valid values: 1–3, 6, and 12. Default is 1.
- renew
Type string - Renewal type of the bandwidth package instance. Manual: Manual renewal. Auto: Automatic renewal. NoRenew: No renewal.
- status string
- Status of the bandwidth package. Creating: Being created. Deleting: Being deleted. Pending: In progress. Available: Unbound. InUse: Bound.
-
Bandwidth
Package Tag[] - update
Time string - Update time of the bandwidth package.
- bandwidth int
- Bandwidth peak of the bandwidth package. Value range: 2–10000 Mbps. Default: 2 Mbps.
- billing_
status int - Billing status of the bandwidth package instance. 0: Creating 1: Running 3: Unsubscribed 4: Expired and stopped 5: Expired and recycled 8: Unsubscribed and stopped
- billing_
type int - Billing method of the bandwidth package. Valid values: 1 (default): yearly/monthly subscription. 4: pay-as-you-go—95th percentile billing.
- business_
status str - Frozen status of the bandwidth package. Normal: normal. FinancialLocked: frozen.
- cen_
bandwidth_ strpackage_ id - Bandwidth package ID.
- cen_
bandwidth_ strpackage_ name - Name of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length must be between 1 and 128 characters. If not specified, defaults to the bandwidth package ID.
- cen_
ids Sequence[str] - List of associated CEN instance IDs.
- creation_
time str - Creation time of the bandwidth package.
- deleted_
time str - Deletion time of the bandwidth package.
- description str
- Description of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters. If not specified, defaults to an empty string.
- expired_
time str - Expiration time of the bandwidth package.
- line_
operator str - Carrier for cross-border bandwidth package lines. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are the same, this parameter is not supported. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are different, available values are: ChinaUnicom (default): China Unicom.
- local_
geographic_ strregion_ set_ id - Local geographic region ID for Cloud Enterprise Network communication. Available values: China: Chinese mainland. Asia: Asia-Pacific.
- peer_
geographic_ strregion_ set_ id - Peer geographic region ID for Cloud Enterprise Network interconnection. Valid values: China: Chinese mainland. Asia: Asia-Pacific.
- period int
- Purchase duration of the bandwidth package. Default is 1. Valid values: If PeriodUnit is Month, range is 1–9, 12, 24, and 36. If PeriodUnit is Year, range is 1–3.
- period_
unit str - Billing cycle of the bandwidth package. Valid values: Month (default): month. Year: year.
- project_
name str - Name of the project to which the bandwidth package belongs. If not specified, defaults to 'default'.
- reclaim_
time str - Recycle time after the bandwidth package instance expires.
- remain_
renew_ inttimes - Number of automatic renewals. Values include -1 and 1–100. Default is -1, which means unlimited automatic renewals.
- remaining_
bandwidth int - Remaining bandwidth, measured in Mbps.
- renew_
period int - Duration of each automatic renewal, in months. Valid values: 1–3, 6, and 12. Default is 1.
- renew_
type str - Renewal type of the bandwidth package instance. Manual: Manual renewal. Auto: Automatic renewal. NoRenew: No renewal.
- status str
- Status of the bandwidth package. Creating: Being created. Deleting: Being deleted. Pending: In progress. Available: Unbound. InUse: Bound.
-
Sequence[Bandwidth
Package Tag Args] - update_
time str - Update time of the bandwidth package.
- bandwidth Number
- Bandwidth peak of the bandwidth package. Value range: 2–10000 Mbps. Default: 2 Mbps.
- billing
Status Number - Billing status of the bandwidth package instance. 0: Creating 1: Running 3: Unsubscribed 4: Expired and stopped 5: Expired and recycled 8: Unsubscribed and stopped
- billing
Type Number - Billing method of the bandwidth package. Valid values: 1 (default): yearly/monthly subscription. 4: pay-as-you-go—95th percentile billing.
- business
Status String - Frozen status of the bandwidth package. Normal: normal. FinancialLocked: frozen.
- cen
Bandwidth StringPackage Id - Bandwidth package ID.
- cen
Bandwidth StringPackage Name - Name of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length must be between 1 and 128 characters. If not specified, defaults to the bandwidth package ID.
- cen
Ids List<String> - List of associated CEN instance IDs.
- creation
Time String - Creation time of the bandwidth package.
- deleted
Time String - Deletion time of the bandwidth package.
- description String
- Description of the bandwidth package. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters. If not specified, defaults to an empty string.
- expired
Time String - Expiration time of the bandwidth package.
- line
Operator String - Carrier for cross-border bandwidth package lines. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are the same, this parameter is not supported. If LocalGeographicRegionSetId and PeerGeographicRegionSetId are different, available values are: ChinaUnicom (default): China Unicom.
- local
Geographic StringRegion Set Id - Local geographic region ID for Cloud Enterprise Network communication. Available values: China: Chinese mainland. Asia: Asia-Pacific.
- peer
Geographic StringRegion Set Id - Peer geographic region ID for Cloud Enterprise Network interconnection. Valid values: China: Chinese mainland. Asia: Asia-Pacific.
- period Number
- Purchase duration of the bandwidth package. Default is 1. Valid values: If PeriodUnit is Month, range is 1–9, 12, 24, and 36. If PeriodUnit is Year, range is 1–3.
- period
Unit String - Billing cycle of the bandwidth package. Valid values: Month (default): month. Year: year.
- project
Name String - Name of the project to which the bandwidth package belongs. If not specified, defaults to 'default'.
- reclaim
Time String - Recycle time after the bandwidth package instance expires.
- remain
Renew NumberTimes - Number of automatic renewals. Values include -1 and 1–100. Default is -1, which means unlimited automatic renewals.
- remaining
Bandwidth Number - Remaining bandwidth, measured in Mbps.
- renew
Period Number - Duration of each automatic renewal, in months. Valid values: 1–3, 6, and 12. Default is 1.
- renew
Type String - Renewal type of the bandwidth package instance. Manual: Manual renewal. Auto: Automatic renewal. NoRenew: No renewal.
- status String
- Status of the bandwidth package. Creating: Being created. Deleting: Being deleted. Pending: In progress. Available: Unbound. InUse: Bound.
- List<Property Map>
- update
Time String - Update time of the bandwidth package.
Supporting Types
BandwidthPackageTag, BandwidthPackageTagArgs
- Key string
- Tag key for user tags. Parameter - N: indicates the tag key index, value range: 1–20. Use & to separate multiple tag keys. Cannot start with sys:, in any case. Length range: 1–128 characters. Supports all languages, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals (=), plus (+), hyphens (-), and @ (@). If a tag key starts or ends with a space, the system automatically removes it.
- Value string
- Tag value for user tags. Parameter - N indicates the tag value index, range: 1–20. Use & to separate multiple tag values. Length range: 0–256 characters. If not specified, defaults to empty. Supports all languages, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @ (@). Case-sensitive. If the tag value starts or ends with a space, the system automatically removes it.
- Key string
- Tag key for user tags. Parameter - N: indicates the tag key index, value range: 1–20. Use & to separate multiple tag keys. Cannot start with sys:, in any case. Length range: 1–128 characters. Supports all languages, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals (=), plus (+), hyphens (-), and @ (@). If a tag key starts or ends with a space, the system automatically removes it.
- Value string
- Tag value for user tags. Parameter - N indicates the tag value index, range: 1–20. Use & to separate multiple tag values. Length range: 0–256 characters. If not specified, defaults to empty. Supports all languages, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @ (@). Case-sensitive. If the tag value starts or ends with a space, the system automatically removes it.
- key String
- Tag key for user tags. Parameter - N: indicates the tag key index, value range: 1–20. Use & to separate multiple tag keys. Cannot start with sys:, in any case. Length range: 1–128 characters. Supports all languages, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals (=), plus (+), hyphens (-), and @ (@). If a tag key starts or ends with a space, the system automatically removes it.
- value String
- Tag value for user tags. Parameter - N indicates the tag value index, range: 1–20. Use & to separate multiple tag values. Length range: 0–256 characters. If not specified, defaults to empty. Supports all languages, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @ (@). Case-sensitive. If the tag value starts or ends with a space, the system automatically removes it.
- key string
- Tag key for user tags. Parameter - N: indicates the tag key index, value range: 1–20. Use & to separate multiple tag keys. Cannot start with sys:, in any case. Length range: 1–128 characters. Supports all languages, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals (=), plus (+), hyphens (-), and @ (@). If a tag key starts or ends with a space, the system automatically removes it.
- value string
- Tag value for user tags. Parameter - N indicates the tag value index, range: 1–20. Use & to separate multiple tag values. Length range: 0–256 characters. If not specified, defaults to empty. Supports all languages, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @ (@). Case-sensitive. If the tag value starts or ends with a space, the system automatically removes it.
- key str
- Tag key for user tags. Parameter - N: indicates the tag key index, value range: 1–20. Use & to separate multiple tag keys. Cannot start with sys:, in any case. Length range: 1–128 characters. Supports all languages, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals (=), plus (+), hyphens (-), and @ (@). If a tag key starts or ends with a space, the system automatically removes it.
- value str
- Tag value for user tags. Parameter - N indicates the tag value index, range: 1–20. Use & to separate multiple tag values. Length range: 0–256 characters. If not specified, defaults to empty. Supports all languages, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @ (@). Case-sensitive. If the tag value starts or ends with a space, the system automatically removes it.
- key String
- Tag key for user tags. Parameter - N: indicates the tag key index, value range: 1–20. Use & to separate multiple tag keys. Cannot start with sys:, in any case. Length range: 1–128 characters. Supports all languages, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals (=), plus (+), hyphens (-), and @ (@). If a tag key starts or ends with a space, the system automatically removes it.
- value String
- Tag value for user tags. Parameter - N indicates the tag value index, range: 1–20. Use & to separate multiple tag values. Length range: 0–256 characters. If not specified, defaults to empty. Supports all languages, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @ (@). Case-sensitive. If the tag value starts or ends with a space, the system automatically removes it.
Import
$ pulumi import volcenginecc:cen/bandwidthPackage:BandwidthPackage example "cen_bandwidth_package_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
