1. Registry
  2. Packages
  3. Bytepluscc Provider
  4. API Docs
  5. cen
  6. Cen
Viewing docs for bytepluscc v0.0.53
published on Thursday, Sep 10, 2026 by Byteplus
bytepluscc logo
Viewing docs for bytepluscc v0.0.53
published on Thursday, Sep 10, 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

    import * as pulumi from "@pulumi/pulumi";
    import * as bytepluscc from "@byteplus/pulumi-bytepluscc";
    
    const cENCENDemo = new bytepluscc.cen.Cen("CENCENDemo", {
        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",
        }],
    });
    
    import pulumi
    import pulumi_bytepluscc as bytepluscc
    
    c_encen_demo = bytepluscc.cen.Cen("CENCENDemo",
        cen_name="CENCENDemo",
        description="CENCENDemo descripiton",
        project_name="iac",
        tags=[{
            "key": "dev",
            "value": "test",
        }],
        instances=[{
            "instance_id": "vpc-3psq16gaiw4qo6csxyv***",
            "instance_owner_id": "21074****",
            "instance_region_id": "ap-southeast-1",
            "instance_type": "VPC",
        }])
    
    package main
    
    import (
    	"github.com/byteplus-sdk/pulumi-bytepluscc/sdk/go/bytepluscc/cen"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cen.NewCen(ctx, "CENCENDemo", &cen.CenArgs{
    			CenName:     pulumi.String("CENCENDemo"),
    			Description: pulumi.String("CENCENDemo descripiton"),
    			ProjectName: pulumi.String("iac"),
    			Tags: cen.CenTagArray{
    				&cen.CenTagArgs{
    					Key:   pulumi.String("dev"),
    					Value: pulumi.String("test"),
    				},
    			},
    			Instances: cen.CenInstanceArray{
    				&cen.CenInstanceArgs{
    					Instance_id:        "vpc-3psq16gaiw4qo6csxyv***",
    					Instance_owner_id:  "21074****",
    					Instance_region_id: "ap-southeast-1",
    					Instance_type:      "VPC",
    				},
    			},
    		})
    		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 cENCENDemo = new Bytepluscc.Cen.Cen("CENCENDemo", new()
        {
            CenName = "CENCENDemo",
            Description = "CENCENDemo descripiton",
            ProjectName = "iac",
            Tags = new[]
            {
                new Bytepluscc.Cen.Inputs.CenTagArgs
                {
                    Key = "dev",
                    Value = "test",
                },
            },
            Instances = new[]
            {
                new Bytepluscc.Cen.Inputs.CenInstanceArgs
                {
                    Instance_id = "vpc-3psq16gaiw4qo6csxyv***",
                    Instance_owner_id = "21074****",
                    Instance_region_id = "ap-southeast-1",
                    Instance_type = "VPC",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.byteplus.bytepluscc.cen.Cen;
    import com.byteplus.bytepluscc.cen.CenArgs;
    import com.pulumi.bytepluscc.cen.inputs.CenTagArgs;
    import com.pulumi.bytepluscc.cen.inputs.CenInstanceArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 cENCENDemo = new Cen("cENCENDemo", CenArgs.builder()
                .cenName("CENCENDemo")
                .description("CENCENDemo descripiton")
                .projectName("iac")
                .tags(CenTagArgs.builder()
                    .key("dev")
                    .value("test")
                    .build())
                .instances(CenInstanceArgs.builder()
                    .instance_id("vpc-3psq16gaiw4qo6csxyv***")
                    .instance_owner_id("21074****")
                    .instance_region_id("ap-southeast-1")
                    .instance_type("VPC")
                    .build())
                .build());
    
        }
    }
    
    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
    
    pulumi {
      required_providers {
        bytepluscc = {
          source = "pulumi/bytepluscc"
        }
      }
    }
    
    resource "bytepluscc_cen_cen" "CENCENDemo" {
      cen_name     = "CENCENDemo"
      description  = "CENCENDemo descripiton"
      project_name = "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)
    public Cen(String name, CenArgs args)
    public Cen(String name, CenArgs args, CustomResourceOptions options)
    
    type: bytepluscc:cen:Cen
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "bytepluscc_cen_cen" "name" {
        # resource properties
    }

    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"),
    		},
    	},
    })
    
    resource "bytepluscc_cen_cen" "cenResource" {
      lifecycle {
        create_before_destroy = true
      }
      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"
      }
    }
    
    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:

    CenName 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.CenInstance>
    List of associated network instances Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    ProjectName string
    Name of the project to which the CEN instance belongs. If not specified, defaults to 'default'
    Tags List<Byteplus.CenTag>
    Tag information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    CenName 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 []CenInstanceArgs
    List of associated network instances Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    ProjectName string
    Name of the project to which the CEN instance belongs. If not specified, defaults to 'default'
    Tags []CenTagArgs
    Tag information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    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(object)
    List of associated network instances Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    project_name string
    Name of the project to which the CEN instance belongs. If not specified, defaults to 'default'
    tags list(object)
    Tag information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    cenName 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<CenInstance>
    List of associated network instances Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    projectName String
    Name of the project to which the CEN instance belongs. If not specified, defaults to 'default'
    tags List<CenTag>
    Tag information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    cenName 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 CenInstance[]
    List of associated network instances Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    projectName string
    Name of the project to which the CEN instance belongs. If not specified, defaults to 'default'
    tags CenTag[]
    Tag information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    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[CenInstanceArgs]
    List of associated network instances Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    project_name str
    Name of the project to which the CEN instance belongs. If not specified, defaults to 'default'
    tags Sequence[CenTagArgs]
    Tag information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    cenName 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>
    List of associated network instances Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    projectName String
    Name of the project to which the CEN instance belongs. If not specified, defaults to 'default'
    tags List<Property Map>
    Tag information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.

    Outputs

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

    AccountId string
    Account ID to which the CEN instance belongs
    CenBandwidthPackageIds List<string>
    Bandwidth package ID
    CenId string
    CEN instance ID
    CreationTime 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
    UpdateTime string
    Time when the CEN instance was updated
    AccountId string
    Account ID to which the CEN instance belongs
    CenBandwidthPackageIds []string
    Bandwidth package ID
    CenId string
    CEN instance ID
    CreationTime 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
    UpdateTime string
    Time when the CEN instance was updated
    account_id string
    Account ID to which the CEN instance belongs
    cen_bandwidth_package_ids list(string)
    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
    accountId String
    Account ID to which the CEN instance belongs
    cenBandwidthPackageIds List<String>
    Bandwidth package ID
    cenId String
    CEN instance ID
    creationTime 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
    updateTime String
    Time when the CEN instance was updated
    accountId string
    Account ID to which the CEN instance belongs
    cenBandwidthPackageIds string[]
    Bandwidth package ID
    cenId string
    CEN instance ID
    creationTime 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
    updateTime string
    Time when the CEN instance was updated
    account_id str
    Account ID to which the CEN instance belongs
    cen_bandwidth_package_ids Sequence[str]
    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
    accountId String
    Account ID to which the CEN instance belongs
    cenBandwidthPackageIds List<String>
    Bandwidth package ID
    cenId String
    CEN instance ID
    creationTime 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
    updateTime 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) -> Cen
    func 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}
    import {
      to = bytepluscc_cen_cen.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AccountId string
    Account ID to which the CEN instance belongs
    CenBandwidthPackageIds List<string>
    Bandwidth package ID
    CenId string
    CEN instance ID
    CenName 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
    CreationTime 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.CenInstance>
    List of associated network instances Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    ProjectName 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
    Tags List<Byteplus.CenTag>
    Tag information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    UpdateTime string
    Time when the CEN instance was updated
    AccountId string
    Account ID to which the CEN instance belongs
    CenBandwidthPackageIds []string
    Bandwidth package ID
    CenId string
    CEN instance ID
    CenName 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
    CreationTime 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 []CenInstanceArgs
    List of associated network instances Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    ProjectName 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
    Tags []CenTagArgs
    Tag information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    UpdateTime string
    Time when the CEN instance was updated
    account_id string
    Account ID to which the CEN instance belongs
    cen_bandwidth_package_ids list(string)
    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(object)
    List of associated network instances Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    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
    tags list(object)
    Tag information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    update_time string
    Time when the CEN instance was updated
    accountId String
    Account ID to which the CEN instance belongs
    cenBandwidthPackageIds List<String>
    Bandwidth package ID
    cenId String
    CEN instance ID
    cenName 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
    creationTime 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<CenInstance>
    List of associated network instances Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    projectName 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
    tags List<CenTag>
    Tag information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    updateTime String
    Time when the CEN instance was updated
    accountId string
    Account ID to which the CEN instance belongs
    cenBandwidthPackageIds string[]
    Bandwidth package ID
    cenId string
    CEN instance ID
    cenName 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
    creationTime 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 CenInstance[]
    List of associated network instances Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    projectName 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
    tags CenTag[]
    Tag information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    updateTime string
    Time when the CEN instance was updated
    account_id str
    Account ID to which the CEN instance belongs
    cen_bandwidth_package_ids Sequence[str]
    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[CenInstanceArgs]
    List of associated network instances Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    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
    tags Sequence[CenTagArgs]
    Tag information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    update_time str
    Time when the CEN instance was updated
    accountId String
    Account ID to which the CEN instance belongs
    cenBandwidthPackageIds List<String>
    Bandwidth package ID
    cenId String
    CEN instance ID
    cenName 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
    creationTime 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>
    List of associated network instances Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    projectName 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
    tags List<Property Map>
    Tag information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
    updateTime String
    Time when the CEN instance was updated

    Supporting Types

    CenInstance, CenInstanceArgs

    InstanceId string
    Network instance ID
    InstanceOwnerId string
    Account ID for the network instance
    InstanceRegionId string
    Region where the network instance is located
    InstanceType string
    Type of the network instance
    InstanceId string
    Network instance ID
    InstanceOwnerId string
    Account ID for the network instance
    InstanceRegionId string
    Region where the network instance is located
    InstanceType string
    Type of the network instance
    instance_id string
    Network instance ID
    instance_owner_id string
    Account ID for the network instance
    instance_region_id string
    Region where the network instance is located
    instance_type string
    Type of the network instance
    instanceId String
    Network instance ID
    instanceOwnerId String
    Account ID for the network instance
    instanceRegionId String
    Region where the network instance is located
    instanceType String
    Type of the network instance
    instanceId string
    Network instance ID
    instanceOwnerId string
    Account ID for the network instance
    instanceRegionId string
    Region where the network instance is located
    instanceType string
    Type of the network instance
    instance_id str
    Network instance ID
    instance_owner_id str
    Account ID for the network instance
    instance_region_id str
    Region where the network instance is located
    instance_type str
    Type of the network instance
    instanceId String
    Network instance ID
    instanceOwnerId String
    Account ID for the network instance
    instanceRegionId String
    Region where the network instance is located
    instanceType 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 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 bytepluscc Terraform Provider.
    bytepluscc logo
    Viewing docs for bytepluscc v0.0.53
    published on Thursday, Sep 10, 2026 by Byteplus

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial