opentelekomcloud.DirectConnectV2
Explore with Pulumi AI
Up-to-date reference of API arguments for Direct Connect (DCaaS) you can get at documentation portal
Example usage
import * as pulumi from "@pulumi/pulumi";
import * as opentelekomcloud from "@pulumi/opentelekomcloud";
const directConnect = new opentelekomcloud.DirectConnectV2("directConnect", {
adminStateUp: true,
bandwidth: 100,
location: "location",
portType: "port_type",
providerName: "provider_name",
});
import pulumi
import pulumi_opentelekomcloud as opentelekomcloud
direct_connect = opentelekomcloud.DirectConnectV2("directConnect",
admin_state_up=True,
bandwidth=100,
location="location",
port_type="port_type",
provider_name="provider_name")
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.NewDirectConnectV2(ctx, "directConnect", &opentelekomcloud.DirectConnectV2Args{
AdminStateUp: pulumi.Bool(true),
Bandwidth: pulumi.Float64(100),
Location: pulumi.String("location"),
PortType: pulumi.String("port_type"),
ProviderName: pulumi.String("provider_name"),
})
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 = new Opentelekomcloud.DirectConnectV2("directConnect", new()
{
AdminStateUp = true,
Bandwidth = 100,
Location = "location",
PortType = "port_type",
ProviderName = "provider_name",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.opentelekomcloud.DirectConnectV2;
import com.pulumi.opentelekomcloud.DirectConnectV2Args;
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 directConnect = new DirectConnectV2("directConnect", DirectConnectV2Args.builder()
.adminStateUp(true)
.bandwidth(100)
.location("location")
.portType("port_type")
.providerName("provider_name")
.build());
}
}
resources:
directConnect:
type: opentelekomcloud:DirectConnectV2
properties:
adminStateUp: true
bandwidth: 100
location: location
portType: port_type
providerName: provider_name
Create DirectConnectV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DirectConnectV2(name: string, args: DirectConnectV2Args, opts?: CustomResourceOptions);
@overload
def DirectConnectV2(resource_name: str,
args: DirectConnectV2Args,
opts: Optional[ResourceOptions] = None)
@overload
def DirectConnectV2(resource_name: str,
opts: Optional[ResourceOptions] = None,
provider_name: Optional[str] = None,
peer_location: Optional[str] = None,
charge_mode: Optional[str] = None,
description: Optional[str] = None,
device_id: Optional[str] = None,
hosting_id: Optional[str] = None,
interface_name: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
admin_state_up: Optional[bool] = None,
order_id: Optional[str] = None,
bandwidth: Optional[float] = None,
product_id: Optional[str] = None,
port_type: Optional[str] = None,
provider_status: Optional[str] = None,
redundant_id: Optional[str] = None,
status: Optional[str] = None,
tenant_id: Optional[str] = None,
timeouts: Optional[DirectConnectV2TimeoutsArgs] = None,
type: Optional[str] = None,
vlan: Optional[float] = None)
func NewDirectConnectV2(ctx *Context, name string, args DirectConnectV2Args, opts ...ResourceOption) (*DirectConnectV2, error)
public DirectConnectV2(string name, DirectConnectV2Args args, CustomResourceOptions? opts = null)
public DirectConnectV2(String name, DirectConnectV2Args args)
public DirectConnectV2(String name, DirectConnectV2Args args, CustomResourceOptions options)
type: opentelekomcloud:DirectConnectV2
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 DirectConnectV2Args
- 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 DirectConnectV2Args
- 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 DirectConnectV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DirectConnectV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DirectConnectV2Args
- 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 directConnectV2Resource = new Opentelekomcloud.DirectConnectV2("directConnectV2Resource", new()
{
ProviderName = "string",
PeerLocation = "string",
ChargeMode = "string",
Description = "string",
DeviceId = "string",
HostingId = "string",
InterfaceName = "string",
Location = "string",
Name = "string",
AdminStateUp = false,
OrderId = "string",
Bandwidth = 0,
ProductId = "string",
PortType = "string",
ProviderStatus = "string",
RedundantId = "string",
Status = "string",
TenantId = "string",
Timeouts = new Opentelekomcloud.Inputs.DirectConnectV2TimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
Type = "string",
Vlan = 0,
});
example, err := opentelekomcloud.NewDirectConnectV2(ctx, "directConnectV2Resource", &opentelekomcloud.DirectConnectV2Args{
ProviderName: pulumi.String("string"),
PeerLocation: pulumi.String("string"),
ChargeMode: pulumi.String("string"),
Description: pulumi.String("string"),
DeviceId: pulumi.String("string"),
HostingId: pulumi.String("string"),
InterfaceName: pulumi.String("string"),
Location: pulumi.String("string"),
Name: pulumi.String("string"),
AdminStateUp: pulumi.Bool(false),
OrderId: pulumi.String("string"),
Bandwidth: pulumi.Float64(0),
ProductId: pulumi.String("string"),
PortType: pulumi.String("string"),
ProviderStatus: pulumi.String("string"),
RedundantId: pulumi.String("string"),
Status: pulumi.String("string"),
TenantId: pulumi.String("string"),
Timeouts: &opentelekomcloud.DirectConnectV2TimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
Type: pulumi.String("string"),
Vlan: pulumi.Float64(0),
})
var directConnectV2Resource = new DirectConnectV2("directConnectV2Resource", DirectConnectV2Args.builder()
.providerName("string")
.peerLocation("string")
.chargeMode("string")
.description("string")
.deviceId("string")
.hostingId("string")
.interfaceName("string")
.location("string")
.name("string")
.adminStateUp(false)
.orderId("string")
.bandwidth(0)
.productId("string")
.portType("string")
.providerStatus("string")
.redundantId("string")
.status("string")
.tenantId("string")
.timeouts(DirectConnectV2TimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.type("string")
.vlan(0)
.build());
direct_connect_v2_resource = opentelekomcloud.DirectConnectV2("directConnectV2Resource",
provider_name="string",
peer_location="string",
charge_mode="string",
description="string",
device_id="string",
hosting_id="string",
interface_name="string",
location="string",
name="string",
admin_state_up=False,
order_id="string",
bandwidth=0,
product_id="string",
port_type="string",
provider_status="string",
redundant_id="string",
status="string",
tenant_id="string",
timeouts={
"create": "string",
"delete": "string",
"update": "string",
},
type="string",
vlan=0)
const directConnectV2Resource = new opentelekomcloud.DirectConnectV2("directConnectV2Resource", {
providerName: "string",
peerLocation: "string",
chargeMode: "string",
description: "string",
deviceId: "string",
hostingId: "string",
interfaceName: "string",
location: "string",
name: "string",
adminStateUp: false,
orderId: "string",
bandwidth: 0,
productId: "string",
portType: "string",
providerStatus: "string",
redundantId: "string",
status: "string",
tenantId: "string",
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
type: "string",
vlan: 0,
});
type: opentelekomcloud:DirectConnectV2
properties:
adminStateUp: false
bandwidth: 0
chargeMode: string
description: string
deviceId: string
hostingId: string
interfaceName: string
location: string
name: string
orderId: string
peerLocation: string
portType: string
productId: string
providerName: string
providerStatus: string
redundantId: string
status: string
tenantId: string
timeouts:
create: string
delete: string
update: string
type: string
vlan: 0
DirectConnectV2 Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DirectConnectV2 resource accepts the following input properties:
- Provider
Name string - Admin
State boolUp - Bandwidth double
- Charge
Mode string - Description string
- Device
Id string - Hosting
Id string - Interface
Name string - Location string
- Name string
- Order
Id string - Peer
Location string - Port
Type string - Product
Id string - Provider
Status string - Redundant
Id string - Status string
- Tenant
Id string - Timeouts
Direct
Connect V2Timeouts - Type string
- Vlan double
- Provider
Name string - Admin
State boolUp - Bandwidth float64
- Charge
Mode string - Description string
- Device
Id string - Hosting
Id string - Interface
Name string - Location string
- Name string
- Order
Id string - Peer
Location string - Port
Type string - Product
Id string - Provider
Status string - Redundant
Id string - Status string
- Tenant
Id string - Timeouts
Direct
Connect V2Timeouts Args - Type string
- Vlan float64
- provider
Name String - admin
State BooleanUp - bandwidth Double
- charge
Mode String - description String
- device
Id String - hosting
Id String - interface
Name String - location String
- name String
- order
Id String - peer
Location String - port
Type String - product
Id String - provider
Status String - redundant
Id String - status String
- tenant
Id String - timeouts
Direct
Connect V2Timeouts - type String
- vlan Double
- provider
Name string - admin
State booleanUp - bandwidth number
- charge
Mode string - description string
- device
Id string - hosting
Id string - interface
Name string - location string
- name string
- order
Id string - peer
Location string - port
Type string - product
Id string - provider
Status string - redundant
Id string - status string
- tenant
Id string - timeouts
Direct
Connect V2Timeouts - type string
- vlan number
- provider_
name str - admin_
state_ boolup - bandwidth float
- charge_
mode str - description str
- device_
id str - hosting_
id str - interface_
name str - location str
- name str
- order_
id str - peer_
location str - port_
type str - product_
id str - provider_
status str - redundant_
id str - status str
- tenant_
id str - timeouts
Direct
Connect V2Timeouts Args - type str
- vlan float
- provider
Name String - admin
State BooleanUp - bandwidth Number
- charge
Mode String - description String
- device
Id String - hosting
Id String - interface
Name String - location String
- name String
- order
Id String - peer
Location String - port
Type String - product
Id String - provider
Status String - redundant
Id String - status String
- tenant
Id String - timeouts Property Map
- type String
- vlan Number
Outputs
All input properties are implicitly available as output properties. Additionally, the DirectConnectV2 resource produces the following output properties:
- Applicant string
- (String) - This is a reserved field, which is not used currently.
- Apply
Time string - (String) - Specifies the time when the connection was requested.
- Building
Line stringProduct Id - (String) - This is a reserved field, which is not used currently.
- Cable
Label string - (String) - This is a reserved field, which is not used currently.
- Create
Time string - (String) - Specifies the time when the connection is created.
- Delete
Time string - (String) - Specifies the time when the connection was deleted.
- Email string
- (String) - This is a reserved field, which is not used currently.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lag
Id string - (String) - This is a reserved field, which is not used currently.
- Last
Onestop stringProduct Id - (String) - This is a reserved field, which is not used currently.
- Mobile string
- (String) - This is a reserved field, which is not used currently.
- Onestop
Product stringId - (String) - This is a reserved field, which is not used currently.
- Peer
Port stringType - (String) - This is a reserved field, which is not used currently.
- Peer
Provider string - (String) - This is a reserved field, which is not used currently.
- Period
Num double - (Number) - This is a reserved field, which is not used currently.
- Period
Type double - (Number) - This is a reserved field, which is not used currently.
- Reason string
- (String) - This is a reserved field, which is not used currently.
- Region
Id string - (String) - Specifies the region ID.
- Service
Key string - (String) - This is a reserved field, which is not used currently.
- Spec
Code string - (String) - This is a reserved field, which is not used currently.
- Vgw
Type string - (String) - Specifies the type of the gateway. Currently, only the default type is supported.
- Applicant string
- (String) - This is a reserved field, which is not used currently.
- Apply
Time string - (String) - Specifies the time when the connection was requested.
- Building
Line stringProduct Id - (String) - This is a reserved field, which is not used currently.
- Cable
Label string - (String) - This is a reserved field, which is not used currently.
- Create
Time string - (String) - Specifies the time when the connection is created.
- Delete
Time string - (String) - Specifies the time when the connection was deleted.
- Email string
- (String) - This is a reserved field, which is not used currently.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lag
Id string - (String) - This is a reserved field, which is not used currently.
- Last
Onestop stringProduct Id - (String) - This is a reserved field, which is not used currently.
- Mobile string
- (String) - This is a reserved field, which is not used currently.
- Onestop
Product stringId - (String) - This is a reserved field, which is not used currently.
- Peer
Port stringType - (String) - This is a reserved field, which is not used currently.
- Peer
Provider string - (String) - This is a reserved field, which is not used currently.
- Period
Num float64 - (Number) - This is a reserved field, which is not used currently.
- Period
Type float64 - (Number) - This is a reserved field, which is not used currently.
- Reason string
- (String) - This is a reserved field, which is not used currently.
- Region
Id string - (String) - Specifies the region ID.
- Service
Key string - (String) - This is a reserved field, which is not used currently.
- Spec
Code string - (String) - This is a reserved field, which is not used currently.
- Vgw
Type string - (String) - Specifies the type of the gateway. Currently, only the default type is supported.
- applicant String
- (String) - This is a reserved field, which is not used currently.
- apply
Time String - (String) - Specifies the time when the connection was requested.
- building
Line StringProduct Id - (String) - This is a reserved field, which is not used currently.
- cable
Label String - (String) - This is a reserved field, which is not used currently.
- create
Time String - (String) - Specifies the time when the connection is created.
- delete
Time String - (String) - Specifies the time when the connection was deleted.
- email String
- (String) - This is a reserved field, which is not used currently.
- id String
- The provider-assigned unique ID for this managed resource.
- lag
Id String - (String) - This is a reserved field, which is not used currently.
- last
Onestop StringProduct Id - (String) - This is a reserved field, which is not used currently.
- mobile String
- (String) - This is a reserved field, which is not used currently.
- onestop
Product StringId - (String) - This is a reserved field, which is not used currently.
- peer
Port StringType - (String) - This is a reserved field, which is not used currently.
- peer
Provider String - (String) - This is a reserved field, which is not used currently.
- period
Num Double - (Number) - This is a reserved field, which is not used currently.
- period
Type Double - (Number) - This is a reserved field, which is not used currently.
- reason String
- (String) - This is a reserved field, which is not used currently.
- region
Id String - (String) - Specifies the region ID.
- service
Key String - (String) - This is a reserved field, which is not used currently.
- spec
Code String - (String) - This is a reserved field, which is not used currently.
- vgw
Type String - (String) - Specifies the type of the gateway. Currently, only the default type is supported.
- applicant string
- (String) - This is a reserved field, which is not used currently.
- apply
Time string - (String) - Specifies the time when the connection was requested.
- building
Line stringProduct Id - (String) - This is a reserved field, which is not used currently.
- cable
Label string - (String) - This is a reserved field, which is not used currently.
- create
Time string - (String) - Specifies the time when the connection is created.
- delete
Time string - (String) - Specifies the time when the connection was deleted.
- email string
- (String) - This is a reserved field, which is not used currently.
- id string
- The provider-assigned unique ID for this managed resource.
- lag
Id string - (String) - This is a reserved field, which is not used currently.
- last
Onestop stringProduct Id - (String) - This is a reserved field, which is not used currently.
- mobile string
- (String) - This is a reserved field, which is not used currently.
- onestop
Product stringId - (String) - This is a reserved field, which is not used currently.
- peer
Port stringType - (String) - This is a reserved field, which is not used currently.
- peer
Provider string - (String) - This is a reserved field, which is not used currently.
- period
Num number - (Number) - This is a reserved field, which is not used currently.
- period
Type number - (Number) - This is a reserved field, which is not used currently.
- reason string
- (String) - This is a reserved field, which is not used currently.
- region
Id string - (String) - Specifies the region ID.
- service
Key string - (String) - This is a reserved field, which is not used currently.
- spec
Code string - (String) - This is a reserved field, which is not used currently.
- vgw
Type string - (String) - Specifies the type of the gateway. Currently, only the default type is supported.
- 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.
- building_
line_ strproduct_ id - (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.
- create_
time str - (String) - Specifies the time when the connection is created.
- delete_
time str - (String) - Specifies the time when the connection was deleted.
- email str
- (String) - This is a reserved field, which is not used currently.
- id str
- The provider-assigned unique ID for this managed resource.
- lag_
id str - (String) - This is a reserved field, which is not used currently.
- last_
onestop_ strproduct_ id - (String) - This is a reserved field, which is not used currently.
- mobile str
- (String) - This is a reserved field, which is not used currently.
- onestop_
product_ strid - (String) - This is a reserved field, which is not used currently.
- peer_
port_ strtype - (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.
- reason str
- (String) - This is a reserved field, which is not used currently.
- 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.
- vgw_
type str - (String) - Specifies the type of the gateway. Currently, only the default type is supported.
- applicant String
- (String) - This is a reserved field, which is not used currently.
- apply
Time String - (String) - Specifies the time when the connection was requested.
- building
Line StringProduct Id - (String) - This is a reserved field, which is not used currently.
- cable
Label String - (String) - This is a reserved field, which is not used currently.
- create
Time String - (String) - Specifies the time when the connection is created.
- delete
Time String - (String) - Specifies the time when the connection was deleted.
- email String
- (String) - This is a reserved field, which is not used currently.
- id String
- The provider-assigned unique ID for this managed resource.
- lag
Id String - (String) - This is a reserved field, which is not used currently.
- last
Onestop StringProduct Id - (String) - This is a reserved field, which is not used currently.
- mobile String
- (String) - This is a reserved field, which is not used currently.
- onestop
Product StringId - (String) - This is a reserved field, which is not used currently.
- peer
Port StringType - (String) - This is a reserved field, which is not used currently.
- peer
Provider String - (String) - This is a reserved field, which is not used currently.
- period
Num Number - (Number) - This is a reserved field, which is not used currently.
- period
Type Number - (Number) - This is a reserved field, which is not used currently.
- reason String
- (String) - This is a reserved field, which is not used currently.
- region
Id String - (String) - Specifies the region ID.
- service
Key String - (String) - This is a reserved field, which is not used currently.
- spec
Code String - (String) - This is a reserved field, which is not used currently.
- vgw
Type String - (String) - Specifies the type of the gateway. Currently, only the default type is supported.
Look up Existing DirectConnectV2 Resource
Get an existing DirectConnectV2 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?: DirectConnectV2State, opts?: CustomResourceOptions): DirectConnectV2
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
admin_state_up: Optional[bool] = None,
applicant: Optional[str] = None,
apply_time: Optional[str] = None,
bandwidth: Optional[float] = None,
building_line_product_id: Optional[str] = None,
cable_label: Optional[str] = None,
charge_mode: Optional[str] = None,
create_time: Optional[str] = None,
delete_time: Optional[str] = None,
description: Optional[str] = None,
device_id: Optional[str] = None,
email: Optional[str] = None,
hosting_id: Optional[str] = None,
interface_name: Optional[str] = None,
lag_id: Optional[str] = None,
last_onestop_product_id: Optional[str] = None,
location: Optional[str] = None,
mobile: Optional[str] = None,
name: Optional[str] = None,
onestop_product_id: Optional[str] = None,
order_id: Optional[str] = None,
peer_location: Optional[str] = None,
peer_port_type: Optional[str] = None,
peer_provider: Optional[str] = None,
period_num: Optional[float] = None,
period_type: Optional[float] = None,
port_type: Optional[str] = None,
product_id: Optional[str] = None,
provider_name: Optional[str] = None,
provider_status: Optional[str] = None,
reason: Optional[str] = None,
redundant_id: Optional[str] = None,
region_id: Optional[str] = None,
service_key: Optional[str] = None,
spec_code: Optional[str] = None,
status: Optional[str] = None,
tenant_id: Optional[str] = None,
timeouts: Optional[DirectConnectV2TimeoutsArgs] = None,
type: Optional[str] = None,
vgw_type: Optional[str] = None,
vlan: Optional[float] = None) -> DirectConnectV2
func GetDirectConnectV2(ctx *Context, name string, id IDInput, state *DirectConnectV2State, opts ...ResourceOption) (*DirectConnectV2, error)
public static DirectConnectV2 Get(string name, Input<string> id, DirectConnectV2State? state, CustomResourceOptions? opts = null)
public static DirectConnectV2 get(String name, Output<String> id, DirectConnectV2State state, CustomResourceOptions options)
resources: _: type: opentelekomcloud:DirectConnectV2 get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Admin
State boolUp - Applicant string
- (String) - This is a reserved field, which is not used currently.
- Apply
Time string - (String) - Specifies the time when the connection was requested.
- Bandwidth double
- Building
Line stringProduct Id - (String) - This is a reserved field, which is not used currently.
- Cable
Label string - (String) - This is a reserved field, which is not used currently.
- Charge
Mode string - Create
Time string - (String) - Specifies the time when the connection is created.
- Delete
Time string - (String) - Specifies the time when the connection was deleted.
- Description string
- Device
Id string - Email string
- (String) - This is a reserved field, which is not used currently.
- Hosting
Id string - Interface
Name string - Lag
Id string - (String) - This is a reserved field, which is not used currently.
- Last
Onestop stringProduct Id - (String) - This is a reserved field, which is not used currently.
- Location string
- Mobile string
- (String) - This is a reserved field, which is not used currently.
- Name string
- Onestop
Product stringId - (String) - This is a reserved field, which is not used currently.
- Order
Id string - Peer
Location string - Peer
Port stringType - (String) - This is a reserved field, which is not used currently.
- Peer
Provider string - (String) - This is a reserved field, which is not used currently.
- Period
Num double - (Number) - This is a reserved field, which is not used currently.
- Period
Type double - (Number) - This is a reserved field, which is not used currently.
- Port
Type string - Product
Id string - Provider
Name string - Provider
Status string - Reason string
- (String) - This is a reserved field, which is not used currently.
- Redundant
Id string - Region
Id string - (String) - Specifies the region ID.
- Service
Key string - (String) - This is a reserved field, which is not used currently.
- Spec
Code string - (String) - This is a reserved field, which is not used currently.
- Status string
- Tenant
Id string - Timeouts
Direct
Connect V2Timeouts - Type string
- Vgw
Type string - (String) - Specifies the type of the gateway. Currently, only the default type is supported.
- Vlan double
- Admin
State boolUp - Applicant string
- (String) - This is a reserved field, which is not used currently.
- Apply
Time string - (String) - Specifies the time when the connection was requested.
- Bandwidth float64
- Building
Line stringProduct Id - (String) - This is a reserved field, which is not used currently.
- Cable
Label string - (String) - This is a reserved field, which is not used currently.
- Charge
Mode string - Create
Time string - (String) - Specifies the time when the connection is created.
- Delete
Time string - (String) - Specifies the time when the connection was deleted.
- Description string
- Device
Id string - Email string
- (String) - This is a reserved field, which is not used currently.
- Hosting
Id string - Interface
Name string - Lag
Id string - (String) - This is a reserved field, which is not used currently.
- Last
Onestop stringProduct Id - (String) - This is a reserved field, which is not used currently.
- Location string
- Mobile string
- (String) - This is a reserved field, which is not used currently.
- Name string
- Onestop
Product stringId - (String) - This is a reserved field, which is not used currently.
- Order
Id string - Peer
Location string - Peer
Port stringType - (String) - This is a reserved field, which is not used currently.
- Peer
Provider string - (String) - This is a reserved field, which is not used currently.
- Period
Num float64 - (Number) - This is a reserved field, which is not used currently.
- Period
Type float64 - (Number) - This is a reserved field, which is not used currently.
- Port
Type string - Product
Id string - Provider
Name string - Provider
Status string - Reason string
- (String) - This is a reserved field, which is not used currently.
- Redundant
Id string - Region
Id string - (String) - Specifies the region ID.
- Service
Key string - (String) - This is a reserved field, which is not used currently.
- Spec
Code string - (String) - This is a reserved field, which is not used currently.
- Status string
- Tenant
Id string - Timeouts
Direct
Connect V2Timeouts Args - Type string
- Vgw
Type string - (String) - Specifies the type of the gateway. Currently, only the default type is supported.
- Vlan float64
- admin
State BooleanUp - applicant String
- (String) - This is a reserved field, which is not used currently.
- apply
Time String - (String) - Specifies the time when the connection was requested.
- bandwidth Double
- building
Line StringProduct Id - (String) - This is a reserved field, which is not used currently.
- cable
Label String - (String) - This is a reserved field, which is not used currently.
- charge
Mode String - create
Time String - (String) - Specifies the time when the connection is created.
- delete
Time String - (String) - Specifies the time when the connection was deleted.
- description String
- device
Id String - email String
- (String) - This is a reserved field, which is not used currently.
- hosting
Id String - interface
Name String - lag
Id String - (String) - This is a reserved field, which is not used currently.
- last
Onestop StringProduct Id - (String) - This is a reserved field, which is not used currently.
- location String
- mobile String
- (String) - This is a reserved field, which is not used currently.
- name String
- onestop
Product StringId - (String) - This is a reserved field, which is not used currently.
- order
Id String - peer
Location String - peer
Port StringType - (String) - This is a reserved field, which is not used currently.
- peer
Provider String - (String) - This is a reserved field, which is not used currently.
- period
Num Double - (Number) - This is a reserved field, which is not used currently.
- period
Type Double - (Number) - This is a reserved field, which is not used currently.
- port
Type String - product
Id String - provider
Name String - provider
Status String - reason String
- (String) - This is a reserved field, which is not used currently.
- redundant
Id String - region
Id String - (String) - Specifies the region ID.
- service
Key String - (String) - This is a reserved field, which is not used currently.
- spec
Code String - (String) - This is a reserved field, which is not used currently.
- status String
- tenant
Id String - timeouts
Direct
Connect V2Timeouts - type String
- vgw
Type String - (String) - Specifies the type of the gateway. Currently, only the default type is supported.
- vlan Double
- admin
State booleanUp - applicant string
- (String) - This is a reserved field, which is not used currently.
- apply
Time string - (String) - Specifies the time when the connection was requested.
- bandwidth number
- building
Line stringProduct Id - (String) - This is a reserved field, which is not used currently.
- cable
Label string - (String) - This is a reserved field, which is not used currently.
- charge
Mode string - create
Time string - (String) - Specifies the time when the connection is created.
- delete
Time string - (String) - Specifies the time when the connection was deleted.
- description string
- device
Id string - email string
- (String) - This is a reserved field, which is not used currently.
- hosting
Id string - interface
Name string - lag
Id string - (String) - This is a reserved field, which is not used currently.
- last
Onestop stringProduct Id - (String) - This is a reserved field, which is not used currently.
- location string
- mobile string
- (String) - This is a reserved field, which is not used currently.
- name string
- onestop
Product stringId - (String) - This is a reserved field, which is not used currently.
- order
Id string - peer
Location string - peer
Port stringType - (String) - This is a reserved field, which is not used currently.
- peer
Provider string - (String) - This is a reserved field, which is not used currently.
- period
Num number - (Number) - This is a reserved field, which is not used currently.
- period
Type number - (Number) - This is a reserved field, which is not used currently.
- port
Type string - product
Id string - provider
Name string - provider
Status string - reason string
- (String) - This is a reserved field, which is not used currently.
- redundant
Id string - region
Id string - (String) - Specifies the region ID.
- service
Key string - (String) - This is a reserved field, which is not used currently.
- spec
Code string - (String) - This is a reserved field, which is not used currently.
- status string
- tenant
Id string - timeouts
Direct
Connect V2Timeouts - type string
- vgw
Type string - (String) - Specifies the type of the gateway. Currently, only the default type is supported.
- vlan number
- admin_
state_ boolup - 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
- building_
line_ strproduct_ id - (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 - 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
- device_
id str - email str
- (String) - This is a reserved field, which is not used currently.
- hosting_
id str - interface_
name str - lag_
id str - (String) - This is a reserved field, which is not used currently.
- last_
onestop_ strproduct_ id - (String) - This is a reserved field, which is not used currently.
- location str
- mobile str
- (String) - This is a reserved field, which is not used currently.
- name str
- onestop_
product_ strid - (String) - This is a reserved field, which is not used currently.
- order_
id str - peer_
location str - peer_
port_ strtype - (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 - product_
id str - provider_
name str - provider_
status str - reason str
- (String) - This is a reserved field, which is not used currently.
- redundant_
id 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
- tenant_
id str - timeouts
Direct
Connect V2Timeouts Args - type str
- vgw_
type str - (String) - Specifies the type of the gateway. Currently, only the default type is supported.
- vlan float
- admin
State BooleanUp - applicant String
- (String) - This is a reserved field, which is not used currently.
- apply
Time String - (String) - Specifies the time when the connection was requested.
- bandwidth Number
- building
Line StringProduct Id - (String) - This is a reserved field, which is not used currently.
- cable
Label String - (String) - This is a reserved field, which is not used currently.
- charge
Mode String - create
Time String - (String) - Specifies the time when the connection is created.
- delete
Time String - (String) - Specifies the time when the connection was deleted.
- description String
- device
Id String - email String
- (String) - This is a reserved field, which is not used currently.
- hosting
Id String - interface
Name String - lag
Id String - (String) - This is a reserved field, which is not used currently.
- last
Onestop StringProduct Id - (String) - This is a reserved field, which is not used currently.
- location String
- mobile String
- (String) - This is a reserved field, which is not used currently.
- name String
- onestop
Product StringId - (String) - This is a reserved field, which is not used currently.
- order
Id String - peer
Location String - peer
Port StringType - (String) - This is a reserved field, which is not used currently.
- peer
Provider String - (String) - This is a reserved field, which is not used currently.
- period
Num Number - (Number) - This is a reserved field, which is not used currently.
- period
Type Number - (Number) - This is a reserved field, which is not used currently.
- port
Type String - product
Id String - provider
Name String - provider
Status String - reason String
- (String) - This is a reserved field, which is not used currently.
- redundant
Id String - region
Id String - (String) - Specifies the region ID.
- service
Key String - (String) - This is a reserved field, which is not used currently.
- spec
Code String - (String) - This is a reserved field, which is not used currently.
- status String
- tenant
Id String - timeouts Property Map
- type String
- vgw
Type String - (String) - Specifies the type of the gateway. Currently, only the default type is supported.
- vlan Number
Supporting Types
DirectConnectV2Timeouts, DirectConnectV2TimeoutsArgs
Package Details
- Repository
- opentelekomcloud opentelekomcloud/terraform-provider-opentelekomcloud
- License
- Notes
- This Pulumi package is based on the
opentelekomcloud
Terraform Provider.