1. Packages
  2. Packages
  3. Opentelekomcloud Provider
  4. API Docs
  5. CcCentralNetworkV3
Viewing docs for opentelekomcloud 1.37.2
published on Thursday, Jul 23, 2026 by opentelekomcloud
Viewing docs for opentelekomcloud 1.37.2
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:

    CcCentralNetworkV3Id string
    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.
    EnterpriseProjectId string
    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 CcCentralNetworkV3Timeouts
    CcCentralNetworkV3Id string
    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.
    EnterpriseProjectId string
    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 CcCentralNetworkV3TimeoutsArgs
    cc_central_network_v3_id string
    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_id string
    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
    ccCentralNetworkV3Id String
    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.
    enterpriseProjectId String
    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 CcCentralNetworkV3Timeouts
    ccCentralNetworkV3Id string
    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.
    enterpriseProjectId string
    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 CcCentralNetworkV3Timeouts
    cc_central_network_v3_id str
    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_id str
    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 CcCentralNetworkV3TimeoutsArgs
    ccCentralNetworkV3Id String
    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.
    enterpriseProjectId String
    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:

    CreatedAt string
    The creation time of the central network.
    DefaultPlaneId string
    The ID of the default central network plane.
    DomainId 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.
    UpdatedAt string
    The latest update time of the central network.
    CreatedAt string
    The creation time of the central network.
    DefaultPlaneId string
    The ID of the default central network plane.
    DomainId 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.
    UpdatedAt string
    The latest update time of the central network.
    created_at string
    The creation time of the central network.
    default_plane_id string
    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.
    createdAt String
    The creation time of the central network.
    defaultPlaneId String
    The ID of the default central network plane.
    domainId 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.
    updatedAt String
    The latest update time of the central network.
    createdAt string
    The creation time of the central network.
    defaultPlaneId string
    The ID of the default central network plane.
    domainId 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.
    updatedAt string
    The latest update time of the central network.
    created_at str
    The creation time of the central network.
    default_plane_id str
    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.
    createdAt String
    The creation time of the central network.
    defaultPlaneId String
    The ID of the default central network plane.
    domainId 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.
    updatedAt 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) -> CcCentralNetworkV3
    func 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.
    The following state arguments are supported:
    CcCentralNetworkV3Id string
    The resource ID in UUID format. Equal to the central network ID.
    CreatedAt string
    The creation time of the central network.
    DefaultPlaneId string
    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.
    DomainId string
    The ID of the account that the central network belongs to.
    EnterpriseProjectId string
    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 CcCentralNetworkV3Timeouts
    UpdatedAt string
    The latest update time of the central network.
    CcCentralNetworkV3Id string
    The resource ID in UUID format. Equal to the central network ID.
    CreatedAt string
    The creation time of the central network.
    DefaultPlaneId string
    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.
    DomainId string
    The ID of the account that the central network belongs to.
    EnterpriseProjectId string
    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 CcCentralNetworkV3TimeoutsArgs
    UpdatedAt string
    The latest update time of the central network.
    cc_central_network_v3_id string
    The resource ID in UUID format. Equal to the central network ID.
    created_at string
    The creation time of the central network.
    default_plane_id string
    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_id string
    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.
    ccCentralNetworkV3Id String
    The resource ID in UUID format. Equal to the central network ID.
    createdAt String
    The creation time of the central network.
    defaultPlaneId String
    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.
    domainId String
    The ID of the account that the central network belongs to.
    enterpriseProjectId String
    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 CcCentralNetworkV3Timeouts
    updatedAt String
    The latest update time of the central network.
    ccCentralNetworkV3Id string
    The resource ID in UUID format. Equal to the central network ID.
    createdAt string
    The creation time of the central network.
    defaultPlaneId string
    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.
    domainId string
    The ID of the account that the central network belongs to.
    enterpriseProjectId string
    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 CcCentralNetworkV3Timeouts
    updatedAt string
    The latest update time of the central network.
    cc_central_network_v3_id str
    The resource ID in UUID format. Equal to the central network ID.
    created_at str
    The creation time of the central network.
    default_plane_id str
    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_id str
    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 CcCentralNetworkV3TimeoutsArgs
    updated_at str
    The latest update time of the central network.
    ccCentralNetworkV3Id String
    The resource ID in UUID format. Equal to the central network ID.
    createdAt String
    The creation time of the central network.
    defaultPlaneId String
    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.
    domainId String
    The ID of the account that the central network belongs to.
    enterpriseProjectId String
    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
    updatedAt String
    The latest update time of the central network.

    Supporting Types

    CcCentralNetworkV3Timeouts, CcCentralNetworkV3TimeoutsArgs

    Create string
    Delete string
    Update string
    Create string
    Delete string
    Update string
    create string
    delete string
    update string
    create String
    delete String
    update String
    create string
    delete string
    update string
    create str
    delete str
    update str
    create String
    delete String
    update String

    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 opentelekomcloud Terraform Provider.
    Viewing docs for opentelekomcloud 1.37.2
    published on Thursday, Jul 23, 2026 by opentelekomcloud

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial