published on Thursday, Jul 23, 2026 by opentelekomcloud
published on Thursday, Jul 23, 2026 by opentelekomcloud
Up-to-date reference of API arguments for Cloud Connect Central Network you can get at documentation portal
Manages a Cloud Connect (CC) central network resource within OpenTelekomCloud.
A central network lets you connect enterprise routers from different regions and accounts so that they can communicate over a fully meshed network. It is the top-level container for central network policies and connections.
The central network APIs are account-level (domain-scoped). Make sure the credentials used by the provider have permission to manage Cloud Connect resources.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as opentelekomcloud from "@pulumi/opentelekomcloud";
const test = new opentelekomcloud.CcCentralNetworkV3("test", {
name: "central-network-demo",
description: "managed by terraform",
});
import pulumi
import pulumi_opentelekomcloud as opentelekomcloud
test = opentelekomcloud.CcCentralNetworkV3("test",
name="central-network-demo",
description="managed by terraform")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/opentelekomcloud/opentelekomcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := opentelekomcloud.NewCcCentralNetworkV3(ctx, "test", &opentelekomcloud.CcCentralNetworkV3Args{
Name: pulumi.String("central-network-demo"),
Description: pulumi.String("managed by terraform"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Opentelekomcloud = Pulumi.Opentelekomcloud;
return await Deployment.RunAsync(() =>
{
var test = new Opentelekomcloud.CcCentralNetworkV3("test", new()
{
Name = "central-network-demo",
Description = "managed by terraform",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.opentelekomcloud.CcCentralNetworkV3;
import com.pulumi.opentelekomcloud.CcCentralNetworkV3Args;
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 test = new CcCentralNetworkV3("test", CcCentralNetworkV3Args.builder()
.name("central-network-demo")
.description("managed by terraform")
.build());
}
}
resources:
test:
type: opentelekomcloud:CcCentralNetworkV3
properties:
name: central-network-demo
description: managed by terraform
Example coming soon!
Create CcCentralNetworkV3 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CcCentralNetworkV3(name: string, args?: CcCentralNetworkV3Args, opts?: CustomResourceOptions);@overload
def CcCentralNetworkV3(resource_name: str,
args: Optional[CcCentralNetworkV3Args] = None,
opts: Optional[ResourceOptions] = None)
@overload
def CcCentralNetworkV3(resource_name: str,
opts: Optional[ResourceOptions] = None,
cc_central_network_v3_id: Optional[str] = None,
description: Optional[str] = None,
enterprise_project_id: Optional[str] = None,
name: Optional[str] = None,
timeouts: Optional[CcCentralNetworkV3TimeoutsArgs] = None)func NewCcCentralNetworkV3(ctx *Context, name string, args *CcCentralNetworkV3Args, opts ...ResourceOption) (*CcCentralNetworkV3, error)public CcCentralNetworkV3(string name, CcCentralNetworkV3Args? args = null, CustomResourceOptions? opts = null)
public CcCentralNetworkV3(String name, CcCentralNetworkV3Args args)
public CcCentralNetworkV3(String name, CcCentralNetworkV3Args args, CustomResourceOptions options)
type: opentelekomcloud:CcCentralNetworkV3
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "opentelekomcloud_cc_central_network_v3" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args CcCentralNetworkV3Args
- 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 CcCentralNetworkV3Args
- 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 CcCentralNetworkV3Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CcCentralNetworkV3Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CcCentralNetworkV3Args
- 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 ccCentralNetworkV3Resource = new Opentelekomcloud.CcCentralNetworkV3("ccCentralNetworkV3Resource", new()
{
CcCentralNetworkV3Id = "string",
Description = "string",
EnterpriseProjectId = "string",
Name = "string",
Timeouts = new Opentelekomcloud.Inputs.CcCentralNetworkV3TimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
});
example, err := opentelekomcloud.NewCcCentralNetworkV3(ctx, "ccCentralNetworkV3Resource", &opentelekomcloud.CcCentralNetworkV3Args{
CcCentralNetworkV3Id: pulumi.String("string"),
Description: pulumi.String("string"),
EnterpriseProjectId: pulumi.String("string"),
Name: pulumi.String("string"),
Timeouts: &opentelekomcloud.CcCentralNetworkV3TimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
resource "opentelekomcloud_cc_central_network_v3" "ccCentralNetworkV3Resource" {
lifecycle {
create_before_destroy = true
}
cc_central_network_v3_id = "string"
description = "string"
enterprise_project_id = "string"
name = "string"
timeouts = {
create = "string"
delete = "string"
update = "string"
}
}
var ccCentralNetworkV3Resource = new CcCentralNetworkV3("ccCentralNetworkV3Resource", CcCentralNetworkV3Args.builder()
.ccCentralNetworkV3Id("string")
.description("string")
.enterpriseProjectId("string")
.name("string")
.timeouts(CcCentralNetworkV3TimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.build());
cc_central_network_v3_resource = opentelekomcloud.CcCentralNetworkV3("ccCentralNetworkV3Resource",
cc_central_network_v3_id="string",
description="string",
enterprise_project_id="string",
name="string",
timeouts={
"create": "string",
"delete": "string",
"update": "string",
})
const ccCentralNetworkV3Resource = new opentelekomcloud.CcCentralNetworkV3("ccCentralNetworkV3Resource", {
ccCentralNetworkV3Id: "string",
description: "string",
enterpriseProjectId: "string",
name: "string",
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
});
type: opentelekomcloud:CcCentralNetworkV3
properties:
ccCentralNetworkV3Id: string
description: string
enterpriseProjectId: string
name: string
timeouts:
create: string
delete: string
update: string
CcCentralNetworkV3 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 CcCentralNetworkV3 resource accepts the following input properties:
- Cc
Central stringNetwork V3Id - The resource ID in UUID format. Equal to the central network ID.
- Description string
- The description of the central network.
The description can contain a maximum of 255 characters, and the angle brackets (
<and>) are not allowed. - Enterprise
Project stringId - The ID of the enterprise project that the central network belongs to. Changing this parameter will create a new resource.
- Name string
- The name of the central network. The name can contain 1 to 64 characters, only letters, digits, underscores (_) and hyphens (-) are allowed.
- Timeouts
Cc
Central Network V3Timeouts
- Cc
Central stringNetwork V3Id - The resource ID in UUID format. Equal to the central network ID.
- Description string
- The description of the central network.
The description can contain a maximum of 255 characters, and the angle brackets (
<and>) are not allowed. - Enterprise
Project stringId - The ID of the enterprise project that the central network belongs to. Changing this parameter will create a new resource.
- Name string
- The name of the central network. The name can contain 1 to 64 characters, only letters, digits, underscores (_) and hyphens (-) are allowed.
- Timeouts
Cc
Central Network V3Timeouts Args
- cc_
central_ stringnetwork_ v3_ id - The resource ID in UUID format. Equal to the central network ID.
- description string
- The description of the central network.
The description can contain a maximum of 255 characters, and the angle brackets (
<and>) are not allowed. - enterprise_
project_ stringid - The ID of the enterprise project that the central network belongs to. Changing this parameter will create a new resource.
- name string
- The name of the central network. The name can contain 1 to 64 characters, only letters, digits, underscores (_) and hyphens (-) are allowed.
- timeouts object
- cc
Central StringNetwork V3Id - The resource ID in UUID format. Equal to the central network ID.
- description String
- The description of the central network.
The description can contain a maximum of 255 characters, and the angle brackets (
<and>) are not allowed. - enterprise
Project StringId - The ID of the enterprise project that the central network belongs to. Changing this parameter will create a new resource.
- name String
- The name of the central network. The name can contain 1 to 64 characters, only letters, digits, underscores (_) and hyphens (-) are allowed.
- timeouts
Cc
Central Network V3Timeouts
- cc
Central stringNetwork V3Id - The resource ID in UUID format. Equal to the central network ID.
- description string
- The description of the central network.
The description can contain a maximum of 255 characters, and the angle brackets (
<and>) are not allowed. - enterprise
Project stringId - The ID of the enterprise project that the central network belongs to. Changing this parameter will create a new resource.
- name string
- The name of the central network. The name can contain 1 to 64 characters, only letters, digits, underscores (_) and hyphens (-) are allowed.
- timeouts
Cc
Central Network V3Timeouts
- cc_
central_ strnetwork_ v3_ id - The resource ID in UUID format. Equal to the central network ID.
- description str
- The description of the central network.
The description can contain a maximum of 255 characters, and the angle brackets (
<and>) are not allowed. - enterprise_
project_ strid - The ID of the enterprise project that the central network belongs to. Changing this parameter will create a new resource.
- name str
- The name of the central network. The name can contain 1 to 64 characters, only letters, digits, underscores (_) and hyphens (-) are allowed.
- timeouts
Cc
Central Network V3Timeouts Args
- cc
Central StringNetwork V3Id - The resource ID in UUID format. Equal to the central network ID.
- description String
- The description of the central network.
The description can contain a maximum of 255 characters, and the angle brackets (
<and>) are not allowed. - enterprise
Project StringId - The ID of the enterprise project that the central network belongs to. Changing this parameter will create a new resource.
- name String
- The name of the central network. The name can contain 1 to 64 characters, only letters, digits, underscores (_) and hyphens (-) are allowed.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the CcCentralNetworkV3 resource produces the following output properties:
- Created
At string - The creation time of the central network.
- Default
Plane stringId - The ID of the default central network plane.
- Domain
Id string - The ID of the account that the central network belongs to.
- Id string
- The provider-assigned unique ID for this managed resource.
- Region string
- The region in which the central network is managed.
- State string
- The status of the central network. The value can be AVAILABLE, CREATING, UPDATING, FAILED, DELETING, DELETED or RESTORING.
- Updated
At string - The latest update time of the central network.
- Created
At string - The creation time of the central network.
- Default
Plane stringId - The ID of the default central network plane.
- Domain
Id string - The ID of the account that the central network belongs to.
- Id string
- The provider-assigned unique ID for this managed resource.
- Region string
- The region in which the central network is managed.
- State string
- The status of the central network. The value can be AVAILABLE, CREATING, UPDATING, FAILED, DELETING, DELETED or RESTORING.
- Updated
At string - The latest update time of the central network.
- created_
at string - The creation time of the central network.
- default_
plane_ stringid - The ID of the default central network plane.
- domain_
id string - The ID of the account that the central network belongs to.
- id string
- The provider-assigned unique ID for this managed resource.
- region string
- The region in which the central network is managed.
- state string
- The status of the central network. The value can be AVAILABLE, CREATING, UPDATING, FAILED, DELETING, DELETED or RESTORING.
- updated_
at string - The latest update time of the central network.
- created
At String - The creation time of the central network.
- default
Plane StringId - The ID of the default central network plane.
- domain
Id String - The ID of the account that the central network belongs to.
- id String
- The provider-assigned unique ID for this managed resource.
- region String
- The region in which the central network is managed.
- state String
- The status of the central network. The value can be AVAILABLE, CREATING, UPDATING, FAILED, DELETING, DELETED or RESTORING.
- updated
At String - The latest update time of the central network.
- created
At string - The creation time of the central network.
- default
Plane stringId - The ID of the default central network plane.
- domain
Id string - The ID of the account that the central network belongs to.
- id string
- The provider-assigned unique ID for this managed resource.
- region string
- The region in which the central network is managed.
- state string
- The status of the central network. The value can be AVAILABLE, CREATING, UPDATING, FAILED, DELETING, DELETED or RESTORING.
- updated
At string - The latest update time of the central network.
- created_
at str - The creation time of the central network.
- default_
plane_ strid - The ID of the default central network plane.
- domain_
id str - The ID of the account that the central network belongs to.
- id str
- The provider-assigned unique ID for this managed resource.
- region str
- The region in which the central network is managed.
- state str
- The status of the central network. The value can be AVAILABLE, CREATING, UPDATING, FAILED, DELETING, DELETED or RESTORING.
- updated_
at str - The latest update time of the central network.
- created
At String - The creation time of the central network.
- default
Plane StringId - The ID of the default central network plane.
- domain
Id String - The ID of the account that the central network belongs to.
- id String
- The provider-assigned unique ID for this managed resource.
- region String
- The region in which the central network is managed.
- state String
- The status of the central network. The value can be AVAILABLE, CREATING, UPDATING, FAILED, DELETING, DELETED or RESTORING.
- updated
At String - The latest update time of the central network.
Look up Existing CcCentralNetworkV3 Resource
Get an existing CcCentralNetworkV3 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?: CcCentralNetworkV3State, opts?: CustomResourceOptions): CcCentralNetworkV3@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cc_central_network_v3_id: Optional[str] = None,
created_at: Optional[str] = None,
default_plane_id: Optional[str] = None,
description: Optional[str] = None,
domain_id: Optional[str] = None,
enterprise_project_id: Optional[str] = None,
name: Optional[str] = None,
region: Optional[str] = None,
state: Optional[str] = None,
timeouts: Optional[CcCentralNetworkV3TimeoutsArgs] = None,
updated_at: Optional[str] = None) -> CcCentralNetworkV3func GetCcCentralNetworkV3(ctx *Context, name string, id IDInput, state *CcCentralNetworkV3State, opts ...ResourceOption) (*CcCentralNetworkV3, error)public static CcCentralNetworkV3 Get(string name, Input<string> id, CcCentralNetworkV3State? state, CustomResourceOptions? opts = null)public static CcCentralNetworkV3 get(String name, Output<String> id, CcCentralNetworkV3State state, CustomResourceOptions options)resources: _: type: opentelekomcloud:CcCentralNetworkV3 get: id: ${id}import {
to = opentelekomcloud_cc_central_network_v3.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.
- Cc
Central stringNetwork V3Id - The resource ID in UUID format. Equal to the central network ID.
- Created
At string - The creation time of the central network.
- Default
Plane stringId - The ID of the default central network plane.
- Description string
- The description of the central network.
The description can contain a maximum of 255 characters, and the angle brackets (
<and>) are not allowed. - Domain
Id string - The ID of the account that the central network belongs to.
- Enterprise
Project stringId - The ID of the enterprise project that the central network belongs to. Changing this parameter will create a new resource.
- Name string
- The name of the central network. The name can contain 1 to 64 characters, only letters, digits, underscores (_) and hyphens (-) are allowed.
- Region string
- The region in which the central network is managed.
- State string
- The status of the central network. The value can be AVAILABLE, CREATING, UPDATING, FAILED, DELETING, DELETED or RESTORING.
- Timeouts
Cc
Central Network V3Timeouts - Updated
At string - The latest update time of the central network.
- Cc
Central stringNetwork V3Id - The resource ID in UUID format. Equal to the central network ID.
- Created
At string - The creation time of the central network.
- Default
Plane stringId - The ID of the default central network plane.
- Description string
- The description of the central network.
The description can contain a maximum of 255 characters, and the angle brackets (
<and>) are not allowed. - Domain
Id string - The ID of the account that the central network belongs to.
- Enterprise
Project stringId - The ID of the enterprise project that the central network belongs to. Changing this parameter will create a new resource.
- Name string
- The name of the central network. The name can contain 1 to 64 characters, only letters, digits, underscores (_) and hyphens (-) are allowed.
- Region string
- The region in which the central network is managed.
- State string
- The status of the central network. The value can be AVAILABLE, CREATING, UPDATING, FAILED, DELETING, DELETED or RESTORING.
- Timeouts
Cc
Central Network V3Timeouts Args - Updated
At string - The latest update time of the central network.
- cc_
central_ stringnetwork_ v3_ id - The resource ID in UUID format. Equal to the central network ID.
- created_
at string - The creation time of the central network.
- default_
plane_ stringid - The ID of the default central network plane.
- description string
- The description of the central network.
The description can contain a maximum of 255 characters, and the angle brackets (
<and>) are not allowed. - domain_
id string - The ID of the account that the central network belongs to.
- enterprise_
project_ stringid - The ID of the enterprise project that the central network belongs to. Changing this parameter will create a new resource.
- name string
- The name of the central network. The name can contain 1 to 64 characters, only letters, digits, underscores (_) and hyphens (-) are allowed.
- region string
- The region in which the central network is managed.
- state string
- The status of the central network. The value can be AVAILABLE, CREATING, UPDATING, FAILED, DELETING, DELETED or RESTORING.
- timeouts object
- updated_
at string - The latest update time of the central network.
- cc
Central StringNetwork V3Id - The resource ID in UUID format. Equal to the central network ID.
- created
At String - The creation time of the central network.
- default
Plane StringId - The ID of the default central network plane.
- description String
- The description of the central network.
The description can contain a maximum of 255 characters, and the angle brackets (
<and>) are not allowed. - domain
Id String - The ID of the account that the central network belongs to.
- enterprise
Project StringId - The ID of the enterprise project that the central network belongs to. Changing this parameter will create a new resource.
- name String
- The name of the central network. The name can contain 1 to 64 characters, only letters, digits, underscores (_) and hyphens (-) are allowed.
- region String
- The region in which the central network is managed.
- state String
- The status of the central network. The value can be AVAILABLE, CREATING, UPDATING, FAILED, DELETING, DELETED or RESTORING.
- timeouts
Cc
Central Network V3Timeouts - updated
At String - The latest update time of the central network.
- cc
Central stringNetwork V3Id - The resource ID in UUID format. Equal to the central network ID.
- created
At string - The creation time of the central network.
- default
Plane stringId - The ID of the default central network plane.
- description string
- The description of the central network.
The description can contain a maximum of 255 characters, and the angle brackets (
<and>) are not allowed. - domain
Id string - The ID of the account that the central network belongs to.
- enterprise
Project stringId - The ID of the enterprise project that the central network belongs to. Changing this parameter will create a new resource.
- name string
- The name of the central network. The name can contain 1 to 64 characters, only letters, digits, underscores (_) and hyphens (-) are allowed.
- region string
- The region in which the central network is managed.
- state string
- The status of the central network. The value can be AVAILABLE, CREATING, UPDATING, FAILED, DELETING, DELETED or RESTORING.
- timeouts
Cc
Central Network V3Timeouts - updated
At string - The latest update time of the central network.
- cc_
central_ strnetwork_ v3_ id - The resource ID in UUID format. Equal to the central network ID.
- created_
at str - The creation time of the central network.
- default_
plane_ strid - The ID of the default central network plane.
- description str
- The description of the central network.
The description can contain a maximum of 255 characters, and the angle brackets (
<and>) are not allowed. - domain_
id str - The ID of the account that the central network belongs to.
- enterprise_
project_ strid - The ID of the enterprise project that the central network belongs to. Changing this parameter will create a new resource.
- name str
- The name of the central network. The name can contain 1 to 64 characters, only letters, digits, underscores (_) and hyphens (-) are allowed.
- region str
- The region in which the central network is managed.
- state str
- The status of the central network. The value can be AVAILABLE, CREATING, UPDATING, FAILED, DELETING, DELETED or RESTORING.
- timeouts
Cc
Central Network V3Timeouts Args - updated_
at str - The latest update time of the central network.
- cc
Central StringNetwork V3Id - The resource ID in UUID format. Equal to the central network ID.
- created
At String - The creation time of the central network.
- default
Plane StringId - The ID of the default central network plane.
- description String
- The description of the central network.
The description can contain a maximum of 255 characters, and the angle brackets (
<and>) are not allowed. - domain
Id String - The ID of the account that the central network belongs to.
- enterprise
Project StringId - The ID of the enterprise project that the central network belongs to. Changing this parameter will create a new resource.
- name String
- The name of the central network. The name can contain 1 to 64 characters, only letters, digits, underscores (_) and hyphens (-) are allowed.
- region String
- The region in which the central network is managed.
- state String
- The status of the central network. The value can be AVAILABLE, CREATING, UPDATING, FAILED, DELETING, DELETED or RESTORING.
- timeouts Property Map
- updated
At String - The latest update time of the central network.
Supporting Types
CcCentralNetworkV3Timeouts, CcCentralNetworkV3TimeoutsArgs
Import
The central network can be imported using the id, e.g.
$ pulumi import opentelekomcloud:index/ccCentralNetworkV3:CcCentralNetworkV3 test 0ce123456a00f2591fabc00385ff1234
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- opentelekomcloud opentelekomcloud/terraform-provider-opentelekomcloud
- License
- Notes
- This Pulumi package is based on the
opentelekomcloudTerraform Provider.
published on Thursday, Jul 23, 2026 by opentelekomcloud