1. Packages
  2. Opentelekomcloud Provider
  3. API Docs
  4. getDirectConnectV2
opentelekomcloud 1.36.52 published on Thursday, Nov 6, 2025 by opentelekomcloud

opentelekomcloud.getDirectConnectV2

Start a Neo task
Explain and create an opentelekomcloud.getDirectConnectV2 resource
opentelekomcloud logo
opentelekomcloud 1.36.52 published on Thursday, Nov 6, 2025 by opentelekomcloud

    Up-to-date reference of API arguments for DCaaS connection you can get at documentation portal

    Use this data source to get details about a specific Direct Connect (DCaaS) connection.

    Example usage


    import * as pulumi from "@pulumi/pulumi";
    import * as opentelekomcloud from "@pulumi/opentelekomcloud";
    
    const directConnect = opentelekomcloud.getDirectConnectV2({
        id: "direct_connect_id",
    });
    
    import pulumi
    import pulumi_opentelekomcloud as opentelekomcloud
    
    direct_connect = opentelekomcloud.get_direct_connect_v2(id="direct_connect_id")
    
    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.LookupDirectConnectV2(ctx, &opentelekomcloud.LookupDirectConnectV2Args{
    			Id: pulumi.StringRef("direct_connect_id"),
    		}, 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 directConnect = Opentelekomcloud.GetDirectConnectV2.Invoke(new()
        {
            Id = "direct_connect_id",
        });
    
    });
    
    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.GetDirectConnectV2Args;
    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 directConnect = OpentelekomcloudFunctions.getDirectConnectV2(GetDirectConnectV2Args.builder()
                .id("direct_connect_id")
                .build());
    
        }
    }
    
    variables:
      directConnect:
        fn::invoke:
          function: opentelekomcloud:getDirectConnectV2
          arguments:
            id: direct_connect_id
    

    Using getDirectConnectV2

    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 getDirectConnectV2(args: GetDirectConnectV2Args, opts?: InvokeOptions): Promise<GetDirectConnectV2Result>
    function getDirectConnectV2Output(args: GetDirectConnectV2OutputArgs, opts?: InvokeOptions): Output<GetDirectConnectV2Result>
    def get_direct_connect_v2(bandwidth: Optional[float] = None,
                              description: Optional[str] = None,
                              device_id: Optional[str] = None,
                              id: Optional[str] = None,
                              location: Optional[str] = None,
                              name: Optional[str] = None,
                              port_type: Optional[str] = None,
                              region: Optional[str] = None,
                              vlan: Optional[float] = None,
                              opts: Optional[InvokeOptions] = None) -> GetDirectConnectV2Result
    def get_direct_connect_v2_output(bandwidth: Optional[pulumi.Input[float]] = None,
                              description: Optional[pulumi.Input[str]] = None,
                              device_id: Optional[pulumi.Input[str]] = None,
                              id: Optional[pulumi.Input[str]] = None,
                              location: Optional[pulumi.Input[str]] = None,
                              name: Optional[pulumi.Input[str]] = None,
                              port_type: Optional[pulumi.Input[str]] = None,
                              region: Optional[pulumi.Input[str]] = None,
                              vlan: Optional[pulumi.Input[float]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetDirectConnectV2Result]
    func LookupDirectConnectV2(ctx *Context, args *LookupDirectConnectV2Args, opts ...InvokeOption) (*LookupDirectConnectV2Result, error)
    func LookupDirectConnectV2Output(ctx *Context, args *LookupDirectConnectV2OutputArgs, opts ...InvokeOption) LookupDirectConnectV2ResultOutput

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

    public static class GetDirectConnectV2 
    {
        public static Task<GetDirectConnectV2Result> InvokeAsync(GetDirectConnectV2Args args, InvokeOptions? opts = null)
        public static Output<GetDirectConnectV2Result> Invoke(GetDirectConnectV2InvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDirectConnectV2Result> getDirectConnectV2(GetDirectConnectV2Args args, InvokeOptions options)
    public static Output<GetDirectConnectV2Result> getDirectConnectV2(GetDirectConnectV2Args args, InvokeOptions options)
    
    fn::invoke:
      function: opentelekomcloud:index/getDirectConnectV2:getDirectConnectV2
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Bandwidth double
    (Number) - Specifies the bandwidth of the connection in Mbit/s.
    Description string
    (String) - Provides supplementary information about the connection.
    DeviceId string
    (String) - Specifies the gateway device ID of the connection.
    Id string
    Specifies the direct connection ID.
    Location string
    (String) - Specifies the connection access location.
    Name string
    (String) - Specifies the connection name.
    PortType string
    (String) - Specifies the type of the port used by the connection. The value can be 1G, 10G, 40G, or 100G.
    Region string
    Vlan double
    (Number) - Specifies the VLAN ID of the connection.
    Bandwidth float64
    (Number) - Specifies the bandwidth of the connection in Mbit/s.
    Description string
    (String) - Provides supplementary information about the connection.
    DeviceId string
    (String) - Specifies the gateway device ID of the connection.
    Id string
    Specifies the direct connection ID.
    Location string
    (String) - Specifies the connection access location.
    Name string
    (String) - Specifies the connection name.
    PortType string
    (String) - Specifies the type of the port used by the connection. The value can be 1G, 10G, 40G, or 100G.
    Region string
    Vlan float64
    (Number) - Specifies the VLAN ID of the connection.
    bandwidth Double
    (Number) - Specifies the bandwidth of the connection in Mbit/s.
    description String
    (String) - Provides supplementary information about the connection.
    deviceId String
    (String) - Specifies the gateway device ID of the connection.
    id String
    Specifies the direct connection ID.
    location String
    (String) - Specifies the connection access location.
    name String
    (String) - Specifies the connection name.
    portType String
    (String) - Specifies the type of the port used by the connection. The value can be 1G, 10G, 40G, or 100G.
    region String
    vlan Double
    (Number) - Specifies the VLAN ID of the connection.
    bandwidth number
    (Number) - Specifies the bandwidth of the connection in Mbit/s.
    description string
    (String) - Provides supplementary information about the connection.
    deviceId string
    (String) - Specifies the gateway device ID of the connection.
    id string
    Specifies the direct connection ID.
    location string
    (String) - Specifies the connection access location.
    name string
    (String) - Specifies the connection name.
    portType string
    (String) - Specifies the type of the port used by the connection. The value can be 1G, 10G, 40G, or 100G.
    region string
    vlan number
    (Number) - Specifies the VLAN ID of the connection.
    bandwidth float
    (Number) - Specifies the bandwidth of the connection in Mbit/s.
    description str
    (String) - Provides supplementary information about the connection.
    device_id str
    (String) - Specifies the gateway device ID of the connection.
    id str
    Specifies the direct connection ID.
    location str
    (String) - Specifies the connection access location.
    name str
    (String) - Specifies the connection name.
    port_type str
    (String) - Specifies the type of the port used by the connection. The value can be 1G, 10G, 40G, or 100G.
    region str
    vlan float
    (Number) - Specifies the VLAN ID of the connection.
    bandwidth Number
    (Number) - Specifies the bandwidth of the connection in Mbit/s.
    description String
    (String) - Provides supplementary information about the connection.
    deviceId String
    (String) - Specifies the gateway device ID of the connection.
    id String
    Specifies the direct connection ID.
    location String
    (String) - Specifies the connection access location.
    name String
    (String) - Specifies the connection name.
    portType String
    (String) - Specifies the type of the port used by the connection. The value can be 1G, 10G, 40G, or 100G.
    region String
    vlan Number
    (Number) - Specifies the VLAN ID of the connection.

    getDirectConnectV2 Result

    The following output properties are available:

    AdminStateUp bool
    (Boolean) - Specifies the administrative status of the connection. The value can be true or false.
    Applicant string
    (String) - This is a reserved field, which is not used currently.
    ApplyTime string
    (String) - Specifies the time when the connection was requested.
    Bandwidth double
    (Number) - Specifies the bandwidth of the connection in Mbit/s.
    BuildingLineProductId string
    (String) - This is a reserved field, which is not used currently.
    CableLabel string
    (String) - This is a reserved field, which is not used currently.
    ChargeMode string
    (String) - Specifies the billing mode. The value can only be port for operations connections.
    CreateTime string
    (String) - Specifies the time when the connection is created.
    DeleteTime string
    (String) - Specifies the time when the connection was deleted.
    Description string
    (String) - Provides supplementary information about the connection.
    DeviceId string
    (String) - Specifies the gateway device ID of the connection.
    Email string
    (String) - This is a reserved field, which is not used currently.
    HostingId string
    (String) - Specifies the ID of the operations connection on which the hosted connection is created.
    Id string
    (String) - Specifies the connection ID.
    InterfaceName string
    (String) - Specifies the name of the interface accessed by the connection.
    LagId string
    (String) - This is a reserved field, which is not used currently.
    LastOnestopProductId string
    (String) - This is a reserved field, which is not used currently.
    Location string
    (String) - Specifies the connection access location.
    Mobile string
    (String) - This is a reserved field, which is not used currently.
    Name string
    (String) - Specifies the connection name.
    OnestopProductId string
    (String) - This is a reserved field, which is not used currently.
    OrderId string
    (String) - Specifies the connection order ID, which is used to support duration-based billing and identify user orders.
    PeerLocation string
    (String) - Specifies the physical location of the peer device accessed by the connection, specific to the street or data center name.
    PeerPortType string
    (String) - This is a reserved field, which is not used currently.
    PeerProvider string
    (String) - This is a reserved field, which is not used currently.
    PeriodNum double
    (Number) - This is a reserved field, which is not used currently.
    PeriodType double
    (Number) - This is a reserved field, which is not used currently.
    PortType string
    (String) - Specifies the type of the port used by the connection. The value can be 1G, 10G, 40G, or 100G.
    ProductId string
    (String) - Specifies the product ID corresponding to the connection's order, which is used to custom billing policies such as duration-based packages.
    ProviderName string
    (String) - Specifies the carrier who provides the leased line.
    ProviderStatus string
    (String) - Specifies the status of the carrier's leased line. The value can be ACTIVE or DOWN.
    Reason string
    (String) - This is a reserved field, which is not used currently.
    RedundantId string
    (String) - Specifies the ID of the redundant connection using the same gateway.
    Region string
    RegionId string
    (String) - Specifies the region ID.
    ServiceKey string
    (String) - This is a reserved field, which is not used currently.
    SpecCode string
    (String) - This is a reserved field, which is not used currently.
    Status string
    (String) - Specifies the connection status. The value can be ACTIVE, DOWN, BUILD, ERROR, PENDING_DELETE, DELETED, APPLY, DENY, PENDING_PAY, PAID, ORDERING, ACCEPT, or REJECTED.
    TenantId string
    (String) - Specifies the project ID.
    Type string
    (String) - Specifies the connection type. The value can only be hosted.
    VgwType string
    (String) - Specifies the type of the gateway. Currently, only the default type is supported.
    Vlan double
    (Number) - Specifies the VLAN ID of the connection.
    AdminStateUp bool
    (Boolean) - Specifies the administrative status of the connection. The value can be true or false.
    Applicant string
    (String) - This is a reserved field, which is not used currently.
    ApplyTime string
    (String) - Specifies the time when the connection was requested.
    Bandwidth float64
    (Number) - Specifies the bandwidth of the connection in Mbit/s.
    BuildingLineProductId string
    (String) - This is a reserved field, which is not used currently.
    CableLabel string
    (String) - This is a reserved field, which is not used currently.
    ChargeMode string
    (String) - Specifies the billing mode. The value can only be port for operations connections.
    CreateTime string
    (String) - Specifies the time when the connection is created.
    DeleteTime string
    (String) - Specifies the time when the connection was deleted.
    Description string
    (String) - Provides supplementary information about the connection.
    DeviceId string
    (String) - Specifies the gateway device ID of the connection.
    Email string
    (String) - This is a reserved field, which is not used currently.
    HostingId string
    (String) - Specifies the ID of the operations connection on which the hosted connection is created.
    Id string
    (String) - Specifies the connection ID.
    InterfaceName string
    (String) - Specifies the name of the interface accessed by the connection.
    LagId string
    (String) - This is a reserved field, which is not used currently.
    LastOnestopProductId string
    (String) - This is a reserved field, which is not used currently.
    Location string
    (String) - Specifies the connection access location.
    Mobile string
    (String) - This is a reserved field, which is not used currently.
    Name string
    (String) - Specifies the connection name.
    OnestopProductId string
    (String) - This is a reserved field, which is not used currently.
    OrderId string
    (String) - Specifies the connection order ID, which is used to support duration-based billing and identify user orders.
    PeerLocation string
    (String) - Specifies the physical location of the peer device accessed by the connection, specific to the street or data center name.
    PeerPortType string
    (String) - This is a reserved field, which is not used currently.
    PeerProvider string
    (String) - This is a reserved field, which is not used currently.
    PeriodNum float64
    (Number) - This is a reserved field, which is not used currently.
    PeriodType float64
    (Number) - This is a reserved field, which is not used currently.
    PortType string
    (String) - Specifies the type of the port used by the connection. The value can be 1G, 10G, 40G, or 100G.
    ProductId string
    (String) - Specifies the product ID corresponding to the connection's order, which is used to custom billing policies such as duration-based packages.
    ProviderName string
    (String) - Specifies the carrier who provides the leased line.
    ProviderStatus string
    (String) - Specifies the status of the carrier's leased line. The value can be ACTIVE or DOWN.
    Reason string
    (String) - This is a reserved field, which is not used currently.
    RedundantId string
    (String) - Specifies the ID of the redundant connection using the same gateway.
    Region string
    RegionId string
    (String) - Specifies the region ID.
    ServiceKey string
    (String) - This is a reserved field, which is not used currently.
    SpecCode string
    (String) - This is a reserved field, which is not used currently.
    Status string
    (String) - Specifies the connection status. The value can be ACTIVE, DOWN, BUILD, ERROR, PENDING_DELETE, DELETED, APPLY, DENY, PENDING_PAY, PAID, ORDERING, ACCEPT, or REJECTED.
    TenantId string
    (String) - Specifies the project ID.
    Type string
    (String) - Specifies the connection type. The value can only be hosted.
    VgwType string
    (String) - Specifies the type of the gateway. Currently, only the default type is supported.
    Vlan float64
    (Number) - Specifies the VLAN ID of the connection.
    adminStateUp Boolean
    (Boolean) - Specifies the administrative status of the connection. The value can be true or false.
    applicant String
    (String) - This is a reserved field, which is not used currently.
    applyTime String
    (String) - Specifies the time when the connection was requested.
    bandwidth Double
    (Number) - Specifies the bandwidth of the connection in Mbit/s.
    buildingLineProductId String
    (String) - This is a reserved field, which is not used currently.
    cableLabel String
    (String) - This is a reserved field, which is not used currently.
    chargeMode String
    (String) - Specifies the billing mode. The value can only be port for operations connections.
    createTime String
    (String) - Specifies the time when the connection is created.
    deleteTime String
    (String) - Specifies the time when the connection was deleted.
    description String
    (String) - Provides supplementary information about the connection.
    deviceId String
    (String) - Specifies the gateway device ID of the connection.
    email String
    (String) - This is a reserved field, which is not used currently.
    hostingId String
    (String) - Specifies the ID of the operations connection on which the hosted connection is created.
    id String
    (String) - Specifies the connection ID.
    interfaceName String
    (String) - Specifies the name of the interface accessed by the connection.
    lagId String
    (String) - This is a reserved field, which is not used currently.
    lastOnestopProductId String
    (String) - This is a reserved field, which is not used currently.
    location String
    (String) - Specifies the connection access location.
    mobile String
    (String) - This is a reserved field, which is not used currently.
    name String
    (String) - Specifies the connection name.
    onestopProductId String
    (String) - This is a reserved field, which is not used currently.
    orderId String
    (String) - Specifies the connection order ID, which is used to support duration-based billing and identify user orders.
    peerLocation String
    (String) - Specifies the physical location of the peer device accessed by the connection, specific to the street or data center name.
    peerPortType String
    (String) - This is a reserved field, which is not used currently.
    peerProvider String
    (String) - This is a reserved field, which is not used currently.
    periodNum Double
    (Number) - This is a reserved field, which is not used currently.
    periodType Double
    (Number) - This is a reserved field, which is not used currently.
    portType String
    (String) - Specifies the type of the port used by the connection. The value can be 1G, 10G, 40G, or 100G.
    productId String
    (String) - Specifies the product ID corresponding to the connection's order, which is used to custom billing policies such as duration-based packages.
    providerName String
    (String) - Specifies the carrier who provides the leased line.
    providerStatus String
    (String) - Specifies the status of the carrier's leased line. The value can be ACTIVE or DOWN.
    reason String
    (String) - This is a reserved field, which is not used currently.
    redundantId String
    (String) - Specifies the ID of the redundant connection using the same gateway.
    region String
    regionId String
    (String) - Specifies the region ID.
    serviceKey String
    (String) - This is a reserved field, which is not used currently.
    specCode String
    (String) - This is a reserved field, which is not used currently.
    status String
    (String) - Specifies the connection status. The value can be ACTIVE, DOWN, BUILD, ERROR, PENDING_DELETE, DELETED, APPLY, DENY, PENDING_PAY, PAID, ORDERING, ACCEPT, or REJECTED.
    tenantId String
    (String) - Specifies the project ID.
    type String
    (String) - Specifies the connection type. The value can only be hosted.
    vgwType String
    (String) - Specifies the type of the gateway. Currently, only the default type is supported.
    vlan Double
    (Number) - Specifies the VLAN ID of the connection.
    adminStateUp boolean
    (Boolean) - Specifies the administrative status of the connection. The value can be true or false.
    applicant string
    (String) - This is a reserved field, which is not used currently.
    applyTime string
    (String) - Specifies the time when the connection was requested.
    bandwidth number
    (Number) - Specifies the bandwidth of the connection in Mbit/s.
    buildingLineProductId string
    (String) - This is a reserved field, which is not used currently.
    cableLabel string
    (String) - This is a reserved field, which is not used currently.
    chargeMode string
    (String) - Specifies the billing mode. The value can only be port for operations connections.
    createTime string
    (String) - Specifies the time when the connection is created.
    deleteTime string
    (String) - Specifies the time when the connection was deleted.
    description string
    (String) - Provides supplementary information about the connection.
    deviceId string
    (String) - Specifies the gateway device ID of the connection.
    email string
    (String) - This is a reserved field, which is not used currently.
    hostingId string
    (String) - Specifies the ID of the operations connection on which the hosted connection is created.
    id string
    (String) - Specifies the connection ID.
    interfaceName string
    (String) - Specifies the name of the interface accessed by the connection.
    lagId string
    (String) - This is a reserved field, which is not used currently.
    lastOnestopProductId string
    (String) - This is a reserved field, which is not used currently.
    location string
    (String) - Specifies the connection access location.
    mobile string
    (String) - This is a reserved field, which is not used currently.
    name string
    (String) - Specifies the connection name.
    onestopProductId string
    (String) - This is a reserved field, which is not used currently.
    orderId string
    (String) - Specifies the connection order ID, which is used to support duration-based billing and identify user orders.
    peerLocation string
    (String) - Specifies the physical location of the peer device accessed by the connection, specific to the street or data center name.
    peerPortType string
    (String) - This is a reserved field, which is not used currently.
    peerProvider string
    (String) - This is a reserved field, which is not used currently.
    periodNum number
    (Number) - This is a reserved field, which is not used currently.
    periodType number
    (Number) - This is a reserved field, which is not used currently.
    portType string
    (String) - Specifies the type of the port used by the connection. The value can be 1G, 10G, 40G, or 100G.
    productId string
    (String) - Specifies the product ID corresponding to the connection's order, which is used to custom billing policies such as duration-based packages.
    providerName string
    (String) - Specifies the carrier who provides the leased line.
    providerStatus string
    (String) - Specifies the status of the carrier's leased line. The value can be ACTIVE or DOWN.
    reason string
    (String) - This is a reserved field, which is not used currently.
    redundantId string
    (String) - Specifies the ID of the redundant connection using the same gateway.
    region string
    regionId string
    (String) - Specifies the region ID.
    serviceKey string
    (String) - This is a reserved field, which is not used currently.
    specCode string
    (String) - This is a reserved field, which is not used currently.
    status string
    (String) - Specifies the connection status. The value can be ACTIVE, DOWN, BUILD, ERROR, PENDING_DELETE, DELETED, APPLY, DENY, PENDING_PAY, PAID, ORDERING, ACCEPT, or REJECTED.
    tenantId string
    (String) - Specifies the project ID.
    type string
    (String) - Specifies the connection type. The value can only be hosted.
    vgwType string
    (String) - Specifies the type of the gateway. Currently, only the default type is supported.
    vlan number
    (Number) - Specifies the VLAN ID of the connection.
    admin_state_up bool
    (Boolean) - Specifies the administrative status of the connection. The value can be true or false.
    applicant str
    (String) - This is a reserved field, which is not used currently.
    apply_time str
    (String) - Specifies the time when the connection was requested.
    bandwidth float
    (Number) - Specifies the bandwidth of the connection in Mbit/s.
    building_line_product_id str
    (String) - This is a reserved field, which is not used currently.
    cable_label str
    (String) - This is a reserved field, which is not used currently.
    charge_mode str
    (String) - Specifies the billing mode. The value can only be port for operations connections.
    create_time str
    (String) - Specifies the time when the connection is created.
    delete_time str
    (String) - Specifies the time when the connection was deleted.
    description str
    (String) - Provides supplementary information about the connection.
    device_id str
    (String) - Specifies the gateway device ID of the connection.
    email str
    (String) - This is a reserved field, which is not used currently.
    hosting_id str
    (String) - Specifies the ID of the operations connection on which the hosted connection is created.
    id str
    (String) - Specifies the connection ID.
    interface_name str
    (String) - Specifies the name of the interface accessed by the connection.
    lag_id str
    (String) - This is a reserved field, which is not used currently.
    last_onestop_product_id str
    (String) - This is a reserved field, which is not used currently.
    location str
    (String) - Specifies the connection access location.
    mobile str
    (String) - This is a reserved field, which is not used currently.
    name str
    (String) - Specifies the connection name.
    onestop_product_id str
    (String) - This is a reserved field, which is not used currently.
    order_id str
    (String) - Specifies the connection order ID, which is used to support duration-based billing and identify user orders.
    peer_location str
    (String) - Specifies the physical location of the peer device accessed by the connection, specific to the street or data center name.
    peer_port_type str
    (String) - This is a reserved field, which is not used currently.
    peer_provider str
    (String) - This is a reserved field, which is not used currently.
    period_num float
    (Number) - This is a reserved field, which is not used currently.
    period_type float
    (Number) - This is a reserved field, which is not used currently.
    port_type str
    (String) - Specifies the type of the port used by the connection. The value can be 1G, 10G, 40G, or 100G.
    product_id str
    (String) - Specifies the product ID corresponding to the connection's order, which is used to custom billing policies such as duration-based packages.
    provider_name str
    (String) - Specifies the carrier who provides the leased line.
    provider_status str
    (String) - Specifies the status of the carrier's leased line. The value can be ACTIVE or DOWN.
    reason str
    (String) - This is a reserved field, which is not used currently.
    redundant_id str
    (String) - Specifies the ID of the redundant connection using the same gateway.
    region str
    region_id str
    (String) - Specifies the region ID.
    service_key str
    (String) - This is a reserved field, which is not used currently.
    spec_code str
    (String) - This is a reserved field, which is not used currently.
    status str
    (String) - Specifies the connection status. The value can be ACTIVE, DOWN, BUILD, ERROR, PENDING_DELETE, DELETED, APPLY, DENY, PENDING_PAY, PAID, ORDERING, ACCEPT, or REJECTED.
    tenant_id str
    (String) - Specifies the project ID.
    type str
    (String) - Specifies the connection type. The value can only be hosted.
    vgw_type str
    (String) - Specifies the type of the gateway. Currently, only the default type is supported.
    vlan float
    (Number) - Specifies the VLAN ID of the connection.
    adminStateUp Boolean
    (Boolean) - Specifies the administrative status of the connection. The value can be true or false.
    applicant String
    (String) - This is a reserved field, which is not used currently.
    applyTime String
    (String) - Specifies the time when the connection was requested.
    bandwidth Number
    (Number) - Specifies the bandwidth of the connection in Mbit/s.
    buildingLineProductId String
    (String) - This is a reserved field, which is not used currently.
    cableLabel String
    (String) - This is a reserved field, which is not used currently.
    chargeMode String
    (String) - Specifies the billing mode. The value can only be port for operations connections.
    createTime String
    (String) - Specifies the time when the connection is created.
    deleteTime String
    (String) - Specifies the time when the connection was deleted.
    description String
    (String) - Provides supplementary information about the connection.
    deviceId String
    (String) - Specifies the gateway device ID of the connection.
    email String
    (String) - This is a reserved field, which is not used currently.
    hostingId String
    (String) - Specifies the ID of the operations connection on which the hosted connection is created.
    id String
    (String) - Specifies the connection ID.
    interfaceName String
    (String) - Specifies the name of the interface accessed by the connection.
    lagId String
    (String) - This is a reserved field, which is not used currently.
    lastOnestopProductId String
    (String) - This is a reserved field, which is not used currently.
    location String
    (String) - Specifies the connection access location.
    mobile String
    (String) - This is a reserved field, which is not used currently.
    name String
    (String) - Specifies the connection name.
    onestopProductId String
    (String) - This is a reserved field, which is not used currently.
    orderId String
    (String) - Specifies the connection order ID, which is used to support duration-based billing and identify user orders.
    peerLocation String
    (String) - Specifies the physical location of the peer device accessed by the connection, specific to the street or data center name.
    peerPortType String
    (String) - This is a reserved field, which is not used currently.
    peerProvider String
    (String) - This is a reserved field, which is not used currently.
    periodNum Number
    (Number) - This is a reserved field, which is not used currently.
    periodType Number
    (Number) - This is a reserved field, which is not used currently.
    portType String
    (String) - Specifies the type of the port used by the connection. The value can be 1G, 10G, 40G, or 100G.
    productId String
    (String) - Specifies the product ID corresponding to the connection's order, which is used to custom billing policies such as duration-based packages.
    providerName String
    (String) - Specifies the carrier who provides the leased line.
    providerStatus String
    (String) - Specifies the status of the carrier's leased line. The value can be ACTIVE or DOWN.
    reason String
    (String) - This is a reserved field, which is not used currently.
    redundantId String
    (String) - Specifies the ID of the redundant connection using the same gateway.
    region String
    regionId String
    (String) - Specifies the region ID.
    serviceKey String
    (String) - This is a reserved field, which is not used currently.
    specCode String
    (String) - This is a reserved field, which is not used currently.
    status String
    (String) - Specifies the connection status. The value can be ACTIVE, DOWN, BUILD, ERROR, PENDING_DELETE, DELETED, APPLY, DENY, PENDING_PAY, PAID, ORDERING, ACCEPT, or REJECTED.
    tenantId String
    (String) - Specifies the project ID.
    type String
    (String) - Specifies the connection type. The value can only be hosted.
    vgwType String
    (String) - Specifies the type of the gateway. Currently, only the default type is supported.
    vlan Number
    (Number) - Specifies the VLAN ID of the connection.

    Package Details

    Repository
    opentelekomcloud opentelekomcloud/terraform-provider-opentelekomcloud
    License
    Notes
    This Pulumi package is based on the opentelekomcloud Terraform Provider.
    opentelekomcloud logo
    opentelekomcloud 1.36.52 published on Thursday, Nov 6, 2025 by opentelekomcloud
      Meet Neo: Your AI Platform Teammate