published on Thursday, May 7, 2026 by Byteplus
published on Thursday, May 7, 2026 by Byteplus
Cloud Enterprise Network (CEN) provides fast, high-quality, and stable networking capabilities to quickly build private networks (VPC) across regions and between on-premises data centers (IDC), helping you create a global cloud network with enterprise-scale and communication capabilities
Example Usage
Example coming soon!
Example coming soon!
Example coming soon!
Example coming soon!
Example coming soon!
resources:
cENCENDemo:
type: bytepluscc:cen:Cen
name: CENCENDemo
properties:
cenName: CENCENDemo
description: CENCENDemo descripiton
projectName: iac
tags:
- key: dev
value: test
instances:
- instance_id: vpc-3psq16gaiw4qo6csxyv***
instance_owner_id: 21074****
instance_region_id: ap-southeast-1
instance_type: VPC
Create Cen Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Cen(name: string, args?: CenArgs, opts?: CustomResourceOptions);@overload
def Cen(resource_name: str,
args: Optional[CenArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Cen(resource_name: str,
opts: Optional[ResourceOptions] = None,
cen_name: Optional[str] = None,
description: Optional[str] = None,
instances: Optional[Sequence[CenInstanceArgs]] = None,
project_name: Optional[str] = None,
tags: Optional[Sequence[CenTagArgs]] = None)func NewCen(ctx *Context, name string, args *CenArgs, opts ...ResourceOption) (*Cen, error)public Cen(string name, CenArgs? args = null, CustomResourceOptions? opts = null)type: bytepluscc:cen:Cen
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 CenArgs
- 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 CenArgs
- 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 CenArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CenArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CenArgs
- 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 cenResource = new Bytepluscc.Cen.Cen("cenResource", new()
{
CenName = "string",
Description = "string",
Instances = new[]
{
new Bytepluscc.Cen.Inputs.CenInstanceArgs
{
InstanceId = "string",
InstanceOwnerId = "string",
InstanceRegionId = "string",
InstanceType = "string",
},
},
ProjectName = "string",
Tags = new[]
{
new Bytepluscc.Cen.Inputs.CenTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := cen.NewCen(ctx, "cenResource", &cen.CenArgs{
CenName: pulumi.String("string"),
Description: pulumi.String("string"),
Instances: cen.CenInstanceArray{
&cen.CenInstanceArgs{
InstanceId: pulumi.String("string"),
InstanceOwnerId: pulumi.String("string"),
InstanceRegionId: pulumi.String("string"),
InstanceType: pulumi.String("string"),
},
},
ProjectName: pulumi.String("string"),
Tags: cen.CenTagArray{
&cen.CenTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var cenResource = new Cen("cenResource", CenArgs.builder()
.cenName("string")
.description("string")
.instances(CenInstanceArgs.builder()
.instanceId("string")
.instanceOwnerId("string")
.instanceRegionId("string")
.instanceType("string")
.build())
.projectName("string")
.tags(CenTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
cen_resource = bytepluscc.cen.Cen("cenResource",
cen_name="string",
description="string",
instances=[{
"instance_id": "string",
"instance_owner_id": "string",
"instance_region_id": "string",
"instance_type": "string",
}],
project_name="string",
tags=[{
"key": "string",
"value": "string",
}])
const cenResource = new bytepluscc.cen.Cen("cenResource", {
cenName: "string",
description: "string",
instances: [{
instanceId: "string",
instanceOwnerId: "string",
instanceRegionId: "string",
instanceType: "string",
}],
projectName: "string",
tags: [{
key: "string",
value: "string",
}],
});
type: bytepluscc:cen:Cen
properties:
cenName: string
description: string
instances:
- instanceId: string
instanceOwnerId: string
instanceRegionId: string
instanceType: string
projectName: string
tags:
- key: string
value: string
Cen 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 Cen resource accepts the following input properties:
- Cen
Name string - Name of the CEN instance. 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 limit: 1–128 characters. If not specified, defaults to the CEN instance ID
- Description string
- Description for the CEN instance. 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 empty
- Instances
List<Byteplus.
Cen Instance> - Project
Name string - Name of the project to which the CEN instance belongs. If not specified, defaults to 'default'
-
List<Byteplus.
Cen Tag>
- Cen
Name string - Name of the CEN instance. 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 limit: 1–128 characters. If not specified, defaults to the CEN instance ID
- Description string
- Description for the CEN instance. 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 empty
- Instances
[]Cen
Instance Args - Project
Name string - Name of the project to which the CEN instance belongs. If not specified, defaults to 'default'
-
[]Cen
Tag Args
- cen
Name String - Name of the CEN instance. 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 limit: 1–128 characters. If not specified, defaults to the CEN instance ID
- description String
- Description for the CEN instance. 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 empty
- instances
List<Cen
Instance> - project
Name String - Name of the project to which the CEN instance belongs. If not specified, defaults to 'default'
-
List<Cen
Tag>
- cen
Name string - Name of the CEN instance. 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 limit: 1–128 characters. If not specified, defaults to the CEN instance ID
- description string
- Description for the CEN instance. 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 empty
- instances
Cen
Instance[] - project
Name string - Name of the project to which the CEN instance belongs. If not specified, defaults to 'default'
-
Cen
Tag[]
- cen_
name str - Name of the CEN instance. 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 limit: 1–128 characters. If not specified, defaults to the CEN instance ID
- description str
- Description for the CEN instance. 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 empty
- instances
Sequence[Cen
Instance Args] - project_
name str - Name of the project to which the CEN instance belongs. If not specified, defaults to 'default'
-
Sequence[Cen
Tag Args]
- cen
Name String - Name of the CEN instance. 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 limit: 1–128 characters. If not specified, defaults to the CEN instance ID
- description String
- Description for the CEN instance. 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 empty
- instances List<Property Map>
- project
Name String - Name of the project to which the CEN instance belongs. If not specified, defaults to 'default'
- List<Property Map>
Outputs
All input properties are implicitly available as output properties. Additionally, the Cen resource produces the following output properties:
- Account
Id string - Account ID to which the CEN instance belongs
- Cen
Bandwidth List<string>Package Ids - Bandwidth package ID
- Cen
Id string - CEN instance ID
- Creation
Time string - Time when the CEN instance was created
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- Status of the CEN instance. Creating: Creating Deleting: Deleting Pending: Configuring Available: Available
- Update
Time string - Time when the CEN instance was updated
- Account
Id string - Account ID to which the CEN instance belongs
- Cen
Bandwidth []stringPackage Ids - Bandwidth package ID
- Cen
Id string - CEN instance ID
- Creation
Time string - Time when the CEN instance was created
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- Status of the CEN instance. Creating: Creating Deleting: Deleting Pending: Configuring Available: Available
- Update
Time string - Time when the CEN instance was updated
- account
Id String - Account ID to which the CEN instance belongs
- cen
Bandwidth List<String>Package Ids - Bandwidth package ID
- cen
Id String - CEN instance ID
- creation
Time String - Time when the CEN instance was created
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- Status of the CEN instance. Creating: Creating Deleting: Deleting Pending: Configuring Available: Available
- update
Time String - Time when the CEN instance was updated
- account
Id string - Account ID to which the CEN instance belongs
- cen
Bandwidth string[]Package Ids - Bandwidth package ID
- cen
Id string - CEN instance ID
- creation
Time string - Time when the CEN instance was created
- id string
- The provider-assigned unique ID for this managed resource.
- status string
- Status of the CEN instance. Creating: Creating Deleting: Deleting Pending: Configuring Available: Available
- update
Time string - Time when the CEN instance was updated
- account_
id str - Account ID to which the CEN instance belongs
- cen_
bandwidth_ Sequence[str]package_ ids - Bandwidth package ID
- cen_
id str - CEN instance ID
- creation_
time str - Time when the CEN instance was created
- id str
- The provider-assigned unique ID for this managed resource.
- status str
- Status of the CEN instance. Creating: Creating Deleting: Deleting Pending: Configuring Available: Available
- update_
time str - Time when the CEN instance was updated
- account
Id String - Account ID to which the CEN instance belongs
- cen
Bandwidth List<String>Package Ids - Bandwidth package ID
- cen
Id String - CEN instance ID
- creation
Time String - Time when the CEN instance was created
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- Status of the CEN instance. Creating: Creating Deleting: Deleting Pending: Configuring Available: Available
- update
Time String - Time when the CEN instance was updated
Look up Existing Cen Resource
Get an existing Cen 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?: CenState, opts?: CustomResourceOptions): Cen@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
cen_bandwidth_package_ids: Optional[Sequence[str]] = None,
cen_id: Optional[str] = None,
cen_name: Optional[str] = None,
creation_time: Optional[str] = None,
description: Optional[str] = None,
instances: Optional[Sequence[CenInstanceArgs]] = None,
project_name: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Sequence[CenTagArgs]] = None,
update_time: Optional[str] = None) -> Cenfunc GetCen(ctx *Context, name string, id IDInput, state *CenState, opts ...ResourceOption) (*Cen, error)public static Cen Get(string name, Input<string> id, CenState? state, CustomResourceOptions? opts = null)public static Cen get(String name, Output<String> id, CenState state, CustomResourceOptions options)resources: _: type: bytepluscc:cen:Cen 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.
- Account
Id string - Account ID to which the CEN instance belongs
- Cen
Bandwidth List<string>Package Ids - Bandwidth package ID
- Cen
Id string - CEN instance ID
- Cen
Name string - Name of the CEN instance. 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 limit: 1–128 characters. If not specified, defaults to the CEN instance ID
- Creation
Time string - Time when the CEN instance was created
- Description string
- Description for the CEN instance. 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 empty
- Instances
List<Byteplus.
Cen Instance> - Project
Name string - Name of the project to which the CEN instance belongs. If not specified, defaults to 'default'
- Status string
- Status of the CEN instance. Creating: Creating Deleting: Deleting Pending: Configuring Available: Available
-
List<Byteplus.
Cen Tag> - Update
Time string - Time when the CEN instance was updated
- Account
Id string - Account ID to which the CEN instance belongs
- Cen
Bandwidth []stringPackage Ids - Bandwidth package ID
- Cen
Id string - CEN instance ID
- Cen
Name string - Name of the CEN instance. 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 limit: 1–128 characters. If not specified, defaults to the CEN instance ID
- Creation
Time string - Time when the CEN instance was created
- Description string
- Description for the CEN instance. 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 empty
- Instances
[]Cen
Instance Args - Project
Name string - Name of the project to which the CEN instance belongs. If not specified, defaults to 'default'
- Status string
- Status of the CEN instance. Creating: Creating Deleting: Deleting Pending: Configuring Available: Available
-
[]Cen
Tag Args - Update
Time string - Time when the CEN instance was updated
- account
Id String - Account ID to which the CEN instance belongs
- cen
Bandwidth List<String>Package Ids - Bandwidth package ID
- cen
Id String - CEN instance ID
- cen
Name String - Name of the CEN instance. 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 limit: 1–128 characters. If not specified, defaults to the CEN instance ID
- creation
Time String - Time when the CEN instance was created
- description String
- Description for the CEN instance. 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 empty
- instances
List<Cen
Instance> - project
Name String - Name of the project to which the CEN instance belongs. If not specified, defaults to 'default'
- status String
- Status of the CEN instance. Creating: Creating Deleting: Deleting Pending: Configuring Available: Available
-
List<Cen
Tag> - update
Time String - Time when the CEN instance was updated
- account
Id string - Account ID to which the CEN instance belongs
- cen
Bandwidth string[]Package Ids - Bandwidth package ID
- cen
Id string - CEN instance ID
- cen
Name string - Name of the CEN instance. 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 limit: 1–128 characters. If not specified, defaults to the CEN instance ID
- creation
Time string - Time when the CEN instance was created
- description string
- Description for the CEN instance. 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 empty
- instances
Cen
Instance[] - project
Name string - Name of the project to which the CEN instance belongs. If not specified, defaults to 'default'
- status string
- Status of the CEN instance. Creating: Creating Deleting: Deleting Pending: Configuring Available: Available
-
Cen
Tag[] - update
Time string - Time when the CEN instance was updated
- account_
id str - Account ID to which the CEN instance belongs
- cen_
bandwidth_ Sequence[str]package_ ids - Bandwidth package ID
- cen_
id str - CEN instance ID
- cen_
name str - Name of the CEN instance. 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 limit: 1–128 characters. If not specified, defaults to the CEN instance ID
- creation_
time str - Time when the CEN instance was created
- description str
- Description for the CEN instance. 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 empty
- instances
Sequence[Cen
Instance Args] - project_
name str - Name of the project to which the CEN instance belongs. If not specified, defaults to 'default'
- status str
- Status of the CEN instance. Creating: Creating Deleting: Deleting Pending: Configuring Available: Available
-
Sequence[Cen
Tag Args] - update_
time str - Time when the CEN instance was updated
- account
Id String - Account ID to which the CEN instance belongs
- cen
Bandwidth List<String>Package Ids - Bandwidth package ID
- cen
Id String - CEN instance ID
- cen
Name String - Name of the CEN instance. 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 limit: 1–128 characters. If not specified, defaults to the CEN instance ID
- creation
Time String - Time when the CEN instance was created
- description String
- Description for the CEN instance. 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 empty
- instances List<Property Map>
- project
Name String - Name of the project to which the CEN instance belongs. If not specified, defaults to 'default'
- status String
- Status of the CEN instance. Creating: Creating Deleting: Deleting Pending: Configuring Available: Available
- List<Property Map>
- update
Time String - Time when the CEN instance was updated
Supporting Types
CenInstance, CenInstanceArgs
- Instance
Id string - Network instance ID
- Instance
Owner stringId - Account ID for the network instance
- Instance
Region stringId - Region where the network instance is located
- Instance
Type string - Type of the network instance
- Instance
Id string - Network instance ID
- Instance
Owner stringId - Account ID for the network instance
- Instance
Region stringId - Region where the network instance is located
- Instance
Type string - Type of the network instance
- instance
Id String - Network instance ID
- instance
Owner StringId - Account ID for the network instance
- instance
Region StringId - Region where the network instance is located
- instance
Type String - Type of the network instance
- instance
Id string - Network instance ID
- instance
Owner stringId - Account ID for the network instance
- instance
Region stringId - Region where the network instance is located
- instance
Type string - Type of the network instance
- instance_
id str - Network instance ID
- instance_
owner_ strid - Account ID for the network instance
- instance_
region_ strid - Region where the network instance is located
- instance_
type str - Type of the network instance
- instance
Id String - Network instance ID
- instance
Owner StringId - Account ID for the network instance
- instance
Region StringId - Region where the network instance is located
- instance
Type String - Type of the network instance
CenTag, CenTagArgs
- Key string
- Tag key for user labels. Length limit: 1–128 characters. Case sensitive. Cannot start or end with a space. Allowed characters: letters, numbers, spaces, underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), minus signs (-), and @. Duplicate tag keys are not allowed for the same resource
- Value string
- Tag value for user labels. Length limit: 0–256 characters. Case sensitive. Cannot start or end with a space. Allowed characters: letters, numbers, spaces, underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), minus signs (-), and @
- Key string
- Tag key for user labels. Length limit: 1–128 characters. Case sensitive. Cannot start or end with a space. Allowed characters: letters, numbers, spaces, underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), minus signs (-), and @. Duplicate tag keys are not allowed for the same resource
- Value string
- Tag value for user labels. Length limit: 0–256 characters. Case sensitive. Cannot start or end with a space. Allowed characters: letters, numbers, spaces, underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), minus signs (-), and @
- key String
- Tag key for user labels. Length limit: 1–128 characters. Case sensitive. Cannot start or end with a space. Allowed characters: letters, numbers, spaces, underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), minus signs (-), and @. Duplicate tag keys are not allowed for the same resource
- value String
- Tag value for user labels. Length limit: 0–256 characters. Case sensitive. Cannot start or end with a space. Allowed characters: letters, numbers, spaces, underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), minus signs (-), and @
- key string
- Tag key for user labels. Length limit: 1–128 characters. Case sensitive. Cannot start or end with a space. Allowed characters: letters, numbers, spaces, underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), minus signs (-), and @. Duplicate tag keys are not allowed for the same resource
- value string
- Tag value for user labels. Length limit: 0–256 characters. Case sensitive. Cannot start or end with a space. Allowed characters: letters, numbers, spaces, underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), minus signs (-), and @
- key str
- Tag key for user labels. Length limit: 1–128 characters. Case sensitive. Cannot start or end with a space. Allowed characters: letters, numbers, spaces, underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), minus signs (-), and @. Duplicate tag keys are not allowed for the same resource
- value str
- Tag value for user labels. Length limit: 0–256 characters. Case sensitive. Cannot start or end with a space. Allowed characters: letters, numbers, spaces, underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), minus signs (-), and @
- key String
- Tag key for user labels. Length limit: 1–128 characters. Case sensitive. Cannot start or end with a space. Allowed characters: letters, numbers, spaces, underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), minus signs (-), and @. Duplicate tag keys are not allowed for the same resource
- value String
- Tag value for user labels. Length limit: 0–256 characters. Case sensitive. Cannot start or end with a space. Allowed characters: letters, numbers, spaces, underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), minus signs (-), and @
Import
$ pulumi import bytepluscc:cen/cen:Cen example "cen_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 Thursday, May 7, 2026 by Byteplus
