1. Packages
  2. Packages
  3. Opentelekomcloud Provider
  4. API Docs
  5. getCcCentralNetworkConnectionsV3
Viewing docs for opentelekomcloud 1.37.3
published on Friday, Jul 31, 2026 by opentelekomcloud
Viewing docs for opentelekomcloud 1.37.3
published on Friday, Jul 31, 2026 by opentelekomcloud

    Up-to-date reference of API arguments for Cloud Connect central network connections you can get at documentation portal

    Use this data source to query the connections on a Cloud Connect (CC) central network within OpenTelekomCloud.

    The central network APIs are account-level (domain-scoped). Make sure the credentials used by the provider have permission to query Cloud Connect resources.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as opentelekomcloud from "@pulumi/opentelekomcloud";
    
    const config = new pulumi.Config();
    const centralNetworkId = config.requireObject<any>("centralNetworkId");
    const test = opentelekomcloud.getCcCentralNetworkConnectionsV3({
        centralNetworkId: centralNetworkId,
    });
    
    import pulumi
    import pulumi_opentelekomcloud as opentelekomcloud
    
    config = pulumi.Config()
    central_network_id = config.require_object("centralNetworkId")
    test = opentelekomcloud.get_cc_central_network_connections_v3(central_network_id=central_network_id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/opentelekomcloud/opentelekomcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		centralNetworkId := cfg.RequireObject("centralNetworkId")
    		_, err := opentelekomcloud.GetCcCentralNetworkConnectionsV3(ctx, &opentelekomcloud.GetCcCentralNetworkConnectionsV3Args{
    			CentralNetworkId: centralNetworkId,
    		}, nil)
    		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 config = new Config();
        var centralNetworkId = config.RequireObject<dynamic>("centralNetworkId");
        var test = Opentelekomcloud.GetCcCentralNetworkConnectionsV3.Invoke(new()
        {
            CentralNetworkId = centralNetworkId,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.opentelekomcloud.OpentelekomcloudFunctions;
    import com.pulumi.opentelekomcloud.inputs.GetCcCentralNetworkConnectionsV3Args;
    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) {
            final var config = ctx.config();
            final var centralNetworkId = config.get("centralNetworkId");
            final var test = OpentelekomcloudFunctions.getCcCentralNetworkConnectionsV3(GetCcCentralNetworkConnectionsV3Args.builder()
                .centralNetworkId(centralNetworkId)
                .build());
    
        }
    }
    
    configuration:
      centralNetworkId:
        type: dynamic
    variables:
      test:
        fn::invoke:
          function: opentelekomcloud:getCcCentralNetworkConnectionsV3
          arguments:
            centralNetworkId: ${centralNetworkId}
    
    Example coming soon!
    

    Using getCcCentralNetworkConnectionsV3

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getCcCentralNetworkConnectionsV3(args: GetCcCentralNetworkConnectionsV3Args, opts?: InvokeOptions): Promise<GetCcCentralNetworkConnectionsV3Result>
    function getCcCentralNetworkConnectionsV3Output(args: GetCcCentralNetworkConnectionsV3OutputArgs, opts?: InvokeOptions): Output<GetCcCentralNetworkConnectionsV3Result>
    def get_cc_central_network_connections_v3(bandwidth_type: Optional[str] = None,
                                              central_network_id: Optional[str] = None,
                                              connection_id: Optional[str] = None,
                                              connection_type: Optional[str] = None,
                                              global_connection_bandwidth_id: Optional[str] = None,
                                              id: Optional[str] = None,
                                              is_cross_region: Optional[str] = None,
                                              name: Optional[str] = None,
                                              region: Optional[str] = None,
                                              state: Optional[str] = None,
                                              opts: Optional[InvokeOptions] = None) -> GetCcCentralNetworkConnectionsV3Result
    def get_cc_central_network_connections_v3_output(bandwidth_type: pulumi.Input[Optional[str]] = None,
                                              central_network_id: pulumi.Input[Optional[str]] = None,
                                              connection_id: pulumi.Input[Optional[str]] = None,
                                              connection_type: pulumi.Input[Optional[str]] = None,
                                              global_connection_bandwidth_id: pulumi.Input[Optional[str]] = None,
                                              id: pulumi.Input[Optional[str]] = None,
                                              is_cross_region: pulumi.Input[Optional[str]] = None,
                                              name: pulumi.Input[Optional[str]] = None,
                                              region: pulumi.Input[Optional[str]] = None,
                                              state: pulumi.Input[Optional[str]] = None,
                                              opts: Optional[InvokeOptions] = None) -> Output[GetCcCentralNetworkConnectionsV3Result]
    func GetCcCentralNetworkConnectionsV3(ctx *Context, args *GetCcCentralNetworkConnectionsV3Args, opts ...InvokeOption) (*GetCcCentralNetworkConnectionsV3Result, error)
    func GetCcCentralNetworkConnectionsV3Output(ctx *Context, args *GetCcCentralNetworkConnectionsV3OutputArgs, opts ...InvokeOption) GetCcCentralNetworkConnectionsV3ResultOutput

    > Note: This function is named GetCcCentralNetworkConnectionsV3 in the Go SDK.

    public static class GetCcCentralNetworkConnectionsV3 
    {
        public static Task<GetCcCentralNetworkConnectionsV3Result> InvokeAsync(GetCcCentralNetworkConnectionsV3Args args, InvokeOptions? opts = null)
        public static Output<GetCcCentralNetworkConnectionsV3Result> Invoke(GetCcCentralNetworkConnectionsV3InvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCcCentralNetworkConnectionsV3Result> getCcCentralNetworkConnectionsV3(GetCcCentralNetworkConnectionsV3Args args, InvokeOptions options)
    public static Output<GetCcCentralNetworkConnectionsV3Result> getCcCentralNetworkConnectionsV3(GetCcCentralNetworkConnectionsV3Args args, InvokeOptions options)
    
    fn::invoke:
      function: opentelekomcloud:index/getCcCentralNetworkConnectionsV3:getCcCentralNetworkConnectionsV3
      arguments:
        # arguments dictionary
    data "opentelekomcloud_get_cc_central_network_connections_v3" "name" {
        # arguments
    }

    The following arguments are supported:

    CentralNetworkId string
    The ID of the central network to which the connections belong.
    BandwidthType string
    The bandwidth type used to query. The value can be BandwidthPackage or TestBandwidth.
    ConnectionId string
    The ID of the connection used to query.
    ConnectionType string
    The connection type used to query. The value can be ER-ER, ER-GDGW or ER-ER_ROUTE_TABLE.
    GlobalConnectionBandwidthId string
    The global connection bandwidth ID used to query.
    Id string
    The instance ID.
    IsCrossRegion string
    Whether to query only cross-region connections. The value can be true or false.
    Name string
    The name of the connection used to query.
    Region string
    The region in which to query the data source. If omitted, the provider-level region will be used.
    State string
    The status of the connection used to query.
    CentralNetworkId string
    The ID of the central network to which the connections belong.
    BandwidthType string
    The bandwidth type used to query. The value can be BandwidthPackage or TestBandwidth.
    ConnectionId string
    The ID of the connection used to query.
    ConnectionType string
    The connection type used to query. The value can be ER-ER, ER-GDGW or ER-ER_ROUTE_TABLE.
    GlobalConnectionBandwidthId string
    The global connection bandwidth ID used to query.
    Id string
    The instance ID.
    IsCrossRegion string
    Whether to query only cross-region connections. The value can be true or false.
    Name string
    The name of the connection used to query.
    Region string
    The region in which to query the data source. If omitted, the provider-level region will be used.
    State string
    The status of the connection used to query.
    central_network_id string
    The ID of the central network to which the connections belong.
    bandwidth_type string
    The bandwidth type used to query. The value can be BandwidthPackage or TestBandwidth.
    connection_id string
    The ID of the connection used to query.
    connection_type string
    The connection type used to query. The value can be ER-ER, ER-GDGW or ER-ER_ROUTE_TABLE.
    global_connection_bandwidth_id string
    The global connection bandwidth ID used to query.
    id string
    The instance ID.
    is_cross_region string
    Whether to query only cross-region connections. The value can be true or false.
    name string
    The name of the connection used to query.
    region string
    The region in which to query the data source. If omitted, the provider-level region will be used.
    state string
    The status of the connection used to query.
    centralNetworkId String
    The ID of the central network to which the connections belong.
    bandwidthType String
    The bandwidth type used to query. The value can be BandwidthPackage or TestBandwidth.
    connectionId String
    The ID of the connection used to query.
    connectionType String
    The connection type used to query. The value can be ER-ER, ER-GDGW or ER-ER_ROUTE_TABLE.
    globalConnectionBandwidthId String
    The global connection bandwidth ID used to query.
    id String
    The instance ID.
    isCrossRegion String
    Whether to query only cross-region connections. The value can be true or false.
    name String
    The name of the connection used to query.
    region String
    The region in which to query the data source. If omitted, the provider-level region will be used.
    state String
    The status of the connection used to query.
    centralNetworkId string
    The ID of the central network to which the connections belong.
    bandwidthType string
    The bandwidth type used to query. The value can be BandwidthPackage or TestBandwidth.
    connectionId string
    The ID of the connection used to query.
    connectionType string
    The connection type used to query. The value can be ER-ER, ER-GDGW or ER-ER_ROUTE_TABLE.
    globalConnectionBandwidthId string
    The global connection bandwidth ID used to query.
    id string
    The instance ID.
    isCrossRegion string
    Whether to query only cross-region connections. The value can be true or false.
    name string
    The name of the connection used to query.
    region string
    The region in which to query the data source. If omitted, the provider-level region will be used.
    state string
    The status of the connection used to query.
    central_network_id str
    The ID of the central network to which the connections belong.
    bandwidth_type str
    The bandwidth type used to query. The value can be BandwidthPackage or TestBandwidth.
    connection_id str
    The ID of the connection used to query.
    connection_type str
    The connection type used to query. The value can be ER-ER, ER-GDGW or ER-ER_ROUTE_TABLE.
    global_connection_bandwidth_id str
    The global connection bandwidth ID used to query.
    id str
    The instance ID.
    is_cross_region str
    Whether to query only cross-region connections. The value can be true or false.
    name str
    The name of the connection used to query.
    region str
    The region in which to query the data source. If omitted, the provider-level region will be used.
    state str
    The status of the connection used to query.
    centralNetworkId String
    The ID of the central network to which the connections belong.
    bandwidthType String
    The bandwidth type used to query. The value can be BandwidthPackage or TestBandwidth.
    connectionId String
    The ID of the connection used to query.
    connectionType String
    The connection type used to query. The value can be ER-ER, ER-GDGW or ER-ER_ROUTE_TABLE.
    globalConnectionBandwidthId String
    The global connection bandwidth ID used to query.
    id String
    The instance ID.
    isCrossRegion String
    Whether to query only cross-region connections. The value can be true or false.
    name String
    The name of the connection used to query.
    region String
    The region in which to query the data source. If omitted, the provider-level region will be used.
    state String
    The status of the connection used to query.

    getCcCentralNetworkConnectionsV3 Result

    The following output properties are available:

    CentralNetworkId string
    The ID of the central network that the connection belongs to.
    Connections List<GetCcCentralNetworkConnectionsV3Connection>
    The list of connections that match the filter parameters. The connections structure is documented below.
    Id string
    The instance ID.
    Region string
    BandwidthType string
    The bandwidth type.
    ConnectionId string
    ConnectionType string
    The connection type.
    GlobalConnectionBandwidthId string
    The ID of the global connection bandwidth bound to the connection.
    IsCrossRegion string
    Name string
    The connection name.
    State string
    The status of the connection.
    CentralNetworkId string
    The ID of the central network that the connection belongs to.
    Connections []GetCcCentralNetworkConnectionsV3Connection
    The list of connections that match the filter parameters. The connections structure is documented below.
    Id string
    The instance ID.
    Region string
    BandwidthType string
    The bandwidth type.
    ConnectionId string
    ConnectionType string
    The connection type.
    GlobalConnectionBandwidthId string
    The ID of the global connection bandwidth bound to the connection.
    IsCrossRegion string
    Name string
    The connection name.
    State string
    The status of the connection.
    central_network_id string
    The ID of the central network that the connection belongs to.
    connections list(object)
    The list of connections that match the filter parameters. The connections structure is documented below.
    id string
    The instance ID.
    region string
    bandwidth_type string
    The bandwidth type.
    connection_id string
    connection_type string
    The connection type.
    global_connection_bandwidth_id string
    The ID of the global connection bandwidth bound to the connection.
    is_cross_region string
    name string
    The connection name.
    state string
    The status of the connection.
    centralNetworkId String
    The ID of the central network that the connection belongs to.
    connections List<GetCcCentralNetworkConnectionsV3Connection>
    The list of connections that match the filter parameters. The connections structure is documented below.
    id String
    The instance ID.
    region String
    bandwidthType String
    The bandwidth type.
    connectionId String
    connectionType String
    The connection type.
    globalConnectionBandwidthId String
    The ID of the global connection bandwidth bound to the connection.
    isCrossRegion String
    name String
    The connection name.
    state String
    The status of the connection.
    centralNetworkId string
    The ID of the central network that the connection belongs to.
    connections GetCcCentralNetworkConnectionsV3Connection[]
    The list of connections that match the filter parameters. The connections structure is documented below.
    id string
    The instance ID.
    region string
    bandwidthType string
    The bandwidth type.
    connectionId string
    connectionType string
    The connection type.
    globalConnectionBandwidthId string
    The ID of the global connection bandwidth bound to the connection.
    isCrossRegion string
    name string
    The connection name.
    state string
    The status of the connection.
    central_network_id str
    The ID of the central network that the connection belongs to.
    connections Sequence[GetCcCentralNetworkConnectionsV3Connection]
    The list of connections that match the filter parameters. The connections structure is documented below.
    id str
    The instance ID.
    region str
    bandwidth_type str
    The bandwidth type.
    connection_id str
    connection_type str
    The connection type.
    global_connection_bandwidth_id str
    The ID of the global connection bandwidth bound to the connection.
    is_cross_region str
    name str
    The connection name.
    state str
    The status of the connection.
    centralNetworkId String
    The ID of the central network that the connection belongs to.
    connections List<Property Map>
    The list of connections that match the filter parameters. The connections structure is documented below.
    id String
    The instance ID.
    region String
    bandwidthType String
    The bandwidth type.
    connectionId String
    connectionType String
    The connection type.
    globalConnectionBandwidthId String
    The ID of the global connection bandwidth bound to the connection.
    isCrossRegion String
    name String
    The connection name.
    state String
    The status of the connection.

    Supporting Types

    GetCcCentralNetworkConnectionsV3Connection

    BandwidthSize double
    The bandwidth size in Mbit/s.
    BandwidthType string
    The bandwidth type used to query. The value can be BandwidthPackage or TestBandwidth.
    CentralNetworkId string
    The ID of the central network to which the connections belong.
    CentralNetworkPlaneId string
    The ID of the central network plane that the connection belongs to.
    ConnectionPointPairs List<GetCcCentralNetworkConnectionsV3ConnectionConnectionPointPair>
    The two connection endpoints. The connection_point_pair structure is documented below.
    ConnectionType string
    The connection type used to query. The value can be ER-ER, ER-GDGW or ER-ER_ROUTE_TABLE.
    CreatedAt string
    The creation time of the connection.
    Description string
    The description of the connection.
    DomainId string
    The ID of the account that the connection belongs to.
    EnterpriseProjectId string
    The enterprise project ID of the connection.
    GlobalConnectionBandwidthId string
    The global connection bandwidth ID used to query.
    Id string
    The instance ID.
    IsFrozen bool
    Whether the connection is frozen.
    Name string
    The name of the connection used to query.
    State string
    The status of the connection used to query.
    UpdatedAt string
    The latest update time of the connection.
    BandwidthSize float64
    The bandwidth size in Mbit/s.
    BandwidthType string
    The bandwidth type used to query. The value can be BandwidthPackage or TestBandwidth.
    CentralNetworkId string
    The ID of the central network to which the connections belong.
    CentralNetworkPlaneId string
    The ID of the central network plane that the connection belongs to.
    ConnectionPointPairs []GetCcCentralNetworkConnectionsV3ConnectionConnectionPointPair
    The two connection endpoints. The connection_point_pair structure is documented below.
    ConnectionType string
    The connection type used to query. The value can be ER-ER, ER-GDGW or ER-ER_ROUTE_TABLE.
    CreatedAt string
    The creation time of the connection.
    Description string
    The description of the connection.
    DomainId string
    The ID of the account that the connection belongs to.
    EnterpriseProjectId string
    The enterprise project ID of the connection.
    GlobalConnectionBandwidthId string
    The global connection bandwidth ID used to query.
    Id string
    The instance ID.
    IsFrozen bool
    Whether the connection is frozen.
    Name string
    The name of the connection used to query.
    State string
    The status of the connection used to query.
    UpdatedAt string
    The latest update time of the connection.
    bandwidth_size number
    The bandwidth size in Mbit/s.
    bandwidth_type string
    The bandwidth type used to query. The value can be BandwidthPackage or TestBandwidth.
    central_network_id string
    The ID of the central network to which the connections belong.
    central_network_plane_id string
    The ID of the central network plane that the connection belongs to.
    connection_point_pairs list(object)
    The two connection endpoints. The connection_point_pair structure is documented below.
    connection_type string
    The connection type used to query. The value can be ER-ER, ER-GDGW or ER-ER_ROUTE_TABLE.
    created_at string
    The creation time of the connection.
    description string
    The description of the connection.
    domain_id string
    The ID of the account that the connection belongs to.
    enterprise_project_id string
    The enterprise project ID of the connection.
    global_connection_bandwidth_id string
    The global connection bandwidth ID used to query.
    id string
    The instance ID.
    is_frozen bool
    Whether the connection is frozen.
    name string
    The name of the connection used to query.
    state string
    The status of the connection used to query.
    updated_at string
    The latest update time of the connection.
    bandwidthSize Double
    The bandwidth size in Mbit/s.
    bandwidthType String
    The bandwidth type used to query. The value can be BandwidthPackage or TestBandwidth.
    centralNetworkId String
    The ID of the central network to which the connections belong.
    centralNetworkPlaneId String
    The ID of the central network plane that the connection belongs to.
    connectionPointPairs List<GetCcCentralNetworkConnectionsV3ConnectionConnectionPointPair>
    The two connection endpoints. The connection_point_pair structure is documented below.
    connectionType String
    The connection type used to query. The value can be ER-ER, ER-GDGW or ER-ER_ROUTE_TABLE.
    createdAt String
    The creation time of the connection.
    description String
    The description of the connection.
    domainId String
    The ID of the account that the connection belongs to.
    enterpriseProjectId String
    The enterprise project ID of the connection.
    globalConnectionBandwidthId String
    The global connection bandwidth ID used to query.
    id String
    The instance ID.
    isFrozen Boolean
    Whether the connection is frozen.
    name String
    The name of the connection used to query.
    state String
    The status of the connection used to query.
    updatedAt String
    The latest update time of the connection.
    bandwidthSize number
    The bandwidth size in Mbit/s.
    bandwidthType string
    The bandwidth type used to query. The value can be BandwidthPackage or TestBandwidth.
    centralNetworkId string
    The ID of the central network to which the connections belong.
    centralNetworkPlaneId string
    The ID of the central network plane that the connection belongs to.
    connectionPointPairs GetCcCentralNetworkConnectionsV3ConnectionConnectionPointPair[]
    The two connection endpoints. The connection_point_pair structure is documented below.
    connectionType string
    The connection type used to query. The value can be ER-ER, ER-GDGW or ER-ER_ROUTE_TABLE.
    createdAt string
    The creation time of the connection.
    description string
    The description of the connection.
    domainId string
    The ID of the account that the connection belongs to.
    enterpriseProjectId string
    The enterprise project ID of the connection.
    globalConnectionBandwidthId string
    The global connection bandwidth ID used to query.
    id string
    The instance ID.
    isFrozen boolean
    Whether the connection is frozen.
    name string
    The name of the connection used to query.
    state string
    The status of the connection used to query.
    updatedAt string
    The latest update time of the connection.
    bandwidth_size float
    The bandwidth size in Mbit/s.
    bandwidth_type str
    The bandwidth type used to query. The value can be BandwidthPackage or TestBandwidth.
    central_network_id str
    The ID of the central network to which the connections belong.
    central_network_plane_id str
    The ID of the central network plane that the connection belongs to.
    connection_point_pairs Sequence[GetCcCentralNetworkConnectionsV3ConnectionConnectionPointPair]
    The two connection endpoints. The connection_point_pair structure is documented below.
    connection_type str
    The connection type used to query. The value can be ER-ER, ER-GDGW or ER-ER_ROUTE_TABLE.
    created_at str
    The creation time of the connection.
    description str
    The description of the connection.
    domain_id str
    The ID of the account that the connection belongs to.
    enterprise_project_id str
    The enterprise project ID of the connection.
    global_connection_bandwidth_id str
    The global connection bandwidth ID used to query.
    id str
    The instance ID.
    is_frozen bool
    Whether the connection is frozen.
    name str
    The name of the connection used to query.
    state str
    The status of the connection used to query.
    updated_at str
    The latest update time of the connection.
    bandwidthSize Number
    The bandwidth size in Mbit/s.
    bandwidthType String
    The bandwidth type used to query. The value can be BandwidthPackage or TestBandwidth.
    centralNetworkId String
    The ID of the central network to which the connections belong.
    centralNetworkPlaneId String
    The ID of the central network plane that the connection belongs to.
    connectionPointPairs List<Property Map>
    The two connection endpoints. The connection_point_pair structure is documented below.
    connectionType String
    The connection type used to query. The value can be ER-ER, ER-GDGW or ER-ER_ROUTE_TABLE.
    createdAt String
    The creation time of the connection.
    description String
    The description of the connection.
    domainId String
    The ID of the account that the connection belongs to.
    enterpriseProjectId String
    The enterprise project ID of the connection.
    globalConnectionBandwidthId String
    The global connection bandwidth ID used to query.
    id String
    The instance ID.
    isFrozen Boolean
    Whether the connection is frozen.
    name String
    The name of the connection used to query.
    state String
    The status of the connection used to query.
    updatedAt String
    The latest update time of the connection.

    GetCcCentralNetworkConnectionsV3ConnectionConnectionPointPair

    Id string
    The instance ID.
    InstanceId string
    The connection endpoint ID.
    ParentInstanceId string
    The parent resource ID.
    ProjectId string
    The project ID.
    RegionId string
    The region ID.
    SiteCode string
    The geographic site code.
    Type string
    The resource type. The value can be ER, GDGW or ER_ROUTE_TABLE.
    Id string
    The instance ID.
    InstanceId string
    The connection endpoint ID.
    ParentInstanceId string
    The parent resource ID.
    ProjectId string
    The project ID.
    RegionId string
    The region ID.
    SiteCode string
    The geographic site code.
    Type string
    The resource type. The value can be ER, GDGW or ER_ROUTE_TABLE.
    id string
    The instance ID.
    instance_id string
    The connection endpoint ID.
    parent_instance_id string
    The parent resource ID.
    project_id string
    The project ID.
    region_id string
    The region ID.
    site_code string
    The geographic site code.
    type string
    The resource type. The value can be ER, GDGW or ER_ROUTE_TABLE.
    id String
    The instance ID.
    instanceId String
    The connection endpoint ID.
    parentInstanceId String
    The parent resource ID.
    projectId String
    The project ID.
    regionId String
    The region ID.
    siteCode String
    The geographic site code.
    type String
    The resource type. The value can be ER, GDGW or ER_ROUTE_TABLE.
    id string
    The instance ID.
    instanceId string
    The connection endpoint ID.
    parentInstanceId string
    The parent resource ID.
    projectId string
    The project ID.
    regionId string
    The region ID.
    siteCode string
    The geographic site code.
    type string
    The resource type. The value can be ER, GDGW or ER_ROUTE_TABLE.
    id str
    The instance ID.
    instance_id str
    The connection endpoint ID.
    parent_instance_id str
    The parent resource ID.
    project_id str
    The project ID.
    region_id str
    The region ID.
    site_code str
    The geographic site code.
    type str
    The resource type. The value can be ER, GDGW or ER_ROUTE_TABLE.
    id String
    The instance ID.
    instanceId String
    The connection endpoint ID.
    parentInstanceId String
    The parent resource ID.
    projectId String
    The project ID.
    regionId String
    The region ID.
    siteCode String
    The geographic site code.
    type String
    The resource type. The value can be ER, GDGW or ER_ROUTE_TABLE.

    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.3
    published on Friday, Jul 31, 2026 by opentelekomcloud

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial