alicloud.expressconnect.PhysicalConnection
Explore with Pulumi AI
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 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",
});
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",
});
import pulumi
import pulumi_alicloud as alicloud
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")
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")
package main
import (
"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 := 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"),
})
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"),
})
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 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",
});
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",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.expressconnect.PhysicalConnection;
import com.pulumi.alicloud.expressconnect.PhysicalConnectionArgs;
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 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());
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());
}
}
resources:
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
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
Create PhysicalConnection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PhysicalConnection(name: string, args: PhysicalConnectionArgs, opts?: CustomResourceOptions);
@overload
def PhysicalConnection(resource_name: str,
args: PhysicalConnectionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PhysicalConnection(resource_name: str,
opts: Optional[ResourceOptions] = None,
access_point_id: Optional[str] = None,
line_operator: Optional[str] = None,
bandwidth: Optional[str] = None,
circuit_code: Optional[str] = None,
description: 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)
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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var physicalConnectionResource = new AliCloud.ExpressConnect.PhysicalConnection("physicalConnectionResource", new()
{
AccessPointId = "string",
LineOperator = "string",
Bandwidth = "string",
CircuitCode = "string",
Description = "string",
PeerLocation = "string",
PhysicalConnectionName = "string",
PortType = "string",
RedundantPhysicalConnectionId = "string",
Status = "string",
Type = "string",
});
example, err := expressconnect.NewPhysicalConnection(ctx, "physicalConnectionResource", &expressconnect.PhysicalConnectionArgs{
AccessPointId: pulumi.String("string"),
LineOperator: pulumi.String("string"),
Bandwidth: pulumi.String("string"),
CircuitCode: pulumi.String("string"),
Description: pulumi.String("string"),
PeerLocation: pulumi.String("string"),
PhysicalConnectionName: pulumi.String("string"),
PortType: pulumi.String("string"),
RedundantPhysicalConnectionId: pulumi.String("string"),
Status: pulumi.String("string"),
Type: pulumi.String("string"),
})
var physicalConnectionResource = new PhysicalConnection("physicalConnectionResource", PhysicalConnectionArgs.builder()
.accessPointId("string")
.lineOperator("string")
.bandwidth("string")
.circuitCode("string")
.description("string")
.peerLocation("string")
.physicalConnectionName("string")
.portType("string")
.redundantPhysicalConnectionId("string")
.status("string")
.type("string")
.build());
physical_connection_resource = alicloud.expressconnect.PhysicalConnection("physicalConnectionResource",
access_point_id="string",
line_operator="string",
bandwidth="string",
circuit_code="string",
description="string",
peer_location="string",
physical_connection_name="string",
port_type="string",
redundant_physical_connection_id="string",
status="string",
type="string")
const physicalConnectionResource = new alicloud.expressconnect.PhysicalConnection("physicalConnectionResource", {
accessPointId: "string",
lineOperator: "string",
bandwidth: "string",
circuitCode: "string",
description: "string",
peerLocation: "string",
physicalConnectionName: "string",
portType: "string",
redundantPhysicalConnectionId: "string",
status: "string",
type: "string",
});
type: alicloud:expressconnect:PhysicalConnection
properties:
accessPointId: string
bandwidth: string
circuitCode: string
description: string
lineOperator: string
peerLocation: string
physicalConnectionName: string
portType: string
redundantPhysicalConnectionId: string
status: string
type: string
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:
- Access
Point stringId - The Physical Leased Line Access Point ID.
- Line
Operator 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.
- Circuit
Code string - Operators for Physical Connection Circuit Provided Coding.
- Description string
- The Physical Connection to Which the Description.
- Peer
Location string - and an on-Premises Data Center Location.
- Physical
Connection stringName - on Behalf of the Resource Name of the Resources-Attribute Field.
- Port
Type 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
and100GBase-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 stringConnection Id - 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 stringId - The Physical Leased Line Access Point ID.
- Line
Operator 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.
- Circuit
Code string - Operators for Physical Connection Circuit Provided Coding.
- Description string
- The Physical Connection to Which the Description.
- Peer
Location string - and an on-Premises Data Center Location.
- Physical
Connection stringName - on Behalf of the Resource Name of the Resources-Attribute Field.
- Port
Type 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
and100GBase-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 stringConnection Id - 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 StringId - The Physical Leased Line Access Point ID.
- line
Operator 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.
- circuit
Code String - Operators for Physical Connection Circuit Provided Coding.
- description String
- The Physical Connection to Which the Description.
- peer
Location String - and an on-Premises Data Center Location.
- physical
Connection StringName - on Behalf of the Resource Name of the Resources-Attribute Field.
- port
Type 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
and100GBase-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 StringConnection Id - 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 stringId - The Physical Leased Line Access Point ID.
- line
Operator 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.
- circuit
Code string - Operators for Physical Connection Circuit Provided Coding.
- description string
- The Physical Connection to Which the Description.
- peer
Location string - and an on-Premises Data Center Location.
- physical
Connection stringName - on Behalf of the Resource Name of the Resources-Attribute Field.
- port
Type 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
and100GBase-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 stringConnection Id - 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_ strid - 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_ strname - 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
and100GBase-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_ strconnection_ id - 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.
- access
Point StringId - The Physical Leased Line Access Point ID.
- line
Operator 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.
- circuit
Code String - Operators for Physical Connection Circuit Provided Coding.
- description String
- The Physical Connection to Which the Description.
- peer
Location String - and an on-Premises Data Center Location.
- physical
Connection StringName - on Behalf of the Resource Name of the Resources-Attribute Field.
- port
Type 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
and100GBase-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 StringConnection Id - 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.
- Access
Point stringId - The Physical Leased Line Access Point ID.
- Bandwidth string
- On the Bandwidth of the ECC Service and Physical Connection.
- Circuit
Code string - Operators for Physical Connection Circuit Provided Coding.
- Description string
- The Physical Connection to Which the Description.
- Line
Operator 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.
- Peer
Location string - and an on-Premises Data Center Location.
- Physical
Connection stringName - on Behalf of the Resource Name of the Resources-Attribute Field.
- Port
Type 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
and100GBase-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 stringConnection Id - 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 stringId - The Physical Leased Line Access Point ID.
- Bandwidth string
- On the Bandwidth of the ECC Service and Physical Connection.
- Circuit
Code string - Operators for Physical Connection Circuit Provided Coding.
- Description string
- The Physical Connection to Which the Description.
- Line
Operator 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.
- Peer
Location string - and an on-Premises Data Center Location.
- Physical
Connection stringName - on Behalf of the Resource Name of the Resources-Attribute Field.
- Port
Type 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
and100GBase-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 stringConnection Id - 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 StringId - The Physical Leased Line Access Point ID.
- bandwidth String
- On the Bandwidth of the ECC Service and Physical Connection.
- circuit
Code String - Operators for Physical Connection Circuit Provided Coding.
- description String
- The Physical Connection to Which the Description.
- line
Operator 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.
- peer
Location String - and an on-Premises Data Center Location.
- physical
Connection StringName - on Behalf of the Resource Name of the Resources-Attribute Field.
- port
Type 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
and100GBase-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 StringConnection Id - 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 stringId - The Physical Leased Line Access Point ID.
- bandwidth string
- On the Bandwidth of the ECC Service and Physical Connection.
- circuit
Code string - Operators for Physical Connection Circuit Provided Coding.
- description string
- The Physical Connection to Which the Description.
- line
Operator 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.
- peer
Location string - and an on-Premises Data Center Location.
- physical
Connection stringName - on Behalf of the Resource Name of the Resources-Attribute Field.
- port
Type 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
and100GBase-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 stringConnection Id - 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_ strid - 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_ strname - 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
and100GBase-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_ strconnection_ id - 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.
- access
Point StringId - The Physical Leased Line Access Point ID.
- bandwidth String
- On the Bandwidth of the ECC Service and Physical Connection.
- circuit
Code String - Operators for Physical Connection Circuit Provided Coding.
- description String
- The Physical Connection to Which the Description.
- line
Operator 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.
- peer
Location String - and an on-Premises Data Center Location.
- physical
Connection StringName - on Behalf of the Resource Name of the Resources-Attribute Field.
- port
Type 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
and100GBase-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 StringConnection Id - 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>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.