Equinix v0.18.0 published on Monday, Sep 23, 2024 by Equinix
equinix.fabric.getConnection
Explore with Pulumi AI
Fabric V4 API compatible data resource that allow user to fetch connection for a given UUID
Additional documentation:
- Getting Started: https://docs.equinix.com/en-us/Content/Interconnection/Fabric/IMPLEMENTATION/fabric-connections-implement.htm
- API: https://developer.equinix.com/dev-docs/fabric/api-reference/fabric-v4-apis#connections
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as equinix from "@pulumi/equinix";
const connectionDataName = equinix.fabric.getConnection({
uuid: "<uuid_of_connection>",
});
export const id = connectionDataName.then(connectionDataName => connectionDataName.id);
export const name = connectionDataName.then(connectionDataName => connectionDataName.bandwidth);
export const accountNumber = connectionDataName.then(connectionDataName => connectionDataName.account?.accountNumber);
export const bandwidth = connectionDataName.then(connectionDataName => connectionDataName.bandwidth);
export const projectId = connectionDataName.then(connectionDataName => connectionDataName.project?.projectId);
export const redundancyGroup = connectionDataName.then(connectionDataName => connectionDataName.redundancy?.group);
export const redundancyPriority = connectionDataName.then(connectionDataName => connectionDataName.redundancy?.priority);
export const state = connectionDataName.then(connectionDataName => connectionDataName.state);
export const type = connectionDataName.then(connectionDataName => connectionDataName.type);
export const accessPointType = connectionDataName.then(connectionDataName => connectionDataName.aSide?.accessPoint?.type);
export const accessPointLinkProtocolType = connectionDataName.then(connectionDataName => connectionDataName.aSide?.accessPoint?.linkProtocol?.type);
export const accessPointLinkProtocolVlanTag = connectionDataName.then(connectionDataName => connectionDataName.aSide?.accessPoint?.linkProtocol?.vlanTag);
export const accessPointLinkProtocolVlanCTag = connectionDataName.then(connectionDataName => connectionDataName.aSide?.accessPoint?.linkProtocol?.vlanCTag);
export const accessPointLinkProtocolVlanSTag = connectionDataName.then(connectionDataName => connectionDataName.aSide?.accessPoint?.linkProtocol?.vlanSTag);
export const accessPointProviderConnectionId = connectionDataName.then(connectionDataName => connectionDataName.aSide?.accessPoint?.providerConnectionId);
import pulumi
import pulumi_equinix as equinix
connection_data_name = equinix.fabric.get_connection(uuid="<uuid_of_connection>")
pulumi.export("id", connection_data_name.id)
pulumi.export("name", connection_data_name.bandwidth)
pulumi.export("accountNumber", connection_data_name.account.account_number)
pulumi.export("bandwidth", connection_data_name.bandwidth)
pulumi.export("projectId", connection_data_name.project.project_id)
pulumi.export("redundancyGroup", connection_data_name.redundancy.group)
pulumi.export("redundancyPriority", connection_data_name.redundancy.priority)
pulumi.export("state", connection_data_name.state)
pulumi.export("type", connection_data_name.type)
pulumi.export("accessPointType", connection_data_name.a_side.access_point.type)
pulumi.export("accessPointLinkProtocolType", connection_data_name.a_side.access_point.link_protocol.type)
pulumi.export("accessPointLinkProtocolVlanTag", connection_data_name.a_side.access_point.link_protocol.vlan_tag)
pulumi.export("accessPointLinkProtocolVlanCTag", connection_data_name.a_side.access_point.link_protocol.vlan_c_tag)
pulumi.export("accessPointLinkProtocolVlanSTag", connection_data_name.a_side.access_point.link_protocol.vlan_s_tag)
pulumi.export("accessPointProviderConnectionId", connection_data_name.a_side.access_point.provider_connection_id)
package main
import (
"github.com/equinix/pulumi-equinix/sdk/go/equinix/fabric"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
connectionDataName, err := fabric.LookupConnection(ctx, &fabric.LookupConnectionArgs{
Uuid: "<uuid_of_connection>",
}, nil)
if err != nil {
return err
}
ctx.Export("id", connectionDataName.Id)
ctx.Export("name", connectionDataName.Bandwidth)
ctx.Export("accountNumber", connectionDataName.Account.AccountNumber)
ctx.Export("bandwidth", connectionDataName.Bandwidth)
ctx.Export("projectId", connectionDataName.Project.ProjectId)
ctx.Export("redundancyGroup", connectionDataName.Redundancy.Group)
ctx.Export("redundancyPriority", connectionDataName.Redundancy.Priority)
ctx.Export("state", connectionDataName.State)
ctx.Export("type", connectionDataName.Type)
ctx.Export("accessPointType", connectionDataName.ASide.AccessPoint.Type)
ctx.Export("accessPointLinkProtocolType", connectionDataName.ASide.AccessPoint.LinkProtocol.Type)
ctx.Export("accessPointLinkProtocolVlanTag", connectionDataName.ASide.AccessPoint.LinkProtocol.VlanTag)
ctx.Export("accessPointLinkProtocolVlanCTag", connectionDataName.ASide.AccessPoint.LinkProtocol.VlanCTag)
ctx.Export("accessPointLinkProtocolVlanSTag", connectionDataName.ASide.AccessPoint.LinkProtocol.VlanSTag)
ctx.Export("accessPointProviderConnectionId", connectionDataName.ASide.AccessPoint.ProviderConnectionId)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Equinix = Pulumi.Equinix;
return await Deployment.RunAsync(() =>
{
var connectionDataName = Equinix.Fabric.GetConnection.Invoke(new()
{
Uuid = "<uuid_of_connection>",
});
return new Dictionary<string, object?>
{
["id"] = connectionDataName.Apply(getConnectionResult => getConnectionResult.Id),
["name"] = connectionDataName.Apply(getConnectionResult => getConnectionResult.Bandwidth),
["accountNumber"] = connectionDataName.Apply(getConnectionResult => getConnectionResult.Account?.AccountNumber),
["bandwidth"] = connectionDataName.Apply(getConnectionResult => getConnectionResult.Bandwidth),
["projectId"] = connectionDataName.Apply(getConnectionResult => getConnectionResult.Project?.ProjectId),
["redundancyGroup"] = connectionDataName.Apply(getConnectionResult => getConnectionResult.Redundancy?.Group),
["redundancyPriority"] = connectionDataName.Apply(getConnectionResult => getConnectionResult.Redundancy?.Priority),
["state"] = connectionDataName.Apply(getConnectionResult => getConnectionResult.State),
["type"] = connectionDataName.Apply(getConnectionResult => getConnectionResult.Type),
["accessPointType"] = connectionDataName.Apply(getConnectionResult => getConnectionResult.ASide?.AccessPoint?.Type),
["accessPointLinkProtocolType"] = connectionDataName.Apply(getConnectionResult => getConnectionResult.ASide?.AccessPoint?.LinkProtocol?.Type),
["accessPointLinkProtocolVlanTag"] = connectionDataName.Apply(getConnectionResult => getConnectionResult.ASide?.AccessPoint?.LinkProtocol?.VlanTag),
["accessPointLinkProtocolVlanCTag"] = connectionDataName.Apply(getConnectionResult => getConnectionResult.ASide?.AccessPoint?.LinkProtocol?.VlanCTag),
["accessPointLinkProtocolVlanSTag"] = connectionDataName.Apply(getConnectionResult => getConnectionResult.ASide?.AccessPoint?.LinkProtocol?.VlanSTag),
["accessPointProviderConnectionId"] = connectionDataName.Apply(getConnectionResult => getConnectionResult.ASide?.AccessPoint?.ProviderConnectionId),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.equinix.fabric.FabricFunctions;
import com.pulumi.equinix.fabric.inputs.GetConnectionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var connectionDataName = FabricFunctions.getConnection(GetConnectionArgs.builder()
.uuid("<uuid_of_connection>")
.build());
ctx.export("id", connectionDataName.applyValue(getConnectionResult -> getConnectionResult.id()));
ctx.export("name", connectionDataName.applyValue(getConnectionResult -> getConnectionResult.bandwidth()));
ctx.export("accountNumber", connectionDataName.applyValue(getConnectionResult -> getConnectionResult.account().accountNumber()));
ctx.export("bandwidth", connectionDataName.applyValue(getConnectionResult -> getConnectionResult.bandwidth()));
ctx.export("projectId", connectionDataName.applyValue(getConnectionResult -> getConnectionResult.project().projectId()));
ctx.export("redundancyGroup", connectionDataName.applyValue(getConnectionResult -> getConnectionResult.redundancy().group()));
ctx.export("redundancyPriority", connectionDataName.applyValue(getConnectionResult -> getConnectionResult.redundancy().priority()));
ctx.export("state", connectionDataName.applyValue(getConnectionResult -> getConnectionResult.state()));
ctx.export("type", connectionDataName.applyValue(getConnectionResult -> getConnectionResult.type()));
ctx.export("accessPointType", connectionDataName.applyValue(getConnectionResult -> getConnectionResult.aSide().accessPoint().type()));
ctx.export("accessPointLinkProtocolType", connectionDataName.applyValue(getConnectionResult -> getConnectionResult.aSide().accessPoint().linkProtocol().type()));
ctx.export("accessPointLinkProtocolVlanTag", connectionDataName.applyValue(getConnectionResult -> getConnectionResult.aSide().accessPoint().linkProtocol().vlanTag()));
ctx.export("accessPointLinkProtocolVlanCTag", connectionDataName.applyValue(getConnectionResult -> getConnectionResult.aSide().accessPoint().linkProtocol().vlanCTag()));
ctx.export("accessPointLinkProtocolVlanSTag", connectionDataName.applyValue(getConnectionResult -> getConnectionResult.aSide().accessPoint().linkProtocol().vlanSTag()));
ctx.export("accessPointProviderConnectionId", connectionDataName.applyValue(getConnectionResult -> getConnectionResult.aSide().accessPoint().providerConnectionId()));
}
}
variables:
connectionDataName:
fn::invoke:
Function: equinix:fabric:getConnection
Arguments:
uuid: <uuid_of_connection>
outputs:
id: ${connectionDataName.id}
name: ${connectionDataName.bandwidth}
accountNumber: ${connectionDataName.account.accountNumber}
bandwidth: ${connectionDataName.bandwidth}
projectId: ${connectionDataName.project.projectId}
redundancyGroup: ${connectionDataName.redundancy.group}
redundancyPriority: ${connectionDataName.redundancy.priority}
state: ${connectionDataName.state}
type: ${connectionDataName.type}
# Same for z_side just use z_side instead of a_side
accessPointType: ${connectionDataName.aSide.accessPoint.type}
# Same for z_side just use z_side instead of a_side
accessPointLinkProtocolType: ${connectionDataName.aSide.accessPoint.linkProtocol.type}
# Same for z_side just use z_side instead of a_side
accessPointLinkProtocolVlanTag: ${connectionDataName.aSide.accessPoint.linkProtocol.vlanTag}
# Same for z_side just use z_side instead of a_side
accessPointLinkProtocolVlanCTag: ${connectionDataName.aSide.accessPoint.linkProtocol.vlanCTag}
# Same for z_side just use z_side instead of a_side
accessPointLinkProtocolVlanSTag: ${connectionDataName.aSide.accessPoint.linkProtocol.vlanSTag}
# Same for z_side just use z_side instead of a_side
accessPointProviderConnectionId: ${connectionDataName.aSide.accessPoint.providerConnectionId}
Using getConnection
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getConnection(args: GetConnectionArgs, opts?: InvokeOptions): Promise<GetConnectionResult>
function getConnectionOutput(args: GetConnectionOutputArgs, opts?: InvokeOptions): Output<GetConnectionResult>
def get_connection(uuid: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetConnectionResult
def get_connection_output(uuid: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetConnectionResult]
func LookupConnection(ctx *Context, args *LookupConnectionArgs, opts ...InvokeOption) (*LookupConnectionResult, error)
func LookupConnectionOutput(ctx *Context, args *LookupConnectionOutputArgs, opts ...InvokeOption) LookupConnectionResultOutput
> Note: This function is named LookupConnection
in the Go SDK.
public static class GetConnection
{
public static Task<GetConnectionResult> InvokeAsync(GetConnectionArgs args, InvokeOptions? opts = null)
public static Output<GetConnectionResult> Invoke(GetConnectionInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetConnectionResult> getConnection(GetConnectionArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: equinix:fabric/getConnection:getConnection
arguments:
# arguments dictionary
The following arguments are supported:
- Uuid string
- Equinix-assigned connection identifier
- Uuid string
- Equinix-assigned connection identifier
- uuid String
- Equinix-assigned connection identifier
- uuid string
- Equinix-assigned connection identifier
- uuid str
- Equinix-assigned connection identifier
- uuid String
- Equinix-assigned connection identifier
getConnection Result
The following output properties are available:
- ASide
Get
Connection ASide - Requester or Customer side connection configuration object of the multi-segment connection
- Account
Get
Connection Account - Customer account information that is associated with this connection
- Additional
Info List<ImmutableDictionary<string, string>> - Connection additional information
- Bandwidth int
- Connection bandwidth in Mbps
- Change
Log GetConnection Change Log - Captures connection lifecycle change information
- Description string
- Customer-provided connection description
- Direction string
- Connection directionality from the requester point of view
- Href string
- Connection URI information
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Remote bool - Connection property derived from access point locations
- Name string
- Connection name. An alpha-numeric 24 characters string which can include only hyphens and underscores
- Notifications
List<Get
Connection Notification> - Preferences for notifications on connection configuration or status changes
- Operation
Get
Connection Operation - Connection type-specific operational data
- Order
Get
Connection Order - Order details
- Project
Get
Connection Project - Project information
- Redundancy
Get
Connection Redundancy - Connection Redundancy Configuration
- State string
- Connection overall state
- Type string
- Defines the connection type like EVPLVC, EPLVC, IPWANVC, IPVC, ACCESSEPLVC, EVPLANVC, EPLANVC, EIAVC, IAVC, EC_VC
- Uuid string
- Equinix-assigned connection identifier
- ZSide
Get
Connection ZSide - Destination or Provider side connection configuration object of the multi-segment connection
- ASide
Get
Connection ASide - Requester or Customer side connection configuration object of the multi-segment connection
- Account
Get
Connection Account - Customer account information that is associated with this connection
- Additional
Info []map[string]string - Connection additional information
- Bandwidth int
- Connection bandwidth in Mbps
- Change
Log GetConnection Change Log - Captures connection lifecycle change information
- Description string
- Customer-provided connection description
- Direction string
- Connection directionality from the requester point of view
- Href string
- Connection URI information
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Remote bool - Connection property derived from access point locations
- Name string
- Connection name. An alpha-numeric 24 characters string which can include only hyphens and underscores
- Notifications
[]Get
Connection Notification - Preferences for notifications on connection configuration or status changes
- Operation
Get
Connection Operation - Connection type-specific operational data
- Order
Get
Connection Order - Order details
- Project
Get
Connection Project - Project information
- Redundancy
Get
Connection Redundancy - Connection Redundancy Configuration
- State string
- Connection overall state
- Type string
- Defines the connection type like EVPLVC, EPLVC, IPWANVC, IPVC, ACCESSEPLVC, EVPLANVC, EPLANVC, EIAVC, IAVC, EC_VC
- Uuid string
- Equinix-assigned connection identifier
- ZSide
Get
Connection ZSide - Destination or Provider side connection configuration object of the multi-segment connection
- a
Side GetConnection ASide - Requester or Customer side connection configuration object of the multi-segment connection
- account
Get
Connection Account - Customer account information that is associated with this connection
- additional
Info List<Map<String,String>> - Connection additional information
- bandwidth Integer
- Connection bandwidth in Mbps
- change
Log GetConnection Change Log - Captures connection lifecycle change information
- description String
- Customer-provided connection description
- direction String
- Connection directionality from the requester point of view
- href String
- Connection URI information
- id String
- The provider-assigned unique ID for this managed resource.
- is
Remote Boolean - Connection property derived from access point locations
- name String
- Connection name. An alpha-numeric 24 characters string which can include only hyphens and underscores
- notifications
List<Get
Connection Notification> - Preferences for notifications on connection configuration or status changes
- operation
Get
Connection Operation - Connection type-specific operational data
- order
Get
Connection Order - Order details
- project
Get
Connection Project - Project information
- redundancy
Get
Connection Redundancy - Connection Redundancy Configuration
- state String
- Connection overall state
- type String
- Defines the connection type like EVPLVC, EPLVC, IPWANVC, IPVC, ACCESSEPLVC, EVPLANVC, EPLANVC, EIAVC, IAVC, EC_VC
- uuid String
- Equinix-assigned connection identifier
- z
Side GetConnection ZSide - Destination or Provider side connection configuration object of the multi-segment connection
- a
Side GetConnection ASide - Requester or Customer side connection configuration object of the multi-segment connection
- account
Get
Connection Account - Customer account information that is associated with this connection
- additional
Info {[key: string]: string}[] - Connection additional information
- bandwidth number
- Connection bandwidth in Mbps
- change
Log GetConnection Change Log - Captures connection lifecycle change information
- description string
- Customer-provided connection description
- direction string
- Connection directionality from the requester point of view
- href string
- Connection URI information
- id string
- The provider-assigned unique ID for this managed resource.
- is
Remote boolean - Connection property derived from access point locations
- name string
- Connection name. An alpha-numeric 24 characters string which can include only hyphens and underscores
- notifications
Get
Connection Notification[] - Preferences for notifications on connection configuration or status changes
- operation
Get
Connection Operation - Connection type-specific operational data
- order
Get
Connection Order - Order details
- project
Get
Connection Project - Project information
- redundancy
Get
Connection Redundancy - Connection Redundancy Configuration
- state string
- Connection overall state
- type string
- Defines the connection type like EVPLVC, EPLVC, IPWANVC, IPVC, ACCESSEPLVC, EVPLANVC, EPLANVC, EIAVC, IAVC, EC_VC
- uuid string
- Equinix-assigned connection identifier
- z
Side GetConnection ZSide - Destination or Provider side connection configuration object of the multi-segment connection
- a_
side GetConnection ASide - Requester or Customer side connection configuration object of the multi-segment connection
- account
Get
Connection Account - Customer account information that is associated with this connection
- additional_
info Sequence[Mapping[str, str]] - Connection additional information
- bandwidth int
- Connection bandwidth in Mbps
- change_
log GetConnection Change Log - Captures connection lifecycle change information
- description str
- Customer-provided connection description
- direction str
- Connection directionality from the requester point of view
- href str
- Connection URI information
- id str
- The provider-assigned unique ID for this managed resource.
- is_
remote bool - Connection property derived from access point locations
- name str
- Connection name. An alpha-numeric 24 characters string which can include only hyphens and underscores
- notifications
Sequence[Get
Connection Notification] - Preferences for notifications on connection configuration or status changes
- operation
Get
Connection Operation - Connection type-specific operational data
- order
Get
Connection Order - Order details
- project
Get
Connection Project - Project information
- redundancy
Get
Connection Redundancy - Connection Redundancy Configuration
- state str
- Connection overall state
- type str
- Defines the connection type like EVPLVC, EPLVC, IPWANVC, IPVC, ACCESSEPLVC, EVPLANVC, EPLANVC, EIAVC, IAVC, EC_VC
- uuid str
- Equinix-assigned connection identifier
- z_
side GetConnection ZSide - Destination or Provider side connection configuration object of the multi-segment connection
- a
Side Property Map - Requester or Customer side connection configuration object of the multi-segment connection
- account Property Map
- Customer account information that is associated with this connection
- additional
Info List<Map<String>> - Connection additional information
- bandwidth Number
- Connection bandwidth in Mbps
- change
Log Property Map - Captures connection lifecycle change information
- description String
- Customer-provided connection description
- direction String
- Connection directionality from the requester point of view
- href String
- Connection URI information
- id String
- The provider-assigned unique ID for this managed resource.
- is
Remote Boolean - Connection property derived from access point locations
- name String
- Connection name. An alpha-numeric 24 characters string which can include only hyphens and underscores
- notifications List<Property Map>
- Preferences for notifications on connection configuration or status changes
- operation Property Map
- Connection type-specific operational data
- order Property Map
- Order details
- project Property Map
- Project information
- redundancy Property Map
- Connection Redundancy Configuration
- state String
- Connection overall state
- type String
- Defines the connection type like EVPLVC, EPLVC, IPWANVC, IPVC, ACCESSEPLVC, EVPLANVC, EPLANVC, EIAVC, IAVC, EC_VC
- uuid String
- Equinix-assigned connection identifier
- z
Side Property Map - Destination or Provider side connection configuration object of the multi-segment connection
Supporting Types
GetConnectionASide
- Access
Point GetConnection ASide Access Point - Point of access details
- Additional
Infos List<GetConnection ASide Additional Info> - Connection side additional information
- Service
Token GetConnection ASide Service Token - For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
- Access
Point GetConnection ASide Access Point - Point of access details
- Additional
Infos []GetConnection ASide Additional Info - Connection side additional information
- Service
Token GetConnection ASide Service Token - For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
- access
Point GetConnection ASide Access Point - Point of access details
- additional
Infos List<GetConnection ASide Additional Info> - Connection side additional information
- service
Token GetConnection ASide Service Token - For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
- access
Point GetConnection ASide Access Point - Point of access details
- additional
Infos GetConnection ASide Additional Info[] - Connection side additional information
- service
Token GetConnection ASide Service Token - For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
- access_
point GetConnection ASide Access Point - Point of access details
- additional_
infos Sequence[GetConnection ASide Additional Info] - Connection side additional information
- service_
token GetConnection ASide Service Token - For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
- access
Point Property Map - Point of access details
- additional
Infos List<Property Map> - Connection side additional information
- service
Token Property Map - For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
GetConnectionASideAccessPoint
- Accounts
List<Get
Connection ASide Access Point Account> - Account
- Location
Get
Connection ASide Access Point Location - Access point location
- Provider
Connection stringId - Provider assigned Connection Id
- Authentication
Key string - Authentication key for provider based connections or Metal-Fabric Integration connections
- Gateway
Get
Connection ASide Access Point Gateway - Deprecated
gateway
Userouter
attribute instead - Interface
Get
Connection ASide Access Point Interface - Virtual device interface
- Link
Protocol GetConnection ASide Access Point Link Protocol - Connection link protocol
- Network
Get
Connection ASide Access Point Network - network access point information
- Peering
Type string - Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
- Port
Get
Connection ASide Access Point Port - Port access point information
- Profile
Get
Connection ASide Access Point Profile - Service Profile
- Router
Get
Connection ASide Access Point Router - Cloud Router access point information that replaces
gateway
- Seller
Region string - Access point seller region
- Type string
- Access point type - COLO, VD, VG, SP, IGW, SUBNET, CLOUD_ROUTER, NETWORK, METAL_NETWORK
- Virtual
Device GetConnection ASide Access Point Virtual Device - Virtual device
- Accounts
[]Get
Connection ASide Access Point Account - Account
- Location
Get
Connection ASide Access Point Location - Access point location
- Provider
Connection stringId - Provider assigned Connection Id
- Authentication
Key string - Authentication key for provider based connections or Metal-Fabric Integration connections
- Gateway
Get
Connection ASide Access Point Gateway - Deprecated
gateway
Userouter
attribute instead - Interface
Get
Connection ASide Access Point Interface - Virtual device interface
- Link
Protocol GetConnection ASide Access Point Link Protocol - Connection link protocol
- Network
Get
Connection ASide Access Point Network - network access point information
- Peering
Type string - Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
- Port
Get
Connection ASide Access Point Port - Port access point information
- Profile
Get
Connection ASide Access Point Profile - Service Profile
- Router
Get
Connection ASide Access Point Router - Cloud Router access point information that replaces
gateway
- Seller
Region string - Access point seller region
- Type string
- Access point type - COLO, VD, VG, SP, IGW, SUBNET, CLOUD_ROUTER, NETWORK, METAL_NETWORK
- Virtual
Device GetConnection ASide Access Point Virtual Device - Virtual device
- accounts
List<Get
Connection ASide Access Point Account> - Account
- location
Get
Connection ASide Access Point Location - Access point location
- provider
Connection StringId - Provider assigned Connection Id
- authentication
Key String - Authentication key for provider based connections or Metal-Fabric Integration connections
- gateway
Get
Connection ASide Access Point Gateway - Deprecated
gateway
Userouter
attribute instead - interface_
Get
Connection ASide Access Point Interface - Virtual device interface
- link
Protocol GetConnection ASide Access Point Link Protocol - Connection link protocol
- network
Get
Connection ASide Access Point Network - network access point information
- peering
Type String - Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
- port
Get
Connection ASide Access Point Port - Port access point information
- profile
Get
Connection ASide Access Point Profile - Service Profile
- router
Get
Connection ASide Access Point Router - Cloud Router access point information that replaces
gateway
- seller
Region String - Access point seller region
- type String
- Access point type - COLO, VD, VG, SP, IGW, SUBNET, CLOUD_ROUTER, NETWORK, METAL_NETWORK
- virtual
Device GetConnection ASide Access Point Virtual Device - Virtual device
- accounts
Get
Connection ASide Access Point Account[] - Account
- location
Get
Connection ASide Access Point Location - Access point location
- provider
Connection stringId - Provider assigned Connection Id
- authentication
Key string - Authentication key for provider based connections or Metal-Fabric Integration connections
- gateway
Get
Connection ASide Access Point Gateway - Deprecated
gateway
Userouter
attribute instead - interface
Get
Connection ASide Access Point Interface - Virtual device interface
- link
Protocol GetConnection ASide Access Point Link Protocol - Connection link protocol
- network
Get
Connection ASide Access Point Network - network access point information
- peering
Type string - Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
- port
Get
Connection ASide Access Point Port - Port access point information
- profile
Get
Connection ASide Access Point Profile - Service Profile
- router
Get
Connection ASide Access Point Router - Cloud Router access point information that replaces
gateway
- seller
Region string - Access point seller region
- type string
- Access point type - COLO, VD, VG, SP, IGW, SUBNET, CLOUD_ROUTER, NETWORK, METAL_NETWORK
- virtual
Device GetConnection ASide Access Point Virtual Device - Virtual device
- accounts
Sequence[Get
Connection ASide Access Point Account] - Account
- location
Get
Connection ASide Access Point Location - Access point location
- provider_
connection_ strid - Provider assigned Connection Id
- authentication_
key str - Authentication key for provider based connections or Metal-Fabric Integration connections
- gateway
Get
Connection ASide Access Point Gateway - Deprecated
gateway
Userouter
attribute instead - interface
Get
Connection ASide Access Point Interface - Virtual device interface
- link_
protocol GetConnection ASide Access Point Link Protocol - Connection link protocol
- network
Get
Connection ASide Access Point Network - network access point information
- peering_
type str - Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
- port
Get
Connection ASide Access Point Port - Port access point information
- profile
Get
Connection ASide Access Point Profile - Service Profile
- router
Get
Connection ASide Access Point Router - Cloud Router access point information that replaces
gateway
- seller_
region str - Access point seller region
- type str
- Access point type - COLO, VD, VG, SP, IGW, SUBNET, CLOUD_ROUTER, NETWORK, METAL_NETWORK
- virtual_
device GetConnection ASide Access Point Virtual Device - Virtual device
- accounts List<Property Map>
- Account
- location Property Map
- Access point location
- provider
Connection StringId - Provider assigned Connection Id
- authentication
Key String - Authentication key for provider based connections or Metal-Fabric Integration connections
- gateway Property Map
- Deprecated
gateway
Userouter
attribute instead - interface Property Map
- Virtual device interface
- link
Protocol Property Map - Connection link protocol
- network Property Map
- network access point information
- peering
Type String - Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
- port Property Map
- Port access point information
- profile Property Map
- Service Profile
- router Property Map
- Cloud Router access point information that replaces
gateway
- seller
Region String - Access point seller region
- type String
- Access point type - COLO, VD, VG, SP, IGW, SUBNET, CLOUD_ROUTER, NETWORK, METAL_NETWORK
- virtual
Device Property Map - Virtual device
GetConnectionASideAccessPointAccount
- Account
Name string - Legal name of the accountholder.
- Account
Number int - Equinix-assigned account number.
- Global
Cust stringId - Equinix-assigned ID of the subscriber's parent organization.
- Global
Org stringId - Equinix-assigned ID of the subscriber's parent organization.
- Global
Organization stringName - Equinix-assigned name of the subscriber's parent organization.
- Org
Id int - Equinix-assigned ID of the subscriber's organization.
- Organization
Name string - Equinix-assigned name of the subscriber's organization.
- Ucm
Id string - Enterprise datastore id
- Account
Name string - Legal name of the accountholder.
- Account
Number int - Equinix-assigned account number.
- Global
Cust stringId - Equinix-assigned ID of the subscriber's parent organization.
- Global
Org stringId - Equinix-assigned ID of the subscriber's parent organization.
- Global
Organization stringName - Equinix-assigned name of the subscriber's parent organization.
- Org
Id int - Equinix-assigned ID of the subscriber's organization.
- Organization
Name string - Equinix-assigned name of the subscriber's organization.
- Ucm
Id string - Enterprise datastore id
- account
Name String - Legal name of the accountholder.
- account
Number Integer - Equinix-assigned account number.
- global
Cust StringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Org StringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Organization StringName - Equinix-assigned name of the subscriber's parent organization.
- org
Id Integer - Equinix-assigned ID of the subscriber's organization.
- organization
Name String - Equinix-assigned name of the subscriber's organization.
- ucm
Id String - Enterprise datastore id
- account
Name string - Legal name of the accountholder.
- account
Number number - Equinix-assigned account number.
- global
Cust stringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Org stringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Organization stringName - Equinix-assigned name of the subscriber's parent organization.
- org
Id number - Equinix-assigned ID of the subscriber's organization.
- organization
Name string - Equinix-assigned name of the subscriber's organization.
- ucm
Id string - Enterprise datastore id
- account_
name str - Legal name of the accountholder.
- account_
number int - Equinix-assigned account number.
- global_
cust_ strid - Equinix-assigned ID of the subscriber's parent organization.
- global_
org_ strid - Equinix-assigned ID of the subscriber's parent organization.
- global_
organization_ strname - Equinix-assigned name of the subscriber's parent organization.
- org_
id int - Equinix-assigned ID of the subscriber's organization.
- organization_
name str - Equinix-assigned name of the subscriber's organization.
- ucm_
id str - Enterprise datastore id
- account
Name String - Legal name of the accountholder.
- account
Number Number - Equinix-assigned account number.
- global
Cust StringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Org StringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Organization StringName - Equinix-assigned name of the subscriber's parent organization.
- org
Id Number - Equinix-assigned ID of the subscriber's organization.
- organization
Name String - Equinix-assigned name of the subscriber's organization.
- ucm
Id String - Enterprise datastore id
GetConnectionASideAccessPointGateway
GetConnectionASideAccessPointInterface
GetConnectionASideAccessPointLinkProtocol
- Vlan
CTag int - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- Vlan
STag int - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- Vlan
Tag int - Vlan Tag information, vlanTag value specified for DOT1Q connections
- Type string
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- Vlan
CTag int - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- Vlan
STag int - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- Vlan
Tag int - Vlan Tag information, vlanTag value specified for DOT1Q connections
- Type string
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- vlan
CTag Integer - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlan
STag Integer - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlan
Tag Integer - Vlan Tag information, vlanTag value specified for DOT1Q connections
- type String
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- vlan
CTag number - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlan
STag number - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlan
Tag number - Vlan Tag information, vlanTag value specified for DOT1Q connections
- type string
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- vlan_
c_ inttag - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlan_
s_ inttag - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlan_
tag int - Vlan Tag information, vlanTag value specified for DOT1Q connections
- type str
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- vlan
CTag Number - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlan
STag Number - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlan
Tag Number - Vlan Tag information, vlanTag value specified for DOT1Q connections
- type String
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
GetConnectionASideAccessPointLocation
- ibx str
- IBX Code
- metro_
code str - Access point metro code
- metro_
name str - Access point metro name
- region str
- Access point region
GetConnectionASideAccessPointNetwork
GetConnectionASideAccessPointPort
- Href string
- Unique Resource Identifier
- Name string
- Port name
- Redundancies
List<Get
Connection ASide Access Point Port Redundancy> - Redundancy Information
- Uuid string
- Equinix-assigned Port identifier
- Href string
- Unique Resource Identifier
- Name string
- Port name
- Redundancies
[]Get
Connection ASide Access Point Port Redundancy - Redundancy Information
- Uuid string
- Equinix-assigned Port identifier
- href String
- Unique Resource Identifier
- name String
- Port name
- redundancies
List<Get
Connection ASide Access Point Port Redundancy> - Redundancy Information
- uuid String
- Equinix-assigned Port identifier
- href string
- Unique Resource Identifier
- name string
- Port name
- redundancies
Get
Connection ASide Access Point Port Redundancy[] - Redundancy Information
- uuid string
- Equinix-assigned Port identifier
- href str
- Unique Resource Identifier
- name str
- Port name
- redundancies
Sequence[Get
Connection ASide Access Point Port Redundancy] - Redundancy Information
- uuid str
- Equinix-assigned Port identifier
- href String
- Unique Resource Identifier
- name String
- Port name
- redundancies List<Property Map>
- Redundancy Information
- uuid String
- Equinix-assigned Port identifier
GetConnectionASideAccessPointPortRedundancy
GetConnectionASideAccessPointProfile
- Access
Point List<GetType Configs Connection ASide Access Point Profile Access Point Type Config> - Access point config information
- Description string
- User-provided service description
- Href string
- Service Profile URI response attribute
- Name string
- Customer-assigned service profile name
- Type string
- Service profile type - L2_PROFILE, L3_PROFILE, ECIA_PROFILE, ECMC_PROFILE, IA_PROFILE
- Uuid string
- Equinix assigned service profile identifier
- Access
Point []GetType Configs Connection ASide Access Point Profile Access Point Type Config - Access point config information
- Description string
- User-provided service description
- Href string
- Service Profile URI response attribute
- Name string
- Customer-assigned service profile name
- Type string
- Service profile type - L2_PROFILE, L3_PROFILE, ECIA_PROFILE, ECMC_PROFILE, IA_PROFILE
- Uuid string
- Equinix assigned service profile identifier
- access
Point List<GetType Configs Connection ASide Access Point Profile Access Point Type Config> - Access point config information
- description String
- User-provided service description
- href String
- Service Profile URI response attribute
- name String
- Customer-assigned service profile name
- type String
- Service profile type - L2_PROFILE, L3_PROFILE, ECIA_PROFILE, ECMC_PROFILE, IA_PROFILE
- uuid String
- Equinix assigned service profile identifier
- access
Point GetType Configs Connection ASide Access Point Profile Access Point Type Config[] - Access point config information
- description string
- User-provided service description
- href string
- Service Profile URI response attribute
- name string
- Customer-assigned service profile name
- type string
- Service profile type - L2_PROFILE, L3_PROFILE, ECIA_PROFILE, ECMC_PROFILE, IA_PROFILE
- uuid string
- Equinix assigned service profile identifier
- access_
point_ Sequence[Gettype_ configs Connection ASide Access Point Profile Access Point Type Config] - Access point config information
- description str
- User-provided service description
- href str
- Service Profile URI response attribute
- name str
- Customer-assigned service profile name
- type str
- Service profile type - L2_PROFILE, L3_PROFILE, ECIA_PROFILE, ECMC_PROFILE, IA_PROFILE
- uuid str
- Equinix assigned service profile identifier
- access
Point List<Property Map>Type Configs - Access point config information
- description String
- User-provided service description
- href String
- Service Profile URI response attribute
- name String
- Customer-assigned service profile name
- type String
- Service profile type - L2_PROFILE, L3_PROFILE, ECIA_PROFILE, ECMC_PROFILE, IA_PROFILE
- uuid String
- Equinix assigned service profile identifier
GetConnectionASideAccessPointProfileAccessPointTypeConfig
GetConnectionASideAccessPointRouter
GetConnectionASideAccessPointVirtualDevice
GetConnectionASideAdditionalInfo
GetConnectionASideServiceToken
- Description string
- Service token description
- Href string
- An absolute URL that is the subject of the link's context
- Type string
- Token type - VC_TOKEN
- Uuid string
- Equinix-assigned service token identifier
- Description string
- Service token description
- Href string
- An absolute URL that is the subject of the link's context
- Type string
- Token type - VC_TOKEN
- Uuid string
- Equinix-assigned service token identifier
- description String
- Service token description
- href String
- An absolute URL that is the subject of the link's context
- type String
- Token type - VC_TOKEN
- uuid String
- Equinix-assigned service token identifier
- description string
- Service token description
- href string
- An absolute URL that is the subject of the link's context
- type string
- Token type - VC_TOKEN
- uuid string
- Equinix-assigned service token identifier
- description str
- Service token description
- href str
- An absolute URL that is the subject of the link's context
- type str
- Token type - VC_TOKEN
- uuid str
- Equinix-assigned service token identifier
- description String
- Service token description
- href String
- An absolute URL that is the subject of the link's context
- type String
- Token type - VC_TOKEN
- uuid String
- Equinix-assigned service token identifier
GetConnectionAccount
- Account
Name string - Legal name of the accountholder.
- Account
Number int - Equinix-assigned account number.
- Global
Cust stringId - Equinix-assigned ID of the subscriber's parent organization.
- Global
Org stringId - Equinix-assigned ID of the subscriber's parent organization.
- Global
Organization stringName - Equinix-assigned name of the subscriber's parent organization.
- Org
Id int - Equinix-assigned ID of the subscriber's organization.
- Organization
Name string - Equinix-assigned name of the subscriber's organization.
- Ucm
Id string - Enterprise datastore id
- Account
Name string - Legal name of the accountholder.
- Account
Number int - Equinix-assigned account number.
- Global
Cust stringId - Equinix-assigned ID of the subscriber's parent organization.
- Global
Org stringId - Equinix-assigned ID of the subscriber's parent organization.
- Global
Organization stringName - Equinix-assigned name of the subscriber's parent organization.
- Org
Id int - Equinix-assigned ID of the subscriber's organization.
- Organization
Name string - Equinix-assigned name of the subscriber's organization.
- Ucm
Id string - Enterprise datastore id
- account
Name String - Legal name of the accountholder.
- account
Number Integer - Equinix-assigned account number.
- global
Cust StringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Org StringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Organization StringName - Equinix-assigned name of the subscriber's parent organization.
- org
Id Integer - Equinix-assigned ID of the subscriber's organization.
- organization
Name String - Equinix-assigned name of the subscriber's organization.
- ucm
Id String - Enterprise datastore id
- account
Name string - Legal name of the accountholder.
- account
Number number - Equinix-assigned account number.
- global
Cust stringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Org stringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Organization stringName - Equinix-assigned name of the subscriber's parent organization.
- org
Id number - Equinix-assigned ID of the subscriber's organization.
- organization
Name string - Equinix-assigned name of the subscriber's organization.
- ucm
Id string - Enterprise datastore id
- account_
name str - Legal name of the accountholder.
- account_
number int - Equinix-assigned account number.
- global_
cust_ strid - Equinix-assigned ID of the subscriber's parent organization.
- global_
org_ strid - Equinix-assigned ID of the subscriber's parent organization.
- global_
organization_ strname - Equinix-assigned name of the subscriber's parent organization.
- org_
id int - Equinix-assigned ID of the subscriber's organization.
- organization_
name str - Equinix-assigned name of the subscriber's organization.
- ucm_
id str - Enterprise datastore id
- account
Name String - Legal name of the accountholder.
- account
Number Number - Equinix-assigned account number.
- global
Cust StringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Org StringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Organization StringName - Equinix-assigned name of the subscriber's parent organization.
- org
Id Number - Equinix-assigned ID of the subscriber's organization.
- organization
Name String - Equinix-assigned name of the subscriber's organization.
- ucm
Id String - Enterprise datastore id
GetConnectionChangeLog
- Created
By string - Created by User Key
- Created
By stringEmail - Created by User Email Address
- Created
By stringFull Name - Created by User Full Name
- Created
Date stringTime - Created by Date and Time
- Deleted
By string - Deleted by User Key
- Deleted
By stringEmail - Deleted by User Email Address
- Deleted
By stringFull Name - Deleted by User Full Name
- Deleted
Date stringTime - Deleted by Date and Time
- Updated
By string - Updated by User Key
- Updated
By stringEmail - Updated by User Email Address
- Updated
By stringFull Name - Updated by User Full Name
- Updated
Date stringTime - Updated by Date and Time
- Created
By string - Created by User Key
- Created
By stringEmail - Created by User Email Address
- Created
By stringFull Name - Created by User Full Name
- Created
Date stringTime - Created by Date and Time
- Deleted
By string - Deleted by User Key
- Deleted
By stringEmail - Deleted by User Email Address
- Deleted
By stringFull Name - Deleted by User Full Name
- Deleted
Date stringTime - Deleted by Date and Time
- Updated
By string - Updated by User Key
- Updated
By stringEmail - Updated by User Email Address
- Updated
By stringFull Name - Updated by User Full Name
- Updated
Date stringTime - Updated by Date and Time
- created
By String - Created by User Key
- created
By StringEmail - Created by User Email Address
- created
By StringFull Name - Created by User Full Name
- created
Date StringTime - Created by Date and Time
- deleted
By String - Deleted by User Key
- deleted
By StringEmail - Deleted by User Email Address
- deleted
By StringFull Name - Deleted by User Full Name
- deleted
Date StringTime - Deleted by Date and Time
- updated
By String - Updated by User Key
- updated
By StringEmail - Updated by User Email Address
- updated
By StringFull Name - Updated by User Full Name
- updated
Date StringTime - Updated by Date and Time
- created
By string - Created by User Key
- created
By stringEmail - Created by User Email Address
- created
By stringFull Name - Created by User Full Name
- created
Date stringTime - Created by Date and Time
- deleted
By string - Deleted by User Key
- deleted
By stringEmail - Deleted by User Email Address
- deleted
By stringFull Name - Deleted by User Full Name
- deleted
Date stringTime - Deleted by Date and Time
- updated
By string - Updated by User Key
- updated
By stringEmail - Updated by User Email Address
- updated
By stringFull Name - Updated by User Full Name
- updated
Date stringTime - Updated by Date and Time
- created_
by str - Created by User Key
- created_
by_ stremail - Created by User Email Address
- created_
by_ strfull_ name - Created by User Full Name
- created_
date_ strtime - Created by Date and Time
- deleted_
by str - Deleted by User Key
- deleted_
by_ stremail - Deleted by User Email Address
- deleted_
by_ strfull_ name - Deleted by User Full Name
- deleted_
date_ strtime - Deleted by Date and Time
- updated_
by str - Updated by User Key
- updated_
by_ stremail - Updated by User Email Address
- updated_
by_ strfull_ name - Updated by User Full Name
- updated_
date_ strtime - Updated by Date and Time
- created
By String - Created by User Key
- created
By StringEmail - Created by User Email Address
- created
By StringFull Name - Created by User Full Name
- created
Date StringTime - Created by Date and Time
- deleted
By String - Deleted by User Key
- deleted
By StringEmail - Deleted by User Email Address
- deleted
By StringFull Name - Deleted by User Full Name
- deleted
Date StringTime - Deleted by Date and Time
- updated
By String - Updated by User Key
- updated
By StringEmail - Updated by User Email Address
- updated
By StringFull Name - Updated by User Full Name
- updated
Date StringTime - Updated by Date and Time
GetConnectionNotification
- Emails List<string>
- Array of contact emails
- Type string
- Notification Type - ALL,CONNECTION_APPROVAL,SALES_REP_NOTIFICATIONS, NOTIFICATIONS
- Send
Interval string - Send interval
- Emails []string
- Array of contact emails
- Type string
- Notification Type - ALL,CONNECTION_APPROVAL,SALES_REP_NOTIFICATIONS, NOTIFICATIONS
- Send
Interval string - Send interval
- emails List<String>
- Array of contact emails
- type String
- Notification Type - ALL,CONNECTION_APPROVAL,SALES_REP_NOTIFICATIONS, NOTIFICATIONS
- send
Interval String - Send interval
- emails string[]
- Array of contact emails
- type string
- Notification Type - ALL,CONNECTION_APPROVAL,SALES_REP_NOTIFICATIONS, NOTIFICATIONS
- send
Interval string - Send interval
- emails Sequence[str]
- Array of contact emails
- type str
- Notification Type - ALL,CONNECTION_APPROVAL,SALES_REP_NOTIFICATIONS, NOTIFICATIONS
- send_
interval str - Send interval
- emails List<String>
- Array of contact emails
- type String
- Notification Type - ALL,CONNECTION_APPROVAL,SALES_REP_NOTIFICATIONS, NOTIFICATIONS
- send
Interval String - Send interval
GetConnectionOperation
- Equinix
Status string - Connection status
- Errors
List<Get
Connection Operation Error> - Errors occurred
- Provider
Status string - Connection provider readiness status
- Equinix
Status string - Connection status
- Errors
[]Get
Connection Operation Error - Errors occurred
- Provider
Status string - Connection provider readiness status
- equinix
Status String - Connection status
- errors
List<Get
Connection Operation Error> - Errors occurred
- provider
Status String - Connection provider readiness status
- equinix
Status string - Connection status
- errors
Get
Connection Operation Error[] - Errors occurred
- provider
Status string - Connection provider readiness status
- equinix_
status str - Connection status
- errors
Sequence[Get
Connection Operation Error] - Errors occurred
- provider_
status str - Connection provider readiness status
- equinix
Status String - Connection status
- errors List<Property Map>
- Errors occurred
- provider
Status String - Connection provider readiness status
GetConnectionOperationError
- Additional
Infos List<GetConnection Operation Error Additional Info> - Pricing error additional Info
- Correlation
Id string - CorrelationId
- Details string
- Details
- Error
Code string - Error code
- Error
Message string - Error Message
- Help string
- Help
- Additional
Infos []GetConnection Operation Error Additional Info - Pricing error additional Info
- Correlation
Id string - CorrelationId
- Details string
- Details
- Error
Code string - Error code
- Error
Message string - Error Message
- Help string
- Help
- additional
Infos List<GetConnection Operation Error Additional Info> - Pricing error additional Info
- correlation
Id String - CorrelationId
- details String
- Details
- error
Code String - Error code
- error
Message String - Error Message
- help String
- Help
- additional
Infos GetConnection Operation Error Additional Info[] - Pricing error additional Info
- correlation
Id string - CorrelationId
- details string
- Details
- error
Code string - Error code
- error
Message string - Error Message
- help string
- Help
- additional_
infos Sequence[GetConnection Operation Error Additional Info] - Pricing error additional Info
- correlation_
id str - CorrelationId
- details str
- Details
- error_
code str - Error code
- error_
message str - Error Message
- help str
- Help
- additional
Infos List<Property Map> - Pricing error additional Info
- correlation
Id String - CorrelationId
- details String
- Details
- error
Code String - Error code
- error
Message String - Error Message
- help String
- Help
GetConnectionOperationErrorAdditionalInfo
GetConnectionOrder
- Billing
Tier string - Billing tier for connection bandwidth
- Order
Id string - Order Identification
- Order
Number string - Order Reference Number
- Purchase
Order stringNumber - Purchase order number
- Billing
Tier string - Billing tier for connection bandwidth
- Order
Id string - Order Identification
- Order
Number string - Order Reference Number
- Purchase
Order stringNumber - Purchase order number
- billing
Tier String - Billing tier for connection bandwidth
- order
Id String - Order Identification
- order
Number String - Order Reference Number
- purchase
Order StringNumber - Purchase order number
- billing
Tier string - Billing tier for connection bandwidth
- order
Id string - Order Identification
- order
Number string - Order Reference Number
- purchase
Order stringNumber - Purchase order number
- billing_
tier str - Billing tier for connection bandwidth
- order_
id str - Order Identification
- order_
number str - Order Reference Number
- purchase_
order_ strnumber - Purchase order number
- billing
Tier String - Billing tier for connection bandwidth
- order
Id String - Order Identification
- order
Number String - Order Reference Number
- purchase
Order StringNumber - Purchase order number
GetConnectionProject
- href str
- Unique Resource URL
- project_
id str - Project Id
GetConnectionRedundancy
- Group string
- Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinix_fabric_connection.primary_port_connection.redundancy).group or equinix_fabric_connection.primary_port_connection.redundancy.0.group)
- Priority string
- Connection priority in redundancy group - PRIMARY, SECONDARY
- Group string
- Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinix_fabric_connection.primary_port_connection.redundancy).group or equinix_fabric_connection.primary_port_connection.redundancy.0.group)
- Priority string
- Connection priority in redundancy group - PRIMARY, SECONDARY
- group String
- Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinix_fabric_connection.primary_port_connection.redundancy).group or equinix_fabric_connection.primary_port_connection.redundancy.0.group)
- priority String
- Connection priority in redundancy group - PRIMARY, SECONDARY
- group string
- Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinix_fabric_connection.primary_port_connection.redundancy).group or equinix_fabric_connection.primary_port_connection.redundancy.0.group)
- priority string
- Connection priority in redundancy group - PRIMARY, SECONDARY
- group str
- Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinix_fabric_connection.primary_port_connection.redundancy).group or equinix_fabric_connection.primary_port_connection.redundancy.0.group)
- priority str
- Connection priority in redundancy group - PRIMARY, SECONDARY
- group String
- Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinix_fabric_connection.primary_port_connection.redundancy).group or equinix_fabric_connection.primary_port_connection.redundancy.0.group)
- priority String
- Connection priority in redundancy group - PRIMARY, SECONDARY
GetConnectionZSide
- Access
Point GetConnection ZSide Access Point - Point of access details
- Additional
Infos List<GetConnection ZSide Additional Info> - Connection side additional information
- Service
Token GetConnection ZSide Service Token - For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
- Access
Point GetConnection ZSide Access Point - Point of access details
- Additional
Infos []GetConnection ZSide Additional Info - Connection side additional information
- Service
Token GetConnection ZSide Service Token - For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
- access
Point GetConnection ZSide Access Point - Point of access details
- additional
Infos List<GetConnection ZSide Additional Info> - Connection side additional information
- service
Token GetConnection ZSide Service Token - For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
- access
Point GetConnection ZSide Access Point - Point of access details
- additional
Infos GetConnection ZSide Additional Info[] - Connection side additional information
- service
Token GetConnection ZSide Service Token - For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
- access_
point GetConnection ZSide Access Point - Point of access details
- additional_
infos Sequence[GetConnection ZSide Additional Info] - Connection side additional information
- service_
token GetConnection ZSide Service Token - For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
- access
Point Property Map - Point of access details
- additional
Infos List<Property Map> - Connection side additional information
- service
Token Property Map - For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
GetConnectionZSideAccessPoint
- Accounts
List<Get
Connection ZSide Access Point Account> - Account
- Location
Get
Connection ZSide Access Point Location - Access point location
- Provider
Connection stringId - Provider assigned Connection Id
- Authentication
Key string - Authentication key for provider based connections or Metal-Fabric Integration connections
- Gateway
Get
Connection ZSide Access Point Gateway - Deprecated
gateway
Userouter
attribute instead - Interface
Get
Connection ZSide Access Point Interface - Virtual device interface
- Link
Protocol GetConnection ZSide Access Point Link Protocol - Connection link protocol
- Network
Get
Connection ZSide Access Point Network - network access point information
- Peering
Type string - Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
- Port
Get
Connection ZSide Access Point Port - Port access point information
- Profile
Get
Connection ZSide Access Point Profile - Service Profile
- Router
Get
Connection ZSide Access Point Router - Cloud Router access point information that replaces
gateway
- Seller
Region string - Access point seller region
- Type string
- Access point type - COLO, VD, VG, SP, IGW, SUBNET, CLOUD_ROUTER, NETWORK, METAL_NETWORK
- Virtual
Device GetConnection ZSide Access Point Virtual Device - Virtual device
- Accounts
[]Get
Connection ZSide Access Point Account - Account
- Location
Get
Connection ZSide Access Point Location - Access point location
- Provider
Connection stringId - Provider assigned Connection Id
- Authentication
Key string - Authentication key for provider based connections or Metal-Fabric Integration connections
- Gateway
Get
Connection ZSide Access Point Gateway - Deprecated
gateway
Userouter
attribute instead - Interface
Get
Connection ZSide Access Point Interface - Virtual device interface
- Link
Protocol GetConnection ZSide Access Point Link Protocol - Connection link protocol
- Network
Get
Connection ZSide Access Point Network - network access point information
- Peering
Type string - Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
- Port
Get
Connection ZSide Access Point Port - Port access point information
- Profile
Get
Connection ZSide Access Point Profile - Service Profile
- Router
Get
Connection ZSide Access Point Router - Cloud Router access point information that replaces
gateway
- Seller
Region string - Access point seller region
- Type string
- Access point type - COLO, VD, VG, SP, IGW, SUBNET, CLOUD_ROUTER, NETWORK, METAL_NETWORK
- Virtual
Device GetConnection ZSide Access Point Virtual Device - Virtual device
- accounts
List<Get
Connection ZSide Access Point Account> - Account
- location
Get
Connection ZSide Access Point Location - Access point location
- provider
Connection StringId - Provider assigned Connection Id
- authentication
Key String - Authentication key for provider based connections or Metal-Fabric Integration connections
- gateway
Get
Connection ZSide Access Point Gateway - Deprecated
gateway
Userouter
attribute instead - interface_
Get
Connection ZSide Access Point Interface - Virtual device interface
- link
Protocol GetConnection ZSide Access Point Link Protocol - Connection link protocol
- network
Get
Connection ZSide Access Point Network - network access point information
- peering
Type String - Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
- port
Get
Connection ZSide Access Point Port - Port access point information
- profile
Get
Connection ZSide Access Point Profile - Service Profile
- router
Get
Connection ZSide Access Point Router - Cloud Router access point information that replaces
gateway
- seller
Region String - Access point seller region
- type String
- Access point type - COLO, VD, VG, SP, IGW, SUBNET, CLOUD_ROUTER, NETWORK, METAL_NETWORK
- virtual
Device GetConnection ZSide Access Point Virtual Device - Virtual device
- accounts
Get
Connection ZSide Access Point Account[] - Account
- location
Get
Connection ZSide Access Point Location - Access point location
- provider
Connection stringId - Provider assigned Connection Id
- authentication
Key string - Authentication key for provider based connections or Metal-Fabric Integration connections
- gateway
Get
Connection ZSide Access Point Gateway - Deprecated
gateway
Userouter
attribute instead - interface
Get
Connection ZSide Access Point Interface - Virtual device interface
- link
Protocol GetConnection ZSide Access Point Link Protocol - Connection link protocol
- network
Get
Connection ZSide Access Point Network - network access point information
- peering
Type string - Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
- port
Get
Connection ZSide Access Point Port - Port access point information
- profile
Get
Connection ZSide Access Point Profile - Service Profile
- router
Get
Connection ZSide Access Point Router - Cloud Router access point information that replaces
gateway
- seller
Region string - Access point seller region
- type string
- Access point type - COLO, VD, VG, SP, IGW, SUBNET, CLOUD_ROUTER, NETWORK, METAL_NETWORK
- virtual
Device GetConnection ZSide Access Point Virtual Device - Virtual device
- accounts
Sequence[Get
Connection ZSide Access Point Account] - Account
- location
Get
Connection ZSide Access Point Location - Access point location
- provider_
connection_ strid - Provider assigned Connection Id
- authentication_
key str - Authentication key for provider based connections or Metal-Fabric Integration connections
- gateway
Get
Connection ZSide Access Point Gateway - Deprecated
gateway
Userouter
attribute instead - interface
Get
Connection ZSide Access Point Interface - Virtual device interface
- link_
protocol GetConnection ZSide Access Point Link Protocol - Connection link protocol
- network
Get
Connection ZSide Access Point Network - network access point information
- peering_
type str - Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
- port
Get
Connection ZSide Access Point Port - Port access point information
- profile
Get
Connection ZSide Access Point Profile - Service Profile
- router
Get
Connection ZSide Access Point Router - Cloud Router access point information that replaces
gateway
- seller_
region str - Access point seller region
- type str
- Access point type - COLO, VD, VG, SP, IGW, SUBNET, CLOUD_ROUTER, NETWORK, METAL_NETWORK
- virtual_
device GetConnection ZSide Access Point Virtual Device - Virtual device
- accounts List<Property Map>
- Account
- location Property Map
- Access point location
- provider
Connection StringId - Provider assigned Connection Id
- authentication
Key String - Authentication key for provider based connections or Metal-Fabric Integration connections
- gateway Property Map
- Deprecated
gateway
Userouter
attribute instead - interface Property Map
- Virtual device interface
- link
Protocol Property Map - Connection link protocol
- network Property Map
- network access point information
- peering
Type String - Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
- port Property Map
- Port access point information
- profile Property Map
- Service Profile
- router Property Map
- Cloud Router access point information that replaces
gateway
- seller
Region String - Access point seller region
- type String
- Access point type - COLO, VD, VG, SP, IGW, SUBNET, CLOUD_ROUTER, NETWORK, METAL_NETWORK
- virtual
Device Property Map - Virtual device
GetConnectionZSideAccessPointAccount
- Account
Name string - Legal name of the accountholder.
- Account
Number int - Equinix-assigned account number.
- Global
Cust stringId - Equinix-assigned ID of the subscriber's parent organization.
- Global
Org stringId - Equinix-assigned ID of the subscriber's parent organization.
- Global
Organization stringName - Equinix-assigned name of the subscriber's parent organization.
- Org
Id int - Equinix-assigned ID of the subscriber's organization.
- Organization
Name string - Equinix-assigned name of the subscriber's organization.
- Ucm
Id string - Enterprise datastore id
- Account
Name string - Legal name of the accountholder.
- Account
Number int - Equinix-assigned account number.
- Global
Cust stringId - Equinix-assigned ID of the subscriber's parent organization.
- Global
Org stringId - Equinix-assigned ID of the subscriber's parent organization.
- Global
Organization stringName - Equinix-assigned name of the subscriber's parent organization.
- Org
Id int - Equinix-assigned ID of the subscriber's organization.
- Organization
Name string - Equinix-assigned name of the subscriber's organization.
- Ucm
Id string - Enterprise datastore id
- account
Name String - Legal name of the accountholder.
- account
Number Integer - Equinix-assigned account number.
- global
Cust StringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Org StringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Organization StringName - Equinix-assigned name of the subscriber's parent organization.
- org
Id Integer - Equinix-assigned ID of the subscriber's organization.
- organization
Name String - Equinix-assigned name of the subscriber's organization.
- ucm
Id String - Enterprise datastore id
- account
Name string - Legal name of the accountholder.
- account
Number number - Equinix-assigned account number.
- global
Cust stringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Org stringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Organization stringName - Equinix-assigned name of the subscriber's parent organization.
- org
Id number - Equinix-assigned ID of the subscriber's organization.
- organization
Name string - Equinix-assigned name of the subscriber's organization.
- ucm
Id string - Enterprise datastore id
- account_
name str - Legal name of the accountholder.
- account_
number int - Equinix-assigned account number.
- global_
cust_ strid - Equinix-assigned ID of the subscriber's parent organization.
- global_
org_ strid - Equinix-assigned ID of the subscriber's parent organization.
- global_
organization_ strname - Equinix-assigned name of the subscriber's parent organization.
- org_
id int - Equinix-assigned ID of the subscriber's organization.
- organization_
name str - Equinix-assigned name of the subscriber's organization.
- ucm_
id str - Enterprise datastore id
- account
Name String - Legal name of the accountholder.
- account
Number Number - Equinix-assigned account number.
- global
Cust StringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Org StringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Organization StringName - Equinix-assigned name of the subscriber's parent organization.
- org
Id Number - Equinix-assigned ID of the subscriber's organization.
- organization
Name String - Equinix-assigned name of the subscriber's organization.
- ucm
Id String - Enterprise datastore id
GetConnectionZSideAccessPointGateway
GetConnectionZSideAccessPointInterface
GetConnectionZSideAccessPointLinkProtocol
- Vlan
CTag int - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- Vlan
STag int - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- Vlan
Tag int - Vlan Tag information, vlanTag value specified for DOT1Q connections
- Type string
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- Vlan
CTag int - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- Vlan
STag int - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- Vlan
Tag int - Vlan Tag information, vlanTag value specified for DOT1Q connections
- Type string
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- vlan
CTag Integer - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlan
STag Integer - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlan
Tag Integer - Vlan Tag information, vlanTag value specified for DOT1Q connections
- type String
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- vlan
CTag number - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlan
STag number - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlan
Tag number - Vlan Tag information, vlanTag value specified for DOT1Q connections
- type string
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- vlan_
c_ inttag - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlan_
s_ inttag - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlan_
tag int - Vlan Tag information, vlanTag value specified for DOT1Q connections
- type str
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- vlan
CTag Number - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlan
STag Number - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlan
Tag Number - Vlan Tag information, vlanTag value specified for DOT1Q connections
- type String
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
GetConnectionZSideAccessPointLocation
- ibx str
- IBX Code
- metro_
code str - Access point metro code
- metro_
name str - Access point metro name
- region str
- Access point region
GetConnectionZSideAccessPointNetwork
GetConnectionZSideAccessPointPort
- Href string
- Unique Resource Identifier
- Name string
- Port name
- Redundancies
List<Get
Connection ZSide Access Point Port Redundancy> - Redundancy Information
- Uuid string
- Equinix-assigned Port identifier
- Href string
- Unique Resource Identifier
- Name string
- Port name
- Redundancies
[]Get
Connection ZSide Access Point Port Redundancy - Redundancy Information
- Uuid string
- Equinix-assigned Port identifier
- href String
- Unique Resource Identifier
- name String
- Port name
- redundancies
List<Get
Connection ZSide Access Point Port Redundancy> - Redundancy Information
- uuid String
- Equinix-assigned Port identifier
- href string
- Unique Resource Identifier
- name string
- Port name
- redundancies
Get
Connection ZSide Access Point Port Redundancy[] - Redundancy Information
- uuid string
- Equinix-assigned Port identifier
- href str
- Unique Resource Identifier
- name str
- Port name
- redundancies
Sequence[Get
Connection ZSide Access Point Port Redundancy] - Redundancy Information
- uuid str
- Equinix-assigned Port identifier
- href String
- Unique Resource Identifier
- name String
- Port name
- redundancies List<Property Map>
- Redundancy Information
- uuid String
- Equinix-assigned Port identifier
GetConnectionZSideAccessPointPortRedundancy
GetConnectionZSideAccessPointProfile
- Access
Point List<GetType Configs Connection ZSide Access Point Profile Access Point Type Config> - Access point config information
- Description string
- User-provided service description
- Href string
- Service Profile URI response attribute
- Name string
- Customer-assigned service profile name
- Type string
- Service profile type - L2_PROFILE, L3_PROFILE, ECIA_PROFILE, ECMC_PROFILE, IA_PROFILE
- Uuid string
- Equinix assigned service profile identifier
- Access
Point []GetType Configs Connection ZSide Access Point Profile Access Point Type Config - Access point config information
- Description string
- User-provided service description
- Href string
- Service Profile URI response attribute
- Name string
- Customer-assigned service profile name
- Type string
- Service profile type - L2_PROFILE, L3_PROFILE, ECIA_PROFILE, ECMC_PROFILE, IA_PROFILE
- Uuid string
- Equinix assigned service profile identifier
- access
Point List<GetType Configs Connection ZSide Access Point Profile Access Point Type Config> - Access point config information
- description String
- User-provided service description
- href String
- Service Profile URI response attribute
- name String
- Customer-assigned service profile name
- type String
- Service profile type - L2_PROFILE, L3_PROFILE, ECIA_PROFILE, ECMC_PROFILE, IA_PROFILE
- uuid String
- Equinix assigned service profile identifier
- access
Point GetType Configs Connection ZSide Access Point Profile Access Point Type Config[] - Access point config information
- description string
- User-provided service description
- href string
- Service Profile URI response attribute
- name string
- Customer-assigned service profile name
- type string
- Service profile type - L2_PROFILE, L3_PROFILE, ECIA_PROFILE, ECMC_PROFILE, IA_PROFILE
- uuid string
- Equinix assigned service profile identifier
- access_
point_ Sequence[Gettype_ configs Connection ZSide Access Point Profile Access Point Type Config] - Access point config information
- description str
- User-provided service description
- href str
- Service Profile URI response attribute
- name str
- Customer-assigned service profile name
- type str
- Service profile type - L2_PROFILE, L3_PROFILE, ECIA_PROFILE, ECMC_PROFILE, IA_PROFILE
- uuid str
- Equinix assigned service profile identifier
- access
Point List<Property Map>Type Configs - Access point config information
- description String
- User-provided service description
- href String
- Service Profile URI response attribute
- name String
- Customer-assigned service profile name
- type String
- Service profile type - L2_PROFILE, L3_PROFILE, ECIA_PROFILE, ECMC_PROFILE, IA_PROFILE
- uuid String
- Equinix assigned service profile identifier
GetConnectionZSideAccessPointProfileAccessPointTypeConfig
GetConnectionZSideAccessPointRouter
GetConnectionZSideAccessPointVirtualDevice
GetConnectionZSideAdditionalInfo
GetConnectionZSideServiceToken
- Description string
- Service token description
- Href string
- An absolute URL that is the subject of the link's context
- Type string
- Token type - VC_TOKEN
- Uuid string
- Equinix-assigned service token identifier
- Description string
- Service token description
- Href string
- An absolute URL that is the subject of the link's context
- Type string
- Token type - VC_TOKEN
- Uuid string
- Equinix-assigned service token identifier
- description String
- Service token description
- href String
- An absolute URL that is the subject of the link's context
- type String
- Token type - VC_TOKEN
- uuid String
- Equinix-assigned service token identifier
- description string
- Service token description
- href string
- An absolute URL that is the subject of the link's context
- type string
- Token type - VC_TOKEN
- uuid string
- Equinix-assigned service token identifier
- description str
- Service token description
- href str
- An absolute URL that is the subject of the link's context
- type str
- Token type - VC_TOKEN
- uuid str
- Equinix-assigned service token identifier
- description String
- Service token description
- href String
- An absolute URL that is the subject of the link's context
- type String
- Token type - VC_TOKEN
- uuid String
- Equinix-assigned service token identifier
Package Details
- Repository
- equinix equinix/pulumi-equinix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
equinix
Terraform Provider.