1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. expressconnect
  5. PhysicalConnection
Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi

alicloud.expressconnect.PhysicalConnection

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi

    Provides a Express Connect Physical Connection resource.

    For information about Express Connect Physical Connection and how to use it, see What is Physical Connection.

    NOTE: Available since v1.132.0.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const hz = new alicloud.Provider("hz", {region: "cn-hangzhou"});
    const sgp = new alicloud.Provider("sgp", {region: "ap-southeast-1"});
    const domestic = new alicloud.expressconnect.PhysicalConnection("domestic", {
        accessPointId: "ap-cn-hangzhou-yh-B",
        lineOperator: "CT",
        peerLocation: "example_value",
        physicalConnectionName: "example_value",
        type: "VPC",
        description: "my domestic connection",
        portType: "1000Base-LX",
        bandwidth: "100",
    }, {
        provider: alicloud.hz,
    });
    const international = new alicloud.expressconnect.PhysicalConnection("international", {
        accessPointId: "ap-sg-singpore-A",
        lineOperator: "Other",
        peerLocation: "example_value",
        physicalConnectionName: "example_value",
        type: "VPC",
        description: "my domestic connection",
        portType: "1000Base-LX",
        bandwidth: "100",
    }, {
        provider: alicloud.sgp,
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    hz = alicloud.Provider("hz", region="cn-hangzhou")
    sgp = alicloud.Provider("sgp", region="ap-southeast-1")
    domestic = alicloud.expressconnect.PhysicalConnection("domestic",
        access_point_id="ap-cn-hangzhou-yh-B",
        line_operator="CT",
        peer_location="example_value",
        physical_connection_name="example_value",
        type="VPC",
        description="my domestic connection",
        port_type="1000Base-LX",
        bandwidth="100",
        opts=pulumi.ResourceOptions(provider=alicloud["hz"]))
    international = alicloud.expressconnect.PhysicalConnection("international",
        access_point_id="ap-sg-singpore-A",
        line_operator="Other",
        peer_location="example_value",
        physical_connection_name="example_value",
        type="VPC",
        description="my domestic connection",
        port_type="1000Base-LX",
        bandwidth="100",
        opts=pulumi.ResourceOptions(provider=alicloud["sgp"]))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/expressconnect"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := alicloud.NewProvider(ctx, "hz", &alicloud.ProviderArgs{
    			Region: pulumi.String("cn-hangzhou"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = alicloud.NewProvider(ctx, "sgp", &alicloud.ProviderArgs{
    			Region: pulumi.String("ap-southeast-1"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = expressconnect.NewPhysicalConnection(ctx, "domestic", &expressconnect.PhysicalConnectionArgs{
    			AccessPointId:          pulumi.String("ap-cn-hangzhou-yh-B"),
    			LineOperator:           pulumi.String("CT"),
    			PeerLocation:           pulumi.String("example_value"),
    			PhysicalConnectionName: pulumi.String("example_value"),
    			Type:                   pulumi.String("VPC"),
    			Description:            pulumi.String("my domestic connection"),
    			PortType:               pulumi.String("1000Base-LX"),
    			Bandwidth:              pulumi.String("100"),
    		}, pulumi.Provider(alicloud.Hz))
    		if err != nil {
    			return err
    		}
    		_, err = expressconnect.NewPhysicalConnection(ctx, "international", &expressconnect.PhysicalConnectionArgs{
    			AccessPointId:          pulumi.String("ap-sg-singpore-A"),
    			LineOperator:           pulumi.String("Other"),
    			PeerLocation:           pulumi.String("example_value"),
    			PhysicalConnectionName: pulumi.String("example_value"),
    			Type:                   pulumi.String("VPC"),
    			Description:            pulumi.String("my domestic connection"),
    			PortType:               pulumi.String("1000Base-LX"),
    			Bandwidth:              pulumi.String("100"),
    		}, pulumi.Provider(alicloud.Sgp))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var hz = new AliCloud.Provider("hz", new()
        {
            Region = "cn-hangzhou",
        });
    
        var sgp = new AliCloud.Provider("sgp", new()
        {
            Region = "ap-southeast-1",
        });
    
        var domestic = new AliCloud.ExpressConnect.PhysicalConnection("domestic", new()
        {
            AccessPointId = "ap-cn-hangzhou-yh-B",
            LineOperator = "CT",
            PeerLocation = "example_value",
            PhysicalConnectionName = "example_value",
            Type = "VPC",
            Description = "my domestic connection",
            PortType = "1000Base-LX",
            Bandwidth = "100",
        }, new CustomResourceOptions
        {
            Provider = alicloud.Hz,
        });
    
        var international = new AliCloud.ExpressConnect.PhysicalConnection("international", new()
        {
            AccessPointId = "ap-sg-singpore-A",
            LineOperator = "Other",
            PeerLocation = "example_value",
            PhysicalConnectionName = "example_value",
            Type = "VPC",
            Description = "my domestic connection",
            PortType = "1000Base-LX",
            Bandwidth = "100",
        }, new CustomResourceOptions
        {
            Provider = alicloud.Sgp,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.Provider;
    import com.pulumi.alicloud.ProviderArgs;
    import com.pulumi.alicloud.expressconnect.PhysicalConnection;
    import com.pulumi.alicloud.expressconnect.PhysicalConnectionArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 hz = new Provider("hz", ProviderArgs.builder()        
                .region("cn-hangzhou")
                .build());
    
            var sgp = new Provider("sgp", ProviderArgs.builder()        
                .region("ap-southeast-1")
                .build());
    
            var domestic = new PhysicalConnection("domestic", PhysicalConnectionArgs.builder()        
                .accessPointId("ap-cn-hangzhou-yh-B")
                .lineOperator("CT")
                .peerLocation("example_value")
                .physicalConnectionName("example_value")
                .type("VPC")
                .description("my domestic connection")
                .portType("1000Base-LX")
                .bandwidth(100)
                .build(), CustomResourceOptions.builder()
                    .provider(alicloud.hz())
                    .build());
    
            var international = new PhysicalConnection("international", PhysicalConnectionArgs.builder()        
                .accessPointId("ap-sg-singpore-A")
                .lineOperator("Other")
                .peerLocation("example_value")
                .physicalConnectionName("example_value")
                .type("VPC")
                .description("my domestic connection")
                .portType("1000Base-LX")
                .bandwidth(100)
                .build(), CustomResourceOptions.builder()
                    .provider(alicloud.sgp())
                    .build());
    
        }
    }
    
    resources:
      hz:
        type: pulumi:providers:alicloud
        properties:
          region: cn-hangzhou
      sgp:
        type: pulumi:providers:alicloud
        properties:
          region: ap-southeast-1
      domestic:
        type: alicloud:expressconnect:PhysicalConnection
        properties:
          accessPointId: ap-cn-hangzhou-yh-B
          lineOperator: CT
          peerLocation: example_value
          physicalConnectionName: example_value
          type: VPC
          description: my domestic connection
          portType: 1000Base-LX
          bandwidth: 100
        options:
          provider: ${alicloud.hz}
      international:
        type: alicloud:expressconnect:PhysicalConnection
        properties:
          accessPointId: ap-sg-singpore-A
          lineOperator: Other
          peerLocation: example_value
          physicalConnectionName: example_value
          type: VPC
          description: my domestic connection
          portType: 1000Base-LX
          bandwidth: 100
        options:
          provider: ${alicloud.sgp}
    

    Create PhysicalConnection Resource

    new PhysicalConnection(name: string, args: PhysicalConnectionArgs, opts?: CustomResourceOptions);
    @overload
    def PhysicalConnection(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           access_point_id: Optional[str] = None,
                           bandwidth: Optional[str] = None,
                           circuit_code: Optional[str] = None,
                           description: Optional[str] = None,
                           line_operator: Optional[str] = None,
                           peer_location: Optional[str] = None,
                           physical_connection_name: Optional[str] = None,
                           port_type: Optional[str] = None,
                           redundant_physical_connection_id: Optional[str] = None,
                           status: Optional[str] = None,
                           type: Optional[str] = None)
    @overload
    def PhysicalConnection(resource_name: str,
                           args: PhysicalConnectionArgs,
                           opts: Optional[ResourceOptions] = None)
    func NewPhysicalConnection(ctx *Context, name string, args PhysicalConnectionArgs, opts ...ResourceOption) (*PhysicalConnection, error)
    public PhysicalConnection(string name, PhysicalConnectionArgs args, CustomResourceOptions? opts = null)
    public PhysicalConnection(String name, PhysicalConnectionArgs args)
    public PhysicalConnection(String name, PhysicalConnectionArgs args, CustomResourceOptions options)
    
    type: alicloud:expressconnect:PhysicalConnection
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args PhysicalConnectionArgs
    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 PhysicalConnectionArgs
    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 PhysicalConnectionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PhysicalConnectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PhysicalConnectionArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    PhysicalConnection Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The PhysicalConnection resource accepts the following input properties:

    AccessPointId string
    The Physical Leased Line Access Point ID.
    LineOperator string
    Provides Access to the Physical Line Operator. Valid values:

    • CT: China Telecom
    • CU: China Unicom
    • CM: china Mobile
    • CO: Other Chinese
    • Equinix: Equinix
    • Other: Other Overseas.
    Bandwidth string
    On the Bandwidth of the ECC Service and Physical Connection.
    CircuitCode string
    Operators for Physical Connection Circuit Provided Coding.
    Description string
    The Physical Connection to Which the Description.
    PeerLocation string
    and an on-Premises Data Center Location.
    PhysicalConnectionName string
    on Behalf of the Resource Name of the Resources-Attribute Field.
    PortType string

    The Physical Leased Line Access Port Type. Valid value:

    • 100Base-T: Fast Electrical Ports
    • 1000Base-T: gigabit Electrical Ports
    • 1000Base-LX: Gigabit Singlemode Optical Ports (10Km)
    • 10GBase-T: Gigabit Electrical Port
    • 10GBase-LR: Gigabit Singlemode Optical Ports (10Km).
    • 40GBase-LR: 40 Gigabit Singlemode Optical Ports.
    • 100GBase-LR: One hundred thousand Gigabit Singlemode Optical Ports.

    NOTE: From in v1.185.0+, The 40GBase-LR and 100GBase-LR is valid. and Set these values based on the water levels of background ports. For details about the water levels, contact the business manager.

    RedundantPhysicalConnectionId string
    Redundant Physical Connection to Which the ID.
    Status string
    Resources on Behalf of a State of the Resource Attribute Field. Valid values: Canceled, Enabled, Terminated.
    Type string
    Physical Private Line of Type. Default Value: VPC.
    AccessPointId string
    The Physical Leased Line Access Point ID.
    LineOperator string
    Provides Access to the Physical Line Operator. Valid values:

    • CT: China Telecom
    • CU: China Unicom
    • CM: china Mobile
    • CO: Other Chinese
    • Equinix: Equinix
    • Other: Other Overseas.
    Bandwidth string
    On the Bandwidth of the ECC Service and Physical Connection.
    CircuitCode string
    Operators for Physical Connection Circuit Provided Coding.
    Description string
    The Physical Connection to Which the Description.
    PeerLocation string
    and an on-Premises Data Center Location.
    PhysicalConnectionName string
    on Behalf of the Resource Name of the Resources-Attribute Field.
    PortType string

    The Physical Leased Line Access Port Type. Valid value:

    • 100Base-T: Fast Electrical Ports
    • 1000Base-T: gigabit Electrical Ports
    • 1000Base-LX: Gigabit Singlemode Optical Ports (10Km)
    • 10GBase-T: Gigabit Electrical Port
    • 10GBase-LR: Gigabit Singlemode Optical Ports (10Km).
    • 40GBase-LR: 40 Gigabit Singlemode Optical Ports.
    • 100GBase-LR: One hundred thousand Gigabit Singlemode Optical Ports.

    NOTE: From in v1.185.0+, The 40GBase-LR and 100GBase-LR is valid. and Set these values based on the water levels of background ports. For details about the water levels, contact the business manager.

    RedundantPhysicalConnectionId string
    Redundant Physical Connection to Which the ID.
    Status string
    Resources on Behalf of a State of the Resource Attribute Field. Valid values: Canceled, Enabled, Terminated.
    Type string
    Physical Private Line of Type. Default Value: VPC.
    accessPointId String
    The Physical Leased Line Access Point ID.
    lineOperator String
    Provides Access to the Physical Line Operator. Valid values:

    • CT: China Telecom
    • CU: China Unicom
    • CM: china Mobile
    • CO: Other Chinese
    • Equinix: Equinix
    • Other: Other Overseas.
    bandwidth String
    On the Bandwidth of the ECC Service and Physical Connection.
    circuitCode String
    Operators for Physical Connection Circuit Provided Coding.
    description String
    The Physical Connection to Which the Description.
    peerLocation String
    and an on-Premises Data Center Location.
    physicalConnectionName String
    on Behalf of the Resource Name of the Resources-Attribute Field.
    portType String

    The Physical Leased Line Access Port Type. Valid value:

    • 100Base-T: Fast Electrical Ports
    • 1000Base-T: gigabit Electrical Ports
    • 1000Base-LX: Gigabit Singlemode Optical Ports (10Km)
    • 10GBase-T: Gigabit Electrical Port
    • 10GBase-LR: Gigabit Singlemode Optical Ports (10Km).
    • 40GBase-LR: 40 Gigabit Singlemode Optical Ports.
    • 100GBase-LR: One hundred thousand Gigabit Singlemode Optical Ports.

    NOTE: From in v1.185.0+, The 40GBase-LR and 100GBase-LR is valid. and Set these values based on the water levels of background ports. For details about the water levels, contact the business manager.

    redundantPhysicalConnectionId String
    Redundant Physical Connection to Which the ID.
    status String
    Resources on Behalf of a State of the Resource Attribute Field. Valid values: Canceled, Enabled, Terminated.
    type String
    Physical Private Line of Type. Default Value: VPC.
    accessPointId string
    The Physical Leased Line Access Point ID.
    lineOperator string
    Provides Access to the Physical Line Operator. Valid values:

    • CT: China Telecom
    • CU: China Unicom
    • CM: china Mobile
    • CO: Other Chinese
    • Equinix: Equinix
    • Other: Other Overseas.
    bandwidth string
    On the Bandwidth of the ECC Service and Physical Connection.
    circuitCode string
    Operators for Physical Connection Circuit Provided Coding.
    description string
    The Physical Connection to Which the Description.
    peerLocation string
    and an on-Premises Data Center Location.
    physicalConnectionName string
    on Behalf of the Resource Name of the Resources-Attribute Field.
    portType string

    The Physical Leased Line Access Port Type. Valid value:

    • 100Base-T: Fast Electrical Ports
    • 1000Base-T: gigabit Electrical Ports
    • 1000Base-LX: Gigabit Singlemode Optical Ports (10Km)
    • 10GBase-T: Gigabit Electrical Port
    • 10GBase-LR: Gigabit Singlemode Optical Ports (10Km).
    • 40GBase-LR: 40 Gigabit Singlemode Optical Ports.
    • 100GBase-LR: One hundred thousand Gigabit Singlemode Optical Ports.

    NOTE: From in v1.185.0+, The 40GBase-LR and 100GBase-LR is valid. and Set these values based on the water levels of background ports. For details about the water levels, contact the business manager.

    redundantPhysicalConnectionId string
    Redundant Physical Connection to Which the ID.
    status string
    Resources on Behalf of a State of the Resource Attribute Field. Valid values: Canceled, Enabled, Terminated.
    type string
    Physical Private Line of Type. Default Value: VPC.
    access_point_id str
    The Physical Leased Line Access Point ID.
    line_operator str
    Provides Access to the Physical Line Operator. Valid values:

    • CT: China Telecom
    • CU: China Unicom
    • CM: china Mobile
    • CO: Other Chinese
    • Equinix: Equinix
    • Other: Other Overseas.
    bandwidth str
    On the Bandwidth of the ECC Service and Physical Connection.
    circuit_code str
    Operators for Physical Connection Circuit Provided Coding.
    description str
    The Physical Connection to Which the Description.
    peer_location str
    and an on-Premises Data Center Location.
    physical_connection_name str
    on Behalf of the Resource Name of the Resources-Attribute Field.
    port_type str

    The Physical Leased Line Access Port Type. Valid value:

    • 100Base-T: Fast Electrical Ports
    • 1000Base-T: gigabit Electrical Ports
    • 1000Base-LX: Gigabit Singlemode Optical Ports (10Km)
    • 10GBase-T: Gigabit Electrical Port
    • 10GBase-LR: Gigabit Singlemode Optical Ports (10Km).
    • 40GBase-LR: 40 Gigabit Singlemode Optical Ports.
    • 100GBase-LR: One hundred thousand Gigabit Singlemode Optical Ports.

    NOTE: From in v1.185.0+, The 40GBase-LR and 100GBase-LR is valid. and Set these values based on the water levels of background ports. For details about the water levels, contact the business manager.

    redundant_physical_connection_id str
    Redundant Physical Connection to Which the ID.
    status str
    Resources on Behalf of a State of the Resource Attribute Field. Valid values: Canceled, Enabled, Terminated.
    type str
    Physical Private Line of Type. Default Value: VPC.
    accessPointId String
    The Physical Leased Line Access Point ID.
    lineOperator String
    Provides Access to the Physical Line Operator. Valid values:

    • CT: China Telecom
    • CU: China Unicom
    • CM: china Mobile
    • CO: Other Chinese
    • Equinix: Equinix
    • Other: Other Overseas.
    bandwidth String
    On the Bandwidth of the ECC Service and Physical Connection.
    circuitCode String
    Operators for Physical Connection Circuit Provided Coding.
    description String
    The Physical Connection to Which the Description.
    peerLocation String
    and an on-Premises Data Center Location.
    physicalConnectionName String
    on Behalf of the Resource Name of the Resources-Attribute Field.
    portType String

    The Physical Leased Line Access Port Type. Valid value:

    • 100Base-T: Fast Electrical Ports
    • 1000Base-T: gigabit Electrical Ports
    • 1000Base-LX: Gigabit Singlemode Optical Ports (10Km)
    • 10GBase-T: Gigabit Electrical Port
    • 10GBase-LR: Gigabit Singlemode Optical Ports (10Km).
    • 40GBase-LR: 40 Gigabit Singlemode Optical Ports.
    • 100GBase-LR: One hundred thousand Gigabit Singlemode Optical Ports.

    NOTE: From in v1.185.0+, The 40GBase-LR and 100GBase-LR is valid. and Set these values based on the water levels of background ports. For details about the water levels, contact the business manager.

    redundantPhysicalConnectionId String
    Redundant Physical Connection to Which the ID.
    status String
    Resources on Behalf of a State of the Resource Attribute Field. Valid values: Canceled, Enabled, Terminated.
    type String
    Physical Private Line of Type. Default Value: VPC.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing PhysicalConnection Resource

    Get an existing PhysicalConnection 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?: PhysicalConnectionState, opts?: CustomResourceOptions): PhysicalConnection
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_point_id: Optional[str] = None,
            bandwidth: Optional[str] = None,
            circuit_code: Optional[str] = None,
            description: Optional[str] = None,
            line_operator: Optional[str] = None,
            peer_location: Optional[str] = None,
            physical_connection_name: Optional[str] = None,
            port_type: Optional[str] = None,
            redundant_physical_connection_id: Optional[str] = None,
            status: Optional[str] = None,
            type: Optional[str] = None) -> PhysicalConnection
    func GetPhysicalConnection(ctx *Context, name string, id IDInput, state *PhysicalConnectionState, opts ...ResourceOption) (*PhysicalConnection, error)
    public static PhysicalConnection Get(string name, Input<string> id, PhysicalConnectionState? state, CustomResourceOptions? opts = null)
    public static PhysicalConnection get(String name, Output<String> id, PhysicalConnectionState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    AccessPointId string
    The Physical Leased Line Access Point ID.
    Bandwidth string
    On the Bandwidth of the ECC Service and Physical Connection.
    CircuitCode string
    Operators for Physical Connection Circuit Provided Coding.
    Description string
    The Physical Connection to Which the Description.
    LineOperator string
    Provides Access to the Physical Line Operator. Valid values:

    • CT: China Telecom
    • CU: China Unicom
    • CM: china Mobile
    • CO: Other Chinese
    • Equinix: Equinix
    • Other: Other Overseas.
    PeerLocation string
    and an on-Premises Data Center Location.
    PhysicalConnectionName string
    on Behalf of the Resource Name of the Resources-Attribute Field.
    PortType string

    The Physical Leased Line Access Port Type. Valid value:

    • 100Base-T: Fast Electrical Ports
    • 1000Base-T: gigabit Electrical Ports
    • 1000Base-LX: Gigabit Singlemode Optical Ports (10Km)
    • 10GBase-T: Gigabit Electrical Port
    • 10GBase-LR: Gigabit Singlemode Optical Ports (10Km).
    • 40GBase-LR: 40 Gigabit Singlemode Optical Ports.
    • 100GBase-LR: One hundred thousand Gigabit Singlemode Optical Ports.

    NOTE: From in v1.185.0+, The 40GBase-LR and 100GBase-LR is valid. and Set these values based on the water levels of background ports. For details about the water levels, contact the business manager.

    RedundantPhysicalConnectionId string
    Redundant Physical Connection to Which the ID.
    Status string
    Resources on Behalf of a State of the Resource Attribute Field. Valid values: Canceled, Enabled, Terminated.
    Type string
    Physical Private Line of Type. Default Value: VPC.
    AccessPointId string
    The Physical Leased Line Access Point ID.
    Bandwidth string
    On the Bandwidth of the ECC Service and Physical Connection.
    CircuitCode string
    Operators for Physical Connection Circuit Provided Coding.
    Description string
    The Physical Connection to Which the Description.
    LineOperator string
    Provides Access to the Physical Line Operator. Valid values:

    • CT: China Telecom
    • CU: China Unicom
    • CM: china Mobile
    • CO: Other Chinese
    • Equinix: Equinix
    • Other: Other Overseas.
    PeerLocation string
    and an on-Premises Data Center Location.
    PhysicalConnectionName string
    on Behalf of the Resource Name of the Resources-Attribute Field.
    PortType string

    The Physical Leased Line Access Port Type. Valid value:

    • 100Base-T: Fast Electrical Ports
    • 1000Base-T: gigabit Electrical Ports
    • 1000Base-LX: Gigabit Singlemode Optical Ports (10Km)
    • 10GBase-T: Gigabit Electrical Port
    • 10GBase-LR: Gigabit Singlemode Optical Ports (10Km).
    • 40GBase-LR: 40 Gigabit Singlemode Optical Ports.
    • 100GBase-LR: One hundred thousand Gigabit Singlemode Optical Ports.

    NOTE: From in v1.185.0+, The 40GBase-LR and 100GBase-LR is valid. and Set these values based on the water levels of background ports. For details about the water levels, contact the business manager.

    RedundantPhysicalConnectionId string
    Redundant Physical Connection to Which the ID.
    Status string
    Resources on Behalf of a State of the Resource Attribute Field. Valid values: Canceled, Enabled, Terminated.
    Type string
    Physical Private Line of Type. Default Value: VPC.
    accessPointId String
    The Physical Leased Line Access Point ID.
    bandwidth String
    On the Bandwidth of the ECC Service and Physical Connection.
    circuitCode String
    Operators for Physical Connection Circuit Provided Coding.
    description String
    The Physical Connection to Which the Description.
    lineOperator String
    Provides Access to the Physical Line Operator. Valid values:

    • CT: China Telecom
    • CU: China Unicom
    • CM: china Mobile
    • CO: Other Chinese
    • Equinix: Equinix
    • Other: Other Overseas.
    peerLocation String
    and an on-Premises Data Center Location.
    physicalConnectionName String
    on Behalf of the Resource Name of the Resources-Attribute Field.
    portType String

    The Physical Leased Line Access Port Type. Valid value:

    • 100Base-T: Fast Electrical Ports
    • 1000Base-T: gigabit Electrical Ports
    • 1000Base-LX: Gigabit Singlemode Optical Ports (10Km)
    • 10GBase-T: Gigabit Electrical Port
    • 10GBase-LR: Gigabit Singlemode Optical Ports (10Km).
    • 40GBase-LR: 40 Gigabit Singlemode Optical Ports.
    • 100GBase-LR: One hundred thousand Gigabit Singlemode Optical Ports.

    NOTE: From in v1.185.0+, The 40GBase-LR and 100GBase-LR is valid. and Set these values based on the water levels of background ports. For details about the water levels, contact the business manager.

    redundantPhysicalConnectionId String
    Redundant Physical Connection to Which the ID.
    status String
    Resources on Behalf of a State of the Resource Attribute Field. Valid values: Canceled, Enabled, Terminated.
    type String
    Physical Private Line of Type. Default Value: VPC.
    accessPointId string
    The Physical Leased Line Access Point ID.
    bandwidth string
    On the Bandwidth of the ECC Service and Physical Connection.
    circuitCode string
    Operators for Physical Connection Circuit Provided Coding.
    description string
    The Physical Connection to Which the Description.
    lineOperator string
    Provides Access to the Physical Line Operator. Valid values:

    • CT: China Telecom
    • CU: China Unicom
    • CM: china Mobile
    • CO: Other Chinese
    • Equinix: Equinix
    • Other: Other Overseas.
    peerLocation string
    and an on-Premises Data Center Location.
    physicalConnectionName string
    on Behalf of the Resource Name of the Resources-Attribute Field.
    portType string

    The Physical Leased Line Access Port Type. Valid value:

    • 100Base-T: Fast Electrical Ports
    • 1000Base-T: gigabit Electrical Ports
    • 1000Base-LX: Gigabit Singlemode Optical Ports (10Km)
    • 10GBase-T: Gigabit Electrical Port
    • 10GBase-LR: Gigabit Singlemode Optical Ports (10Km).
    • 40GBase-LR: 40 Gigabit Singlemode Optical Ports.
    • 100GBase-LR: One hundred thousand Gigabit Singlemode Optical Ports.

    NOTE: From in v1.185.0+, The 40GBase-LR and 100GBase-LR is valid. and Set these values based on the water levels of background ports. For details about the water levels, contact the business manager.

    redundantPhysicalConnectionId string
    Redundant Physical Connection to Which the ID.
    status string
    Resources on Behalf of a State of the Resource Attribute Field. Valid values: Canceled, Enabled, Terminated.
    type string
    Physical Private Line of Type. Default Value: VPC.
    access_point_id str
    The Physical Leased Line Access Point ID.
    bandwidth str
    On the Bandwidth of the ECC Service and Physical Connection.
    circuit_code str
    Operators for Physical Connection Circuit Provided Coding.
    description str
    The Physical Connection to Which the Description.
    line_operator str
    Provides Access to the Physical Line Operator. Valid values:

    • CT: China Telecom
    • CU: China Unicom
    • CM: china Mobile
    • CO: Other Chinese
    • Equinix: Equinix
    • Other: Other Overseas.
    peer_location str
    and an on-Premises Data Center Location.
    physical_connection_name str
    on Behalf of the Resource Name of the Resources-Attribute Field.
    port_type str

    The Physical Leased Line Access Port Type. Valid value:

    • 100Base-T: Fast Electrical Ports
    • 1000Base-T: gigabit Electrical Ports
    • 1000Base-LX: Gigabit Singlemode Optical Ports (10Km)
    • 10GBase-T: Gigabit Electrical Port
    • 10GBase-LR: Gigabit Singlemode Optical Ports (10Km).
    • 40GBase-LR: 40 Gigabit Singlemode Optical Ports.
    • 100GBase-LR: One hundred thousand Gigabit Singlemode Optical Ports.

    NOTE: From in v1.185.0+, The 40GBase-LR and 100GBase-LR is valid. and Set these values based on the water levels of background ports. For details about the water levels, contact the business manager.

    redundant_physical_connection_id str
    Redundant Physical Connection to Which the ID.
    status str
    Resources on Behalf of a State of the Resource Attribute Field. Valid values: Canceled, Enabled, Terminated.
    type str
    Physical Private Line of Type. Default Value: VPC.
    accessPointId String
    The Physical Leased Line Access Point ID.
    bandwidth String
    On the Bandwidth of the ECC Service and Physical Connection.
    circuitCode String
    Operators for Physical Connection Circuit Provided Coding.
    description String
    The Physical Connection to Which the Description.
    lineOperator String
    Provides Access to the Physical Line Operator. Valid values:

    • CT: China Telecom
    • CU: China Unicom
    • CM: china Mobile
    • CO: Other Chinese
    • Equinix: Equinix
    • Other: Other Overseas.
    peerLocation String
    and an on-Premises Data Center Location.
    physicalConnectionName String
    on Behalf of the Resource Name of the Resources-Attribute Field.
    portType String

    The Physical Leased Line Access Port Type. Valid value:

    • 100Base-T: Fast Electrical Ports
    • 1000Base-T: gigabit Electrical Ports
    • 1000Base-LX: Gigabit Singlemode Optical Ports (10Km)
    • 10GBase-T: Gigabit Electrical Port
    • 10GBase-LR: Gigabit Singlemode Optical Ports (10Km).
    • 40GBase-LR: 40 Gigabit Singlemode Optical Ports.
    • 100GBase-LR: One hundred thousand Gigabit Singlemode Optical Ports.

    NOTE: From in v1.185.0+, The 40GBase-LR and 100GBase-LR is valid. and Set these values based on the water levels of background ports. For details about the water levels, contact the business manager.

    redundantPhysicalConnectionId String
    Redundant Physical Connection to Which the ID.
    status String
    Resources on Behalf of a State of the Resource Attribute Field. Valid values: Canceled, Enabled, Terminated.
    type String
    Physical Private Line of Type. Default Value: VPC.

    Import

    Express Connect Physical Connection can be imported using the id, e.g.

    $ pulumi import alicloud:expressconnect/physicalConnection:PhysicalConnection example <id>
    

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi