1. Packages
  2. Packages
  3. Opentelekomcloud Provider
  4. API Docs
  5. CcGlobalConnectionBandwidthV3
Viewing docs for opentelekomcloud 1.37.1
published on Thursday, Jul 9, 2026 by opentelekomcloud
Viewing docs for opentelekomcloud 1.37.1
published on Thursday, Jul 9, 2026 by opentelekomcloud

    Up-to-date reference of API arguments for Cloud Connect Global Connection Bandwidth you can get at documentation portal

    Manages a Cloud Connect (CC) global connection bandwidth resource within OpenTelekomCloud.

    A global connection bandwidth provides the network capacity that connects instances (such as cloud connections, global EIPs, and central networks) across regions. It can be dedicated to a single instance or shared by multiple instances.

    The global connection bandwidth 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.CcGlobalConnectionBandwidthV3("test", {
        name: "gcb-demo",
        description: "managed by terraform",
        type: "Region",
        bordercross: false,
        chargeMode: "bwd",
        size: 5,
    });
    
    import pulumi
    import pulumi_opentelekomcloud as opentelekomcloud
    
    test = opentelekomcloud.CcGlobalConnectionBandwidthV3("test",
        name="gcb-demo",
        description="managed by terraform",
        type="Region",
        bordercross=False,
        charge_mode="bwd",
        size=5)
    
    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.NewCcGlobalConnectionBandwidthV3(ctx, "test", &opentelekomcloud.CcGlobalConnectionBandwidthV3Args{
    			Name:        pulumi.String("gcb-demo"),
    			Description: pulumi.String("managed by terraform"),
    			Type:        pulumi.String("Region"),
    			Bordercross: pulumi.Bool(false),
    			ChargeMode:  pulumi.String("bwd"),
    			Size:        pulumi.Float64(5),
    		})
    		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.CcGlobalConnectionBandwidthV3("test", new()
        {
            Name = "gcb-demo",
            Description = "managed by terraform",
            Type = "Region",
            Bordercross = false,
            ChargeMode = "bwd",
            Size = 5,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.opentelekomcloud.CcGlobalConnectionBandwidthV3;
    import com.pulumi.opentelekomcloud.CcGlobalConnectionBandwidthV3Args;
    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 CcGlobalConnectionBandwidthV3("test", CcGlobalConnectionBandwidthV3Args.builder()
                .name("gcb-demo")
                .description("managed by terraform")
                .type("Region")
                .bordercross(false)
                .chargeMode("bwd")
                .size(5.0)
                .build());
    
        }
    }
    
    resources:
      test:
        type: opentelekomcloud:CcGlobalConnectionBandwidthV3
        properties:
          name: gcb-demo
          description: managed by terraform
          type: Region
          bordercross: false
          chargeMode: bwd
          size: 5
    
    Example coming soon!
    

    Create CcGlobalConnectionBandwidthV3 Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new CcGlobalConnectionBandwidthV3(name: string, args: CcGlobalConnectionBandwidthV3Args, opts?: CustomResourceOptions);
    @overload
    def CcGlobalConnectionBandwidthV3(resource_name: str,
                                      args: CcGlobalConnectionBandwidthV3Args,
                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def CcGlobalConnectionBandwidthV3(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      size: Optional[float] = None,
                                      bordercross: Optional[bool] = None,
                                      charge_mode: Optional[str] = None,
                                      type: Optional[str] = None,
                                      cc_global_connection_bandwidth_v3_id: Optional[str] = None,
                                      description: Optional[str] = None,
                                      enterprise_project_id: Optional[str] = None,
                                      local_area: Optional[str] = None,
                                      name: Optional[str] = None,
                                      remote_area: Optional[str] = None,
                                      binding_service: Optional[str] = None,
                                      sla_level: Optional[str] = None,
                                      spec_code_id: Optional[str] = None)
    func NewCcGlobalConnectionBandwidthV3(ctx *Context, name string, args CcGlobalConnectionBandwidthV3Args, opts ...ResourceOption) (*CcGlobalConnectionBandwidthV3, error)
    public CcGlobalConnectionBandwidthV3(string name, CcGlobalConnectionBandwidthV3Args args, CustomResourceOptions? opts = null)
    public CcGlobalConnectionBandwidthV3(String name, CcGlobalConnectionBandwidthV3Args args)
    public CcGlobalConnectionBandwidthV3(String name, CcGlobalConnectionBandwidthV3Args args, CustomResourceOptions options)
    
    type: opentelekomcloud:CcGlobalConnectionBandwidthV3
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "opentelekomcloud_ccglobalconnectionbandwidthv3" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args CcGlobalConnectionBandwidthV3Args
    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 CcGlobalConnectionBandwidthV3Args
    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 CcGlobalConnectionBandwidthV3Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CcGlobalConnectionBandwidthV3Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CcGlobalConnectionBandwidthV3Args
    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 ccGlobalConnectionBandwidthV3Resource = new Opentelekomcloud.CcGlobalConnectionBandwidthV3("ccGlobalConnectionBandwidthV3Resource", new()
    {
        Size = 0,
        Bordercross = false,
        ChargeMode = "string",
        Type = "string",
        CcGlobalConnectionBandwidthV3Id = "string",
        Description = "string",
        EnterpriseProjectId = "string",
        LocalArea = "string",
        Name = "string",
        RemoteArea = "string",
        BindingService = "string",
        SlaLevel = "string",
        SpecCodeId = "string",
    });
    
    example, err := opentelekomcloud.NewCcGlobalConnectionBandwidthV3(ctx, "ccGlobalConnectionBandwidthV3Resource", &opentelekomcloud.CcGlobalConnectionBandwidthV3Args{
    	Size:                            pulumi.Float64(0),
    	Bordercross:                     pulumi.Bool(false),
    	ChargeMode:                      pulumi.String("string"),
    	Type:                            pulumi.String("string"),
    	CcGlobalConnectionBandwidthV3Id: pulumi.String("string"),
    	Description:                     pulumi.String("string"),
    	EnterpriseProjectId:             pulumi.String("string"),
    	LocalArea:                       pulumi.String("string"),
    	Name:                            pulumi.String("string"),
    	RemoteArea:                      pulumi.String("string"),
    	BindingService:                  pulumi.String("string"),
    	SlaLevel:                        pulumi.String("string"),
    	SpecCodeId:                      pulumi.String("string"),
    })
    
    resource "opentelekomcloud_ccglobalconnectionbandwidthv3" "ccGlobalConnectionBandwidthV3Resource" {
      size                                 = 0
      bordercross                          = false
      charge_mode                          = "string"
      type                                 = "string"
      cc_global_connection_bandwidth_v3_id = "string"
      description                          = "string"
      enterprise_project_id                = "string"
      local_area                           = "string"
      name                                 = "string"
      remote_area                          = "string"
      binding_service                      = "string"
      sla_level                            = "string"
      spec_code_id                         = "string"
    }
    
    var ccGlobalConnectionBandwidthV3Resource = new CcGlobalConnectionBandwidthV3("ccGlobalConnectionBandwidthV3Resource", CcGlobalConnectionBandwidthV3Args.builder()
        .size(0.0)
        .bordercross(false)
        .chargeMode("string")
        .type("string")
        .ccGlobalConnectionBandwidthV3Id("string")
        .description("string")
        .enterpriseProjectId("string")
        .localArea("string")
        .name("string")
        .remoteArea("string")
        .bindingService("string")
        .slaLevel("string")
        .specCodeId("string")
        .build());
    
    cc_global_connection_bandwidth_v3_resource = opentelekomcloud.CcGlobalConnectionBandwidthV3("ccGlobalConnectionBandwidthV3Resource",
        size=float(0),
        bordercross=False,
        charge_mode="string",
        type="string",
        cc_global_connection_bandwidth_v3_id="string",
        description="string",
        enterprise_project_id="string",
        local_area="string",
        name="string",
        remote_area="string",
        binding_service="string",
        sla_level="string",
        spec_code_id="string")
    
    const ccGlobalConnectionBandwidthV3Resource = new opentelekomcloud.CcGlobalConnectionBandwidthV3("ccGlobalConnectionBandwidthV3Resource", {
        size: 0,
        bordercross: false,
        chargeMode: "string",
        type: "string",
        ccGlobalConnectionBandwidthV3Id: "string",
        description: "string",
        enterpriseProjectId: "string",
        localArea: "string",
        name: "string",
        remoteArea: "string",
        bindingService: "string",
        slaLevel: "string",
        specCodeId: "string",
    });
    
    type: opentelekomcloud:CcGlobalConnectionBandwidthV3
    properties:
        bindingService: string
        bordercross: false
        ccGlobalConnectionBandwidthV3Id: string
        chargeMode: string
        description: string
        enterpriseProjectId: string
        localArea: string
        name: string
        remoteArea: string
        size: 0
        slaLevel: string
        specCodeId: string
        type: string
    

    CcGlobalConnectionBandwidthV3 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 CcGlobalConnectionBandwidthV3 resource accepts the following input properties:

    Bordercross bool
    Whether the bandwidth is used for cross-border connections. Changing this parameter will create a new resource.
    ChargeMode string
    The billing option. The value can be bwd (billing by bandwidth), 95 (standard 95th percentile billing) or 95avr (enhanced 95th percentile billing).
    Size double
    The bandwidth capacity, in Mbit/s. The value ranges from 2 to 300.
    Type string
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.
    BindingService string
    The service binding type. The value can be CC, GEIP, GCN, GSN or ALL.
    CcGlobalConnectionBandwidthV3Id string
    The connection ID.
    Description string
    The description of the global connection bandwidth. The angle brackets (< and >) are not allowed.
    EnterpriseProjectId string
    The ID of the enterprise project that the global connection bandwidth belongs to. Changing this parameter will create a new resource.
    LocalArea string
    The local access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    Name string
    The name of the global connection bandwidth.
    RemoteArea string
    The remote access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    SlaLevel string
    The service class of the bandwidth. The value can be Pt (Platinum), Au (Gold) or Ag (Silver).
    SpecCodeId string
    The UUID of the line specification code.
    Bordercross bool
    Whether the bandwidth is used for cross-border connections. Changing this parameter will create a new resource.
    ChargeMode string
    The billing option. The value can be bwd (billing by bandwidth), 95 (standard 95th percentile billing) or 95avr (enhanced 95th percentile billing).
    Size float64
    The bandwidth capacity, in Mbit/s. The value ranges from 2 to 300.
    Type string
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.
    BindingService string
    The service binding type. The value can be CC, GEIP, GCN, GSN or ALL.
    CcGlobalConnectionBandwidthV3Id string
    The connection ID.
    Description string
    The description of the global connection bandwidth. The angle brackets (< and >) are not allowed.
    EnterpriseProjectId string
    The ID of the enterprise project that the global connection bandwidth belongs to. Changing this parameter will create a new resource.
    LocalArea string
    The local access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    Name string
    The name of the global connection bandwidth.
    RemoteArea string
    The remote access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    SlaLevel string
    The service class of the bandwidth. The value can be Pt (Platinum), Au (Gold) or Ag (Silver).
    SpecCodeId string
    The UUID of the line specification code.
    bordercross bool
    Whether the bandwidth is used for cross-border connections. Changing this parameter will create a new resource.
    charge_mode string
    The billing option. The value can be bwd (billing by bandwidth), 95 (standard 95th percentile billing) or 95avr (enhanced 95th percentile billing).
    size number
    The bandwidth capacity, in Mbit/s. The value ranges from 2 to 300.
    type string
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.
    binding_service string
    The service binding type. The value can be CC, GEIP, GCN, GSN or ALL.
    cc_global_connection_bandwidth_v3_id string
    The connection ID.
    description string
    The description of the global connection bandwidth. The angle brackets (< and >) are not allowed.
    enterprise_project_id string
    The ID of the enterprise project that the global connection bandwidth belongs to. Changing this parameter will create a new resource.
    local_area string
    The local access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    name string
    The name of the global connection bandwidth.
    remote_area string
    The remote access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    sla_level string
    The service class of the bandwidth. The value can be Pt (Platinum), Au (Gold) or Ag (Silver).
    spec_code_id string
    The UUID of the line specification code.
    bordercross Boolean
    Whether the bandwidth is used for cross-border connections. Changing this parameter will create a new resource.
    chargeMode String
    The billing option. The value can be bwd (billing by bandwidth), 95 (standard 95th percentile billing) or 95avr (enhanced 95th percentile billing).
    size Double
    The bandwidth capacity, in Mbit/s. The value ranges from 2 to 300.
    type String
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.
    bindingService String
    The service binding type. The value can be CC, GEIP, GCN, GSN or ALL.
    ccGlobalConnectionBandwidthV3Id String
    The connection ID.
    description String
    The description of the global connection bandwidth. The angle brackets (< and >) are not allowed.
    enterpriseProjectId String
    The ID of the enterprise project that the global connection bandwidth belongs to. Changing this parameter will create a new resource.
    localArea String
    The local access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    name String
    The name of the global connection bandwidth.
    remoteArea String
    The remote access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    slaLevel String
    The service class of the bandwidth. The value can be Pt (Platinum), Au (Gold) or Ag (Silver).
    specCodeId String
    The UUID of the line specification code.
    bordercross boolean
    Whether the bandwidth is used for cross-border connections. Changing this parameter will create a new resource.
    chargeMode string
    The billing option. The value can be bwd (billing by bandwidth), 95 (standard 95th percentile billing) or 95avr (enhanced 95th percentile billing).
    size number
    The bandwidth capacity, in Mbit/s. The value ranges from 2 to 300.
    type string
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.
    bindingService string
    The service binding type. The value can be CC, GEIP, GCN, GSN or ALL.
    ccGlobalConnectionBandwidthV3Id string
    The connection ID.
    description string
    The description of the global connection bandwidth. The angle brackets (< and >) are not allowed.
    enterpriseProjectId string
    The ID of the enterprise project that the global connection bandwidth belongs to. Changing this parameter will create a new resource.
    localArea string
    The local access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    name string
    The name of the global connection bandwidth.
    remoteArea string
    The remote access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    slaLevel string
    The service class of the bandwidth. The value can be Pt (Platinum), Au (Gold) or Ag (Silver).
    specCodeId string
    The UUID of the line specification code.
    bordercross bool
    Whether the bandwidth is used for cross-border connections. Changing this parameter will create a new resource.
    charge_mode str
    The billing option. The value can be bwd (billing by bandwidth), 95 (standard 95th percentile billing) or 95avr (enhanced 95th percentile billing).
    size float
    The bandwidth capacity, in Mbit/s. The value ranges from 2 to 300.
    type str
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.
    binding_service str
    The service binding type. The value can be CC, GEIP, GCN, GSN or ALL.
    cc_global_connection_bandwidth_v3_id str
    The connection ID.
    description str
    The description of the global connection bandwidth. The angle brackets (< and >) are not allowed.
    enterprise_project_id str
    The ID of the enterprise project that the global connection bandwidth belongs to. Changing this parameter will create a new resource.
    local_area str
    The local access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    name str
    The name of the global connection bandwidth.
    remote_area str
    The remote access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    sla_level str
    The service class of the bandwidth. The value can be Pt (Platinum), Au (Gold) or Ag (Silver).
    spec_code_id str
    The UUID of the line specification code.
    bordercross Boolean
    Whether the bandwidth is used for cross-border connections. Changing this parameter will create a new resource.
    chargeMode String
    The billing option. The value can be bwd (billing by bandwidth), 95 (standard 95th percentile billing) or 95avr (enhanced 95th percentile billing).
    size Number
    The bandwidth capacity, in Mbit/s. The value ranges from 2 to 300.
    type String
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.
    bindingService String
    The service binding type. The value can be CC, GEIP, GCN, GSN or ALL.
    ccGlobalConnectionBandwidthV3Id String
    The connection ID.
    description String
    The description of the global connection bandwidth. The angle brackets (< and >) are not allowed.
    enterpriseProjectId String
    The ID of the enterprise project that the global connection bandwidth belongs to. Changing this parameter will create a new resource.
    localArea String
    The local access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    name String
    The name of the global connection bandwidth.
    remoteArea String
    The remote access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    slaLevel String
    The service class of the bandwidth. The value can be Pt (Platinum), Au (Gold) or Ag (Silver).
    specCodeId String
    The UUID of the line specification code.

    Outputs

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

    AdminState string
    The status of the global connection bandwidth. The value can be NORMAL or FREEZED.
    CreatedAt string
    The creation time of the global connection bandwidth.
    DirectionalConnections List<CcGlobalConnectionBandwidthV3DirectionalConnection>
    The directional connections of the global connection bandwidth. The directional_connections structure is documented below.
    DomainId string
    The ID of the account that the global connection bandwidth belongs to.
    EnableShare bool
    Whether the bandwidth can be shared by multiple instances.
    EpsId string
    The ID of the enterprise project that the global connection bandwidth belongs to.
    Frozen bool
    Whether the global connection bandwidth is frozen.
    Id string
    The provider-assigned unique ID for this managed resource.
    Instances List<CcGlobalConnectionBandwidthV3Instance>
    The instances associated with the global connection bandwidth. The instances structure is documented below.
    LocalSiteCode string
    The local access point code.
    Region string
    The region in which the global connection bandwidth is managed.
    RemoteSiteCode string
    The remote access point code.
    UpdatedAt string
    The latest update time of the global connection bandwidth.
    AdminState string
    The status of the global connection bandwidth. The value can be NORMAL or FREEZED.
    CreatedAt string
    The creation time of the global connection bandwidth.
    DirectionalConnections []CcGlobalConnectionBandwidthV3DirectionalConnection
    The directional connections of the global connection bandwidth. The directional_connections structure is documented below.
    DomainId string
    The ID of the account that the global connection bandwidth belongs to.
    EnableShare bool
    Whether the bandwidth can be shared by multiple instances.
    EpsId string
    The ID of the enterprise project that the global connection bandwidth belongs to.
    Frozen bool
    Whether the global connection bandwidth is frozen.
    Id string
    The provider-assigned unique ID for this managed resource.
    Instances []CcGlobalConnectionBandwidthV3Instance
    The instances associated with the global connection bandwidth. The instances structure is documented below.
    LocalSiteCode string
    The local access point code.
    Region string
    The region in which the global connection bandwidth is managed.
    RemoteSiteCode string
    The remote access point code.
    UpdatedAt string
    The latest update time of the global connection bandwidth.
    admin_state string
    The status of the global connection bandwidth. The value can be NORMAL or FREEZED.
    created_at string
    The creation time of the global connection bandwidth.
    directional_connections list(object)
    The directional connections of the global connection bandwidth. The directional_connections structure is documented below.
    domain_id string
    The ID of the account that the global connection bandwidth belongs to.
    enable_share bool
    Whether the bandwidth can be shared by multiple instances.
    eps_id string
    The ID of the enterprise project that the global connection bandwidth belongs to.
    frozen bool
    Whether the global connection bandwidth is frozen.
    id string
    The provider-assigned unique ID for this managed resource.
    instances list(object)
    The instances associated with the global connection bandwidth. The instances structure is documented below.
    local_site_code string
    The local access point code.
    region string
    The region in which the global connection bandwidth is managed.
    remote_site_code string
    The remote access point code.
    updated_at string
    The latest update time of the global connection bandwidth.
    adminState String
    The status of the global connection bandwidth. The value can be NORMAL or FREEZED.
    createdAt String
    The creation time of the global connection bandwidth.
    directionalConnections List<CcGlobalConnectionBandwidthV3DirectionalConnection>
    The directional connections of the global connection bandwidth. The directional_connections structure is documented below.
    domainId String
    The ID of the account that the global connection bandwidth belongs to.
    enableShare Boolean
    Whether the bandwidth can be shared by multiple instances.
    epsId String
    The ID of the enterprise project that the global connection bandwidth belongs to.
    frozen Boolean
    Whether the global connection bandwidth is frozen.
    id String
    The provider-assigned unique ID for this managed resource.
    instances List<CcGlobalConnectionBandwidthV3Instance>
    The instances associated with the global connection bandwidth. The instances structure is documented below.
    localSiteCode String
    The local access point code.
    region String
    The region in which the global connection bandwidth is managed.
    remoteSiteCode String
    The remote access point code.
    updatedAt String
    The latest update time of the global connection bandwidth.
    adminState string
    The status of the global connection bandwidth. The value can be NORMAL or FREEZED.
    createdAt string
    The creation time of the global connection bandwidth.
    directionalConnections CcGlobalConnectionBandwidthV3DirectionalConnection[]
    The directional connections of the global connection bandwidth. The directional_connections structure is documented below.
    domainId string
    The ID of the account that the global connection bandwidth belongs to.
    enableShare boolean
    Whether the bandwidth can be shared by multiple instances.
    epsId string
    The ID of the enterprise project that the global connection bandwidth belongs to.
    frozen boolean
    Whether the global connection bandwidth is frozen.
    id string
    The provider-assigned unique ID for this managed resource.
    instances CcGlobalConnectionBandwidthV3Instance[]
    The instances associated with the global connection bandwidth. The instances structure is documented below.
    localSiteCode string
    The local access point code.
    region string
    The region in which the global connection bandwidth is managed.
    remoteSiteCode string
    The remote access point code.
    updatedAt string
    The latest update time of the global connection bandwidth.
    admin_state str
    The status of the global connection bandwidth. The value can be NORMAL or FREEZED.
    created_at str
    The creation time of the global connection bandwidth.
    directional_connections Sequence[CcGlobalConnectionBandwidthV3DirectionalConnection]
    The directional connections of the global connection bandwidth. The directional_connections structure is documented below.
    domain_id str
    The ID of the account that the global connection bandwidth belongs to.
    enable_share bool
    Whether the bandwidth can be shared by multiple instances.
    eps_id str
    The ID of the enterprise project that the global connection bandwidth belongs to.
    frozen bool
    Whether the global connection bandwidth is frozen.
    id str
    The provider-assigned unique ID for this managed resource.
    instances Sequence[CcGlobalConnectionBandwidthV3Instance]
    The instances associated with the global connection bandwidth. The instances structure is documented below.
    local_site_code str
    The local access point code.
    region str
    The region in which the global connection bandwidth is managed.
    remote_site_code str
    The remote access point code.
    updated_at str
    The latest update time of the global connection bandwidth.
    adminState String
    The status of the global connection bandwidth. The value can be NORMAL or FREEZED.
    createdAt String
    The creation time of the global connection bandwidth.
    directionalConnections List<Property Map>
    The directional connections of the global connection bandwidth. The directional_connections structure is documented below.
    domainId String
    The ID of the account that the global connection bandwidth belongs to.
    enableShare Boolean
    Whether the bandwidth can be shared by multiple instances.
    epsId String
    The ID of the enterprise project that the global connection bandwidth belongs to.
    frozen Boolean
    Whether the global connection bandwidth is frozen.
    id String
    The provider-assigned unique ID for this managed resource.
    instances List<Property Map>
    The instances associated with the global connection bandwidth. The instances structure is documented below.
    localSiteCode String
    The local access point code.
    region String
    The region in which the global connection bandwidth is managed.
    remoteSiteCode String
    The remote access point code.
    updatedAt String
    The latest update time of the global connection bandwidth.

    Look up Existing CcGlobalConnectionBandwidthV3 Resource

    Get an existing CcGlobalConnectionBandwidthV3 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?: CcGlobalConnectionBandwidthV3State, opts?: CustomResourceOptions): CcGlobalConnectionBandwidthV3
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            admin_state: Optional[str] = None,
            binding_service: Optional[str] = None,
            bordercross: Optional[bool] = None,
            cc_global_connection_bandwidth_v3_id: Optional[str] = None,
            charge_mode: Optional[str] = None,
            created_at: Optional[str] = None,
            description: Optional[str] = None,
            directional_connections: Optional[Sequence[CcGlobalConnectionBandwidthV3DirectionalConnectionArgs]] = None,
            domain_id: Optional[str] = None,
            enable_share: Optional[bool] = None,
            enterprise_project_id: Optional[str] = None,
            eps_id: Optional[str] = None,
            frozen: Optional[bool] = None,
            instances: Optional[Sequence[CcGlobalConnectionBandwidthV3InstanceArgs]] = None,
            local_area: Optional[str] = None,
            local_site_code: Optional[str] = None,
            name: Optional[str] = None,
            region: Optional[str] = None,
            remote_area: Optional[str] = None,
            remote_site_code: Optional[str] = None,
            size: Optional[float] = None,
            sla_level: Optional[str] = None,
            spec_code_id: Optional[str] = None,
            type: Optional[str] = None,
            updated_at: Optional[str] = None) -> CcGlobalConnectionBandwidthV3
    func GetCcGlobalConnectionBandwidthV3(ctx *Context, name string, id IDInput, state *CcGlobalConnectionBandwidthV3State, opts ...ResourceOption) (*CcGlobalConnectionBandwidthV3, error)
    public static CcGlobalConnectionBandwidthV3 Get(string name, Input<string> id, CcGlobalConnectionBandwidthV3State? state, CustomResourceOptions? opts = null)
    public static CcGlobalConnectionBandwidthV3 get(String name, Output<String> id, CcGlobalConnectionBandwidthV3State state, CustomResourceOptions options)
    resources:  _:    type: opentelekomcloud:CcGlobalConnectionBandwidthV3    get:      id: ${id}
    import {
      to = opentelekomcloud_ccglobalconnectionbandwidthv3.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:
    AdminState string
    The status of the global connection bandwidth. The value can be NORMAL or FREEZED.
    BindingService string
    The service binding type. The value can be CC, GEIP, GCN, GSN or ALL.
    Bordercross bool
    Whether the bandwidth is used for cross-border connections. Changing this parameter will create a new resource.
    CcGlobalConnectionBandwidthV3Id string
    The connection ID.
    ChargeMode string
    The billing option. The value can be bwd (billing by bandwidth), 95 (standard 95th percentile billing) or 95avr (enhanced 95th percentile billing).
    CreatedAt string
    The creation time of the global connection bandwidth.
    Description string
    The description of the global connection bandwidth. The angle brackets (< and >) are not allowed.
    DirectionalConnections List<CcGlobalConnectionBandwidthV3DirectionalConnection>
    The directional connections of the global connection bandwidth. The directional_connections structure is documented below.
    DomainId string
    The ID of the account that the global connection bandwidth belongs to.
    EnableShare bool
    Whether the bandwidth can be shared by multiple instances.
    EnterpriseProjectId string
    The ID of the enterprise project that the global connection bandwidth belongs to. Changing this parameter will create a new resource.
    EpsId string
    The ID of the enterprise project that the global connection bandwidth belongs to.
    Frozen bool
    Whether the global connection bandwidth is frozen.
    Instances List<CcGlobalConnectionBandwidthV3Instance>
    The instances associated with the global connection bandwidth. The instances structure is documented below.
    LocalArea string
    The local access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    LocalSiteCode string
    The local access point code.
    Name string
    The name of the global connection bandwidth.
    Region string
    The region in which the global connection bandwidth is managed.
    RemoteArea string
    The remote access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    RemoteSiteCode string
    The remote access point code.
    Size double
    The bandwidth capacity, in Mbit/s. The value ranges from 2 to 300.
    SlaLevel string
    The service class of the bandwidth. The value can be Pt (Platinum), Au (Gold) or Ag (Silver).
    SpecCodeId string
    The UUID of the line specification code.
    Type string
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.
    UpdatedAt string
    The latest update time of the global connection bandwidth.
    AdminState string
    The status of the global connection bandwidth. The value can be NORMAL or FREEZED.
    BindingService string
    The service binding type. The value can be CC, GEIP, GCN, GSN or ALL.
    Bordercross bool
    Whether the bandwidth is used for cross-border connections. Changing this parameter will create a new resource.
    CcGlobalConnectionBandwidthV3Id string
    The connection ID.
    ChargeMode string
    The billing option. The value can be bwd (billing by bandwidth), 95 (standard 95th percentile billing) or 95avr (enhanced 95th percentile billing).
    CreatedAt string
    The creation time of the global connection bandwidth.
    Description string
    The description of the global connection bandwidth. The angle brackets (< and >) are not allowed.
    DirectionalConnections []CcGlobalConnectionBandwidthV3DirectionalConnectionArgs
    The directional connections of the global connection bandwidth. The directional_connections structure is documented below.
    DomainId string
    The ID of the account that the global connection bandwidth belongs to.
    EnableShare bool
    Whether the bandwidth can be shared by multiple instances.
    EnterpriseProjectId string
    The ID of the enterprise project that the global connection bandwidth belongs to. Changing this parameter will create a new resource.
    EpsId string
    The ID of the enterprise project that the global connection bandwidth belongs to.
    Frozen bool
    Whether the global connection bandwidth is frozen.
    Instances []CcGlobalConnectionBandwidthV3InstanceArgs
    The instances associated with the global connection bandwidth. The instances structure is documented below.
    LocalArea string
    The local access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    LocalSiteCode string
    The local access point code.
    Name string
    The name of the global connection bandwidth.
    Region string
    The region in which the global connection bandwidth is managed.
    RemoteArea string
    The remote access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    RemoteSiteCode string
    The remote access point code.
    Size float64
    The bandwidth capacity, in Mbit/s. The value ranges from 2 to 300.
    SlaLevel string
    The service class of the bandwidth. The value can be Pt (Platinum), Au (Gold) or Ag (Silver).
    SpecCodeId string
    The UUID of the line specification code.
    Type string
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.
    UpdatedAt string
    The latest update time of the global connection bandwidth.
    admin_state string
    The status of the global connection bandwidth. The value can be NORMAL or FREEZED.
    binding_service string
    The service binding type. The value can be CC, GEIP, GCN, GSN or ALL.
    bordercross bool
    Whether the bandwidth is used for cross-border connections. Changing this parameter will create a new resource.
    cc_global_connection_bandwidth_v3_id string
    The connection ID.
    charge_mode string
    The billing option. The value can be bwd (billing by bandwidth), 95 (standard 95th percentile billing) or 95avr (enhanced 95th percentile billing).
    created_at string
    The creation time of the global connection bandwidth.
    description string
    The description of the global connection bandwidth. The angle brackets (< and >) are not allowed.
    directional_connections list(object)
    The directional connections of the global connection bandwidth. The directional_connections structure is documented below.
    domain_id string
    The ID of the account that the global connection bandwidth belongs to.
    enable_share bool
    Whether the bandwidth can be shared by multiple instances.
    enterprise_project_id string
    The ID of the enterprise project that the global connection bandwidth belongs to. Changing this parameter will create a new resource.
    eps_id string
    The ID of the enterprise project that the global connection bandwidth belongs to.
    frozen bool
    Whether the global connection bandwidth is frozen.
    instances list(object)
    The instances associated with the global connection bandwidth. The instances structure is documented below.
    local_area string
    The local access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    local_site_code string
    The local access point code.
    name string
    The name of the global connection bandwidth.
    region string
    The region in which the global connection bandwidth is managed.
    remote_area string
    The remote access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    remote_site_code string
    The remote access point code.
    size number
    The bandwidth capacity, in Mbit/s. The value ranges from 2 to 300.
    sla_level string
    The service class of the bandwidth. The value can be Pt (Platinum), Au (Gold) or Ag (Silver).
    spec_code_id string
    The UUID of the line specification code.
    type string
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.
    updated_at string
    The latest update time of the global connection bandwidth.
    adminState String
    The status of the global connection bandwidth. The value can be NORMAL or FREEZED.
    bindingService String
    The service binding type. The value can be CC, GEIP, GCN, GSN or ALL.
    bordercross Boolean
    Whether the bandwidth is used for cross-border connections. Changing this parameter will create a new resource.
    ccGlobalConnectionBandwidthV3Id String
    The connection ID.
    chargeMode String
    The billing option. The value can be bwd (billing by bandwidth), 95 (standard 95th percentile billing) or 95avr (enhanced 95th percentile billing).
    createdAt String
    The creation time of the global connection bandwidth.
    description String
    The description of the global connection bandwidth. The angle brackets (< and >) are not allowed.
    directionalConnections List<CcGlobalConnectionBandwidthV3DirectionalConnection>
    The directional connections of the global connection bandwidth. The directional_connections structure is documented below.
    domainId String
    The ID of the account that the global connection bandwidth belongs to.
    enableShare Boolean
    Whether the bandwidth can be shared by multiple instances.
    enterpriseProjectId String
    The ID of the enterprise project that the global connection bandwidth belongs to. Changing this parameter will create a new resource.
    epsId String
    The ID of the enterprise project that the global connection bandwidth belongs to.
    frozen Boolean
    Whether the global connection bandwidth is frozen.
    instances List<CcGlobalConnectionBandwidthV3Instance>
    The instances associated with the global connection bandwidth. The instances structure is documented below.
    localArea String
    The local access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    localSiteCode String
    The local access point code.
    name String
    The name of the global connection bandwidth.
    region String
    The region in which the global connection bandwidth is managed.
    remoteArea String
    The remote access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    remoteSiteCode String
    The remote access point code.
    size Double
    The bandwidth capacity, in Mbit/s. The value ranges from 2 to 300.
    slaLevel String
    The service class of the bandwidth. The value can be Pt (Platinum), Au (Gold) or Ag (Silver).
    specCodeId String
    The UUID of the line specification code.
    type String
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.
    updatedAt String
    The latest update time of the global connection bandwidth.
    adminState string
    The status of the global connection bandwidth. The value can be NORMAL or FREEZED.
    bindingService string
    The service binding type. The value can be CC, GEIP, GCN, GSN or ALL.
    bordercross boolean
    Whether the bandwidth is used for cross-border connections. Changing this parameter will create a new resource.
    ccGlobalConnectionBandwidthV3Id string
    The connection ID.
    chargeMode string
    The billing option. The value can be bwd (billing by bandwidth), 95 (standard 95th percentile billing) or 95avr (enhanced 95th percentile billing).
    createdAt string
    The creation time of the global connection bandwidth.
    description string
    The description of the global connection bandwidth. The angle brackets (< and >) are not allowed.
    directionalConnections CcGlobalConnectionBandwidthV3DirectionalConnection[]
    The directional connections of the global connection bandwidth. The directional_connections structure is documented below.
    domainId string
    The ID of the account that the global connection bandwidth belongs to.
    enableShare boolean
    Whether the bandwidth can be shared by multiple instances.
    enterpriseProjectId string
    The ID of the enterprise project that the global connection bandwidth belongs to. Changing this parameter will create a new resource.
    epsId string
    The ID of the enterprise project that the global connection bandwidth belongs to.
    frozen boolean
    Whether the global connection bandwidth is frozen.
    instances CcGlobalConnectionBandwidthV3Instance[]
    The instances associated with the global connection bandwidth. The instances structure is documented below.
    localArea string
    The local access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    localSiteCode string
    The local access point code.
    name string
    The name of the global connection bandwidth.
    region string
    The region in which the global connection bandwidth is managed.
    remoteArea string
    The remote access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    remoteSiteCode string
    The remote access point code.
    size number
    The bandwidth capacity, in Mbit/s. The value ranges from 2 to 300.
    slaLevel string
    The service class of the bandwidth. The value can be Pt (Platinum), Au (Gold) or Ag (Silver).
    specCodeId string
    The UUID of the line specification code.
    type string
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.
    updatedAt string
    The latest update time of the global connection bandwidth.
    admin_state str
    The status of the global connection bandwidth. The value can be NORMAL or FREEZED.
    binding_service str
    The service binding type. The value can be CC, GEIP, GCN, GSN or ALL.
    bordercross bool
    Whether the bandwidth is used for cross-border connections. Changing this parameter will create a new resource.
    cc_global_connection_bandwidth_v3_id str
    The connection ID.
    charge_mode str
    The billing option. The value can be bwd (billing by bandwidth), 95 (standard 95th percentile billing) or 95avr (enhanced 95th percentile billing).
    created_at str
    The creation time of the global connection bandwidth.
    description str
    The description of the global connection bandwidth. The angle brackets (< and >) are not allowed.
    directional_connections Sequence[CcGlobalConnectionBandwidthV3DirectionalConnectionArgs]
    The directional connections of the global connection bandwidth. The directional_connections structure is documented below.
    domain_id str
    The ID of the account that the global connection bandwidth belongs to.
    enable_share bool
    Whether the bandwidth can be shared by multiple instances.
    enterprise_project_id str
    The ID of the enterprise project that the global connection bandwidth belongs to. Changing this parameter will create a new resource.
    eps_id str
    The ID of the enterprise project that the global connection bandwidth belongs to.
    frozen bool
    Whether the global connection bandwidth is frozen.
    instances Sequence[CcGlobalConnectionBandwidthV3InstanceArgs]
    The instances associated with the global connection bandwidth. The instances structure is documented below.
    local_area str
    The local access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    local_site_code str
    The local access point code.
    name str
    The name of the global connection bandwidth.
    region str
    The region in which the global connection bandwidth is managed.
    remote_area str
    The remote access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    remote_site_code str
    The remote access point code.
    size float
    The bandwidth capacity, in Mbit/s. The value ranges from 2 to 300.
    sla_level str
    The service class of the bandwidth. The value can be Pt (Platinum), Au (Gold) or Ag (Silver).
    spec_code_id str
    The UUID of the line specification code.
    type str
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.
    updated_at str
    The latest update time of the global connection bandwidth.
    adminState String
    The status of the global connection bandwidth. The value can be NORMAL or FREEZED.
    bindingService String
    The service binding type. The value can be CC, GEIP, GCN, GSN or ALL.
    bordercross Boolean
    Whether the bandwidth is used for cross-border connections. Changing this parameter will create a new resource.
    ccGlobalConnectionBandwidthV3Id String
    The connection ID.
    chargeMode String
    The billing option. The value can be bwd (billing by bandwidth), 95 (standard 95th percentile billing) or 95avr (enhanced 95th percentile billing).
    createdAt String
    The creation time of the global connection bandwidth.
    description String
    The description of the global connection bandwidth. The angle brackets (< and >) are not allowed.
    directionalConnections List<Property Map>
    The directional connections of the global connection bandwidth. The directional_connections structure is documented below.
    domainId String
    The ID of the account that the global connection bandwidth belongs to.
    enableShare Boolean
    Whether the bandwidth can be shared by multiple instances.
    enterpriseProjectId String
    The ID of the enterprise project that the global connection bandwidth belongs to. Changing this parameter will create a new resource.
    epsId String
    The ID of the enterprise project that the global connection bandwidth belongs to.
    frozen Boolean
    Whether the global connection bandwidth is frozen.
    instances List<Property Map>
    The instances associated with the global connection bandwidth. The instances structure is documented below.
    localArea String
    The local access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    localSiteCode String
    The local access point code.
    name String
    The name of the global connection bandwidth.
    region String
    The region in which the global connection bandwidth is managed.
    remoteArea String
    The remote access point. The value can contain 1 to 64 characters, only letters, digits, underscores (_), hyphens (-) and periods (.) are allowed. Changing this parameter will create a new resource.
    remoteSiteCode String
    The remote access point code.
    size Number
    The bandwidth capacity, in Mbit/s. The value ranges from 2 to 300.
    slaLevel String
    The service class of the bandwidth. The value can be Pt (Platinum), Au (Gold) or Ag (Silver).
    specCodeId String
    The UUID of the line specification code.
    type String
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.
    updatedAt String
    The latest update time of the global connection bandwidth.

    Supporting Types

    CcGlobalConnectionBandwidthV3DirectionalConnection, CcGlobalConnectionBandwidthV3DirectionalConnectionArgs

    Id string
    The connection ID.
    LocalSiteCode string
    The local access point code.
    Name string
    The name of the global connection bandwidth.
    RemoteSiteCode string
    The remote access point code.
    Id string
    The connection ID.
    LocalSiteCode string
    The local access point code.
    Name string
    The name of the global connection bandwidth.
    RemoteSiteCode string
    The remote access point code.
    id string
    The connection ID.
    local_site_code string
    The local access point code.
    name string
    The name of the global connection bandwidth.
    remote_site_code string
    The remote access point code.
    id String
    The connection ID.
    localSiteCode String
    The local access point code.
    name String
    The name of the global connection bandwidth.
    remoteSiteCode String
    The remote access point code.
    id string
    The connection ID.
    localSiteCode string
    The local access point code.
    name string
    The name of the global connection bandwidth.
    remoteSiteCode string
    The remote access point code.
    id str
    The connection ID.
    local_site_code str
    The local access point code.
    name str
    The name of the global connection bandwidth.
    remote_site_code str
    The remote access point code.
    id String
    The connection ID.
    localSiteCode String
    The local access point code.
    name String
    The name of the global connection bandwidth.
    remoteSiteCode String
    The remote access point code.

    CcGlobalConnectionBandwidthV3Instance, CcGlobalConnectionBandwidthV3InstanceArgs

    Id string
    The connection ID.
    ProjectId string
    The project ID of the instance.
    RegionId string
    The region ID of the instance.
    Type string
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.
    Id string
    The connection ID.
    ProjectId string
    The project ID of the instance.
    RegionId string
    The region ID of the instance.
    Type string
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.
    id string
    The connection ID.
    project_id string
    The project ID of the instance.
    region_id string
    The region ID of the instance.
    type string
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.
    id String
    The connection ID.
    projectId String
    The project ID of the instance.
    regionId String
    The region ID of the instance.
    type String
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.
    id string
    The connection ID.
    projectId string
    The project ID of the instance.
    regionId string
    The region ID of the instance.
    type string
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.
    id str
    The connection ID.
    project_id str
    The project ID of the instance.
    region_id str
    The region ID of the instance.
    type str
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.
    id String
    The connection ID.
    projectId String
    The project ID of the instance.
    regionId String
    The region ID of the instance.
    type String
    The bandwidth type. The value can be Area, TrsArea, SubArea or Region. Changing this parameter will create a new resource.

    Import

    The global connection bandwidth can be imported using the id, e.g.

    $ pulumi import opentelekomcloud:index/ccGlobalConnectionBandwidthV3:CcGlobalConnectionBandwidthV3 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.1
    published on Thursday, Jul 9, 2026 by opentelekomcloud

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial