Equinix v0.21.0 published on Friday, Feb 28, 2025 by Equinix
equinix.fabric.getServiceToken
Explore with Pulumi AI
Fabric V4 API compatible data resource that allow user to fetch service token for a given UUID
Additional documentation:
- Getting Started: https://docs.equinix.com/en-us/Content/Interconnection/Fabric/service%20tokens/Fabric-Service-Tokens.htm
- API: https://docs.equinix.com/en-us/Content/KnowledgeCenter/Fabric/GettingStarted/Integrating-with-Fabric-V4-APIs/ConnectUsingServiceToken.htm
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as equinix from "@pulumi/equinix";
const service-token = equinix.fabric.getServiceToken({
uuid: "<uuid_of_service_token>",
});
export const id = service_token.then(service_token => service_token.id);
export const type = service_token.then(service_token => service_token.type);
export const expirationDateTime = service_token.then(service_token => service_token.expirationDateTime);
export const supportedBandwidths = service_token.then(service_token => service_token.serviceTokenConnections?.[0]?.supportedBandwidths);
export const virtualDeviceType = service_token.then(service_token => service_token.serviceTokenConnections?.[0]?.zSides?.[0]?.accessPointSelectors?.[0]?.virtualDevice?.type);
export const virtualDeviceUuid = service_token.then(service_token => service_token.serviceTokenConnections?.[0]?.zSides?.[0]?.accessPointSelectors?.[0]?.virtualDevice?.uuid);
export const interfaceType = service_token.then(service_token => service_token.serviceTokenConnections?.[0]?.zSides?.[0]?.accessPointSelectors?.[0]?.["interface"]?.type);
export const interfaceUuid = service_token.then(service_token => service_token.serviceTokenConnections?.[0]?.zSides?.[0]?.accessPointSelectors?.[0]?.["interface"]?.id);
import pulumi
import pulumi_equinix as equinix
service_token = equinix.fabric.get_service_token(uuid="<uuid_of_service_token>")
pulumi.export("id", service_token.id)
pulumi.export("type", service_token.type)
pulumi.export("expirationDateTime", service_token.expiration_date_time)
pulumi.export("supportedBandwidths", service_token.service_token_connections[0].supported_bandwidths)
pulumi.export("virtualDeviceType", service_token.service_token_connections[0].z_sides[0].access_point_selectors[0].virtual_device.type)
pulumi.export("virtualDeviceUuid", service_token.service_token_connections[0].z_sides[0].access_point_selectors[0].virtual_device.uuid)
pulumi.export("interfaceType", service_token.service_token_connections[0].z_sides[0].access_point_selectors[0].interface.type)
pulumi.export("interfaceUuid", service_token.service_token_connections[0].z_sides[0].access_point_selectors[0].interface.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 {
service_token, err := fabric.LookupServiceToken(ctx, &fabric.LookupServiceTokenArgs{
Uuid: "<uuid_of_service_token>",
}, nil)
if err != nil {
return err
}
ctx.Export("id", service_token.Id)
ctx.Export("type", service_token.Type)
ctx.Export("expirationDateTime", service_token.ExpirationDateTime)
ctx.Export("supportedBandwidths", service_token.ServiceTokenConnections[0].SupportedBandwidths)
ctx.Export("virtualDeviceType", service_token.ServiceTokenConnections[0].ZSides[0].AccessPointSelectors[0].VirtualDevice.Type)
ctx.Export("virtualDeviceUuid", service_token.ServiceTokenConnections[0].ZSides[0].AccessPointSelectors[0].VirtualDevice.Uuid)
ctx.Export("interfaceType", service_token.ServiceTokenConnections[0].ZSides[0].AccessPointSelectors[0].Interface.Type)
ctx.Export("interfaceUuid", service_token.ServiceTokenConnections[0].ZSides[0].AccessPointSelectors[0].Interface.Id)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Equinix = Pulumi.Equinix;
return await Deployment.RunAsync(() =>
{
var service_token = Equinix.Fabric.GetServiceToken.Invoke(new()
{
Uuid = "<uuid_of_service_token>",
});
return new Dictionary<string, object?>
{
["id"] = service_token.Apply(service_token => service_token.Apply(getServiceTokenResult => getServiceTokenResult.Id)),
["type"] = service_token.Apply(service_token => service_token.Apply(getServiceTokenResult => getServiceTokenResult.Type)),
["expirationDateTime"] = service_token.Apply(service_token => service_token.Apply(getServiceTokenResult => getServiceTokenResult.ExpirationDateTime)),
["supportedBandwidths"] = service_token.Apply(service_token => service_token.Apply(getServiceTokenResult => getServiceTokenResult.ServiceTokenConnections[0]?.SupportedBandwidths)),
["virtualDeviceType"] = service_token.Apply(service_token => service_token.Apply(getServiceTokenResult => getServiceTokenResult.ServiceTokenConnections[0]?.ZSides[0]?.AccessPointSelectors[0]?.VirtualDevice?.Type)),
["virtualDeviceUuid"] = service_token.Apply(service_token => service_token.Apply(getServiceTokenResult => getServiceTokenResult.ServiceTokenConnections[0]?.ZSides[0]?.AccessPointSelectors[0]?.VirtualDevice?.Uuid)),
["interfaceType"] = service_token.Apply(service_token => service_token.Apply(getServiceTokenResult => getServiceTokenResult.ServiceTokenConnections[0]?.ZSides[0]?.AccessPointSelectors[0]?.Interface?.Type)),
["interfaceUuid"] = service_token.Apply(service_token => service_token.Apply(getServiceTokenResult => getServiceTokenResult.ServiceTokenConnections[0]?.ZSides[0]?.AccessPointSelectors[0]?.Interface?.Id)),
};
});
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.GetServiceTokenArgs;
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 service-token = FabricFunctions.getServiceToken(GetServiceTokenArgs.builder()
.uuid("<uuid_of_service_token>")
.build());
ctx.export("id", service_token.id());
ctx.export("type", service_token.type());
ctx.export("expirationDateTime", service_token.expirationDateTime());
ctx.export("supportedBandwidths", service_token.serviceTokenConnections()[0].supportedBandwidths());
ctx.export("virtualDeviceType", service_token.serviceTokenConnections()[0].zSides()[0].accessPointSelectors()[0].virtualDevice().type());
ctx.export("virtualDeviceUuid", service_token.serviceTokenConnections()[0].zSides()[0].accessPointSelectors()[0].virtualDevice().uuid());
ctx.export("interfaceType", service_token.serviceTokenConnections()[0].zSides()[0].accessPointSelectors()[0].interface().type());
ctx.export("interfaceUuid", service_token.serviceTokenConnections()[0].zSides()[0].accessPointSelectors()[0].interface().id());
}
}
variables:
service-token:
fn::invoke:
Function: equinix:fabric:getServiceToken
Arguments:
uuid: <uuid_of_service_token>
outputs:
id: ${["service-token"].id}
type: ${["service-token"].type}
expirationDateTime: ${["service-token"].expirationDateTime}
supportedBandwidths: ${["service-token"].serviceTokenConnections[0].supportedBandwidths}
virtualDeviceType: ${["service-token"].serviceTokenConnections[0].zSides[0].accessPointSelectors[0].virtualDevice.type}
virtualDeviceUuid: ${["service-token"].serviceTokenConnections[0].zSides[0].accessPointSelectors[0].virtualDevice.uuid}
interfaceType: ${["service-token"].serviceTokenConnections[0].zSides[0].accessPointSelectors[0].interface.type}
interfaceUuid: ${["service-token"].serviceTokenConnections[0].zSides[0].accessPointSelectors[0].interface.id}
Using getServiceToken
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 getServiceToken(args: GetServiceTokenArgs, opts?: InvokeOptions): Promise<GetServiceTokenResult>
function getServiceTokenOutput(args: GetServiceTokenOutputArgs, opts?: InvokeOptions): Output<GetServiceTokenResult>
def get_service_token(uuid: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetServiceTokenResult
def get_service_token_output(uuid: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetServiceTokenResult]
func LookupServiceToken(ctx *Context, args *LookupServiceTokenArgs, opts ...InvokeOption) (*LookupServiceTokenResult, error)
func LookupServiceTokenOutput(ctx *Context, args *LookupServiceTokenOutputArgs, opts ...InvokeOption) LookupServiceTokenResultOutput
> Note: This function is named LookupServiceToken
in the Go SDK.
public static class GetServiceToken
{
public static Task<GetServiceTokenResult> InvokeAsync(GetServiceTokenArgs args, InvokeOptions? opts = null)
public static Output<GetServiceTokenResult> Invoke(GetServiceTokenInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetServiceTokenResult> getServiceToken(GetServiceTokenArgs args, InvokeOptions options)
public static Output<GetServiceTokenResult> getServiceToken(GetServiceTokenArgs args, InvokeOptions options)
fn::invoke:
function: equinix:fabric/getServiceToken:getServiceToken
arguments:
# arguments dictionary
The following arguments are supported:
- Uuid string
- Equinix-assigned service token identifier
- Uuid string
- Equinix-assigned service token identifier
- uuid String
- Equinix-assigned service token identifier
- uuid string
- Equinix-assigned service token identifier
- uuid str
- Equinix-assigned service token identifier
- uuid String
- Equinix-assigned service token identifier
getServiceToken Result
The following output properties are available:
- Accounts
List<Get
Service Token Account> - Customer account information that is associated with this service token
- Change
Logs List<GetService Token Change Log> - Captures connection lifecycle change information
- Description string
- Optional Description to the Service Token you will be creating
- Expiration
Date stringTime - Expiration date and time of the service token; 2020-11-06T07:00:00Z
- Href string
- An absolute URL that is the subject of the link's context.
- Id string
- The provider-assigned unique ID for this managed resource.
- Issuer
Side string - Information about token side; ASIDE, ZSIDE
- Name string
- Name of the Service Token
- Notifications
List<Get
Service Token Notification> - Preferences for notifications on Service Token configuration or status changes
- Projects
List<Get
Service Token Project> - Project information
- Service
Token List<GetConnections Service Token Service Token Connection> - Service Token Connection Type Information
- State string
- Service token state; ACTIVE, INACTIVE, EXPIRED, DELETED
- Type string
- Service Token Type; VCTOKEN,EPLTOKEN
- Uuid string
- Equinix-assigned service token identifier
- Accounts
[]Get
Service Token Account - Customer account information that is associated with this service token
- Change
Logs []GetService Token Change Log - Captures connection lifecycle change information
- Description string
- Optional Description to the Service Token you will be creating
- Expiration
Date stringTime - Expiration date and time of the service token; 2020-11-06T07:00:00Z
- Href string
- An absolute URL that is the subject of the link's context.
- Id string
- The provider-assigned unique ID for this managed resource.
- Issuer
Side string - Information about token side; ASIDE, ZSIDE
- Name string
- Name of the Service Token
- Notifications
[]Get
Service Token Notification - Preferences for notifications on Service Token configuration or status changes
- Projects
[]Get
Service Token Project - Project information
- Service
Token []GetConnections Service Token Service Token Connection - Service Token Connection Type Information
- State string
- Service token state; ACTIVE, INACTIVE, EXPIRED, DELETED
- Type string
- Service Token Type; VCTOKEN,EPLTOKEN
- Uuid string
- Equinix-assigned service token identifier
- accounts
List<Get
Service Token Account> - Customer account information that is associated with this service token
- change
Logs List<GetService Token Change Log> - Captures connection lifecycle change information
- description String
- Optional Description to the Service Token you will be creating
- expiration
Date StringTime - Expiration date and time of the service token; 2020-11-06T07:00:00Z
- href String
- An absolute URL that is the subject of the link's context.
- id String
- The provider-assigned unique ID for this managed resource.
- issuer
Side String - Information about token side; ASIDE, ZSIDE
- name String
- Name of the Service Token
- notifications
List<Get
Service Token Notification> - Preferences for notifications on Service Token configuration or status changes
- projects
List<Get
Service Token Project> - Project information
- service
Token List<GetConnections Service Token Service Token Connection> - Service Token Connection Type Information
- state String
- Service token state; ACTIVE, INACTIVE, EXPIRED, DELETED
- type String
- Service Token Type; VCTOKEN,EPLTOKEN
- uuid String
- Equinix-assigned service token identifier
- accounts
Get
Service Token Account[] - Customer account information that is associated with this service token
- change
Logs GetService Token Change Log[] - Captures connection lifecycle change information
- description string
- Optional Description to the Service Token you will be creating
- expiration
Date stringTime - Expiration date and time of the service token; 2020-11-06T07:00:00Z
- href string
- An absolute URL that is the subject of the link's context.
- id string
- The provider-assigned unique ID for this managed resource.
- issuer
Side string - Information about token side; ASIDE, ZSIDE
- name string
- Name of the Service Token
- notifications
Get
Service Token Notification[] - Preferences for notifications on Service Token configuration or status changes
- projects
Get
Service Token Project[] - Project information
- service
Token GetConnections Service Token Service Token Connection[] - Service Token Connection Type Information
- state string
- Service token state; ACTIVE, INACTIVE, EXPIRED, DELETED
- type string
- Service Token Type; VCTOKEN,EPLTOKEN
- uuid string
- Equinix-assigned service token identifier
- accounts
Sequence[Get
Service Token Account] - Customer account information that is associated with this service token
- change_
logs Sequence[GetService Token Change Log] - Captures connection lifecycle change information
- description str
- Optional Description to the Service Token you will be creating
- expiration_
date_ strtime - Expiration date and time of the service token; 2020-11-06T07:00:00Z
- href str
- An absolute URL that is the subject of the link's context.
- id str
- The provider-assigned unique ID for this managed resource.
- issuer_
side str - Information about token side; ASIDE, ZSIDE
- name str
- Name of the Service Token
- notifications
Sequence[Get
Service Token Notification] - Preferences for notifications on Service Token configuration or status changes
- projects
Sequence[Get
Service Token Project] - Project information
- service_
token_ Sequence[Getconnections Service Token Service Token Connection] - Service Token Connection Type Information
- state str
- Service token state; ACTIVE, INACTIVE, EXPIRED, DELETED
- type str
- Service Token Type; VCTOKEN,EPLTOKEN
- uuid str
- Equinix-assigned service token identifier
- accounts List<Property Map>
- Customer account information that is associated with this service token
- change
Logs List<Property Map> - Captures connection lifecycle change information
- description String
- Optional Description to the Service Token you will be creating
- expiration
Date StringTime - Expiration date and time of the service token; 2020-11-06T07:00:00Z
- href String
- An absolute URL that is the subject of the link's context.
- id String
- The provider-assigned unique ID for this managed resource.
- issuer
Side String - Information about token side; ASIDE, ZSIDE
- name String
- Name of the Service Token
- notifications List<Property Map>
- Preferences for notifications on Service Token configuration or status changes
- projects List<Property Map>
- Project information
- service
Token List<Property Map>Connections - Service Token Connection Type Information
- state String
- Service token state; ACTIVE, INACTIVE, EXPIRED, DELETED
- type String
- Service Token Type; VCTOKEN,EPLTOKEN
- uuid String
- Equinix-assigned service token identifier
Supporting Types
GetServiceTokenAccount
- 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
GetServiceTokenChangeLog
- 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
GetServiceTokenNotification
- 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
GetServiceTokenProject
- href str
- Unique Resource URL
- project_
id str - Project Id
GetServiceTokenServiceTokenConnection
- ASides
List<Get
Service Token Service Token Connection ASide> - A-Side Connection link protocol,virtual device or network configuration
- Allow
Custom boolBandwidth - Allow custom bandwidth value
- Allow
Remote boolConnection - Authorization to connect remotely
- Bandwidth
Limit int - Connection bandwidth limit in Mbps
- Supported
Bandwidths List<int> - List of permitted bandwidths'; For Port-based Service Tokens, the maximum allowable bandwidth is 50 Gbps, while for Virtual Device-based Service Tokens, it is limited to 10 Gbps
- Uuid string
- Equinix-assigned connection identifier
- ZSides
List<Get
Service Token Service Token Connection ZSide> - Z-Side Connection link protocol,virtual device or network configuration
- Type string
- Type of Connection supported by Service Token you will create; EVPL_VC, EVPLAN_VC, EPLAN_VC, IPWAN_VC
- ASides
[]Get
Service Token Service Token Connection ASide - A-Side Connection link protocol,virtual device or network configuration
- Allow
Custom boolBandwidth - Allow custom bandwidth value
- Allow
Remote boolConnection - Authorization to connect remotely
- Bandwidth
Limit int - Connection bandwidth limit in Mbps
- Supported
Bandwidths []int - List of permitted bandwidths'; For Port-based Service Tokens, the maximum allowable bandwidth is 50 Gbps, while for Virtual Device-based Service Tokens, it is limited to 10 Gbps
- Uuid string
- Equinix-assigned connection identifier
- ZSides
[]Get
Service Token Service Token Connection ZSide - Z-Side Connection link protocol,virtual device or network configuration
- Type string
- Type of Connection supported by Service Token you will create; EVPL_VC, EVPLAN_VC, EPLAN_VC, IPWAN_VC
- a
Sides List<GetService Token Service Token Connection ASide> - A-Side Connection link protocol,virtual device or network configuration
- allow
Custom BooleanBandwidth - Allow custom bandwidth value
- allow
Remote BooleanConnection - Authorization to connect remotely
- bandwidth
Limit Integer - Connection bandwidth limit in Mbps
- supported
Bandwidths List<Integer> - List of permitted bandwidths'; For Port-based Service Tokens, the maximum allowable bandwidth is 50 Gbps, while for Virtual Device-based Service Tokens, it is limited to 10 Gbps
- uuid String
- Equinix-assigned connection identifier
- z
Sides List<GetService Token Service Token Connection ZSide> - Z-Side Connection link protocol,virtual device or network configuration
- type String
- Type of Connection supported by Service Token you will create; EVPL_VC, EVPLAN_VC, EPLAN_VC, IPWAN_VC
- a
Sides GetService Token Service Token Connection ASide[] - A-Side Connection link protocol,virtual device or network configuration
- allow
Custom booleanBandwidth - Allow custom bandwidth value
- allow
Remote booleanConnection - Authorization to connect remotely
- bandwidth
Limit number - Connection bandwidth limit in Mbps
- supported
Bandwidths number[] - List of permitted bandwidths'; For Port-based Service Tokens, the maximum allowable bandwidth is 50 Gbps, while for Virtual Device-based Service Tokens, it is limited to 10 Gbps
- uuid string
- Equinix-assigned connection identifier
- z
Sides GetService Token Service Token Connection ZSide[] - Z-Side Connection link protocol,virtual device or network configuration
- type string
- Type of Connection supported by Service Token you will create; EVPL_VC, EVPLAN_VC, EPLAN_VC, IPWAN_VC
- a_
sides Sequence[GetService Token Service Token Connection ASide] - A-Side Connection link protocol,virtual device or network configuration
- allow_
custom_ boolbandwidth - Allow custom bandwidth value
- allow_
remote_ boolconnection - Authorization to connect remotely
- bandwidth_
limit int - Connection bandwidth limit in Mbps
- supported_
bandwidths Sequence[int] - List of permitted bandwidths'; For Port-based Service Tokens, the maximum allowable bandwidth is 50 Gbps, while for Virtual Device-based Service Tokens, it is limited to 10 Gbps
- uuid str
- Equinix-assigned connection identifier
- z_
sides Sequence[GetService Token Service Token Connection ZSide] - Z-Side Connection link protocol,virtual device or network configuration
- type str
- Type of Connection supported by Service Token you will create; EVPL_VC, EVPLAN_VC, EPLAN_VC, IPWAN_VC
- a
Sides List<Property Map> - A-Side Connection link protocol,virtual device or network configuration
- allow
Custom BooleanBandwidth - Allow custom bandwidth value
- allow
Remote BooleanConnection - Authorization to connect remotely
- bandwidth
Limit Number - Connection bandwidth limit in Mbps
- supported
Bandwidths List<Number> - List of permitted bandwidths'; For Port-based Service Tokens, the maximum allowable bandwidth is 50 Gbps, while for Virtual Device-based Service Tokens, it is limited to 10 Gbps
- uuid String
- Equinix-assigned connection identifier
- z
Sides List<Property Map> - Z-Side Connection link protocol,virtual device or network configuration
- type String
- Type of Connection supported by Service Token you will create; EVPL_VC, EVPLAN_VC, EPLAN_VC, IPWAN_VC
GetServiceTokenServiceTokenConnectionASide
- Access
Point List<GetSelectors Service Token Service Token Connection ASide Access Point Selector> - List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
- Access
Point []GetSelectors Service Token Service Token Connection ASide Access Point Selector - List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
- access
Point List<GetSelectors Service Token Service Token Connection ASide Access Point Selector> - List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
- access
Point GetSelectors Service Token Service Token Connection ASide Access Point Selector[] - List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
- access_
point_ Sequence[Getselectors Service Token Service Token Connection ASide Access Point Selector] - List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
- access
Point List<Property Map>Selectors - List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
GetServiceTokenServiceTokenConnectionASideAccessPointSelector
- Network
Get
Service Token Service Token Connection ASide Access Point Selector Network - Network Configuration
- Type string
- Type of Access point; COLO, VD, NETWORK
- Interface
Get
Service Token Service Token Connection ASide Access Point Selector Interface - Virtual Device Interface Configuration
- Link
Protocol GetService Token Service Token Connection ASide Access Point Selector Link Protocol - Link protocol Configuration
- Port
Get
Service Token Service Token Connection ASide Access Point Selector Port - Port Configuration
- Virtual
Device GetService Token Service Token Connection ASide Access Point Selector Virtual Device - Virtual Device Configuration
- Network
Get
Service Token Service Token Connection ASide Access Point Selector Network - Network Configuration
- Type string
- Type of Access point; COLO, VD, NETWORK
- Interface
Get
Service Token Service Token Connection ASide Access Point Selector Interface - Virtual Device Interface Configuration
- Link
Protocol GetService Token Service Token Connection ASide Access Point Selector Link Protocol - Link protocol Configuration
- Port
Get
Service Token Service Token Connection ASide Access Point Selector Port - Port Configuration
- Virtual
Device GetService Token Service Token Connection ASide Access Point Selector Virtual Device - Virtual Device Configuration
- network
Get
Service Token Service Token Connection ASide Access Point Selector Network - Network Configuration
- type String
- Type of Access point; COLO, VD, NETWORK
- interface_
Get
Service Token Service Token Connection ASide Access Point Selector Interface - Virtual Device Interface Configuration
- link
Protocol GetService Token Service Token Connection ASide Access Point Selector Link Protocol - Link protocol Configuration
- port
Get
Service Token Service Token Connection ASide Access Point Selector Port - Port Configuration
- virtual
Device GetService Token Service Token Connection ASide Access Point Selector Virtual Device - Virtual Device Configuration
- network
Get
Service Token Service Token Connection ASide Access Point Selector Network - Network Configuration
- type string
- Type of Access point; COLO, VD, NETWORK
- interface
Get
Service Token Service Token Connection ASide Access Point Selector Interface - Virtual Device Interface Configuration
- link
Protocol GetService Token Service Token Connection ASide Access Point Selector Link Protocol - Link protocol Configuration
- port
Get
Service Token Service Token Connection ASide Access Point Selector Port - Port Configuration
- virtual
Device GetService Token Service Token Connection ASide Access Point Selector Virtual Device - Virtual Device Configuration
- network
Get
Service Token Service Token Connection ASide Access Point Selector Network - Network Configuration
- type str
- Type of Access point; COLO, VD, NETWORK
- interface
Get
Service Token Service Token Connection ASide Access Point Selector Interface - Virtual Device Interface Configuration
- link_
protocol GetService Token Service Token Connection ASide Access Point Selector Link Protocol - Link protocol Configuration
- port
Get
Service Token Service Token Connection ASide Access Point Selector Port - Port Configuration
- virtual_
device GetService Token Service Token Connection ASide Access Point Selector Virtual Device - Virtual Device Configuration
- network Property Map
- Network Configuration
- type String
- Type of Access point; COLO, VD, NETWORK
- interface Property Map
- Virtual Device Interface Configuration
- link
Protocol Property Map - Link protocol Configuration
- port Property Map
- Port Configuration
- virtual
Device Property Map - Virtual Device Configuration
GetServiceTokenServiceTokenConnectionASideAccessPointSelectorInterface
GetServiceTokenServiceTokenConnectionASideAccessPointSelectorLinkProtocol
- 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 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 str
- 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 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
GetServiceTokenServiceTokenConnectionASideAccessPointSelectorNetwork
GetServiceTokenServiceTokenConnectionASideAccessPointSelectorNetworkLocation
- ibx str
- IBX Code
- metro_
code str - Access point metro code
- metro_
name str - Access point metro name
- region str
- Access point region
GetServiceTokenServiceTokenConnectionASideAccessPointSelectorPort
- Account
Name string - Account Name
- Bandwidth int
- Port Bandwidth
- Cvp
Id int - Customer virtual port Id
- Encapsulation
Protocol stringType - Port Encapsulation
- Href string
- Unique Resource Identifier
- Locations
List<Get
Service Token Service Token Connection ASide Access Point Selector Port Location> - Port Location
- Port
Name string - Port Name
- Priority string
- Port Priority
- Type string
- Type of Port
- Uuid string
- Equinix-assigned Port identifier
- Account
Name string - Account Name
- Bandwidth int
- Port Bandwidth
- Cvp
Id int - Customer virtual port Id
- Encapsulation
Protocol stringType - Port Encapsulation
- Href string
- Unique Resource Identifier
- Locations
[]Get
Service Token Service Token Connection ASide Access Point Selector Port Location - Port Location
- Port
Name string - Port Name
- Priority string
- Port Priority
- Type string
- Type of Port
- Uuid string
- Equinix-assigned Port identifier
- account
Name String - Account Name
- bandwidth Integer
- Port Bandwidth
- cvp
Id Integer - Customer virtual port Id
- encapsulation
Protocol StringType - Port Encapsulation
- href String
- Unique Resource Identifier
- locations
List<Get
Service Token Service Token Connection ASide Access Point Selector Port Location> - Port Location
- port
Name String - Port Name
- priority String
- Port Priority
- type String
- Type of Port
- uuid String
- Equinix-assigned Port identifier
- account
Name string - Account Name
- bandwidth number
- Port Bandwidth
- cvp
Id number - Customer virtual port Id
- encapsulation
Protocol stringType - Port Encapsulation
- href string
- Unique Resource Identifier
- locations
Get
Service Token Service Token Connection ASide Access Point Selector Port Location[] - Port Location
- port
Name string - Port Name
- priority string
- Port Priority
- type string
- Type of Port
- uuid string
- Equinix-assigned Port identifier
- account_
name str - Account Name
- bandwidth int
- Port Bandwidth
- cvp_
id int - Customer virtual port Id
- encapsulation_
protocol_ strtype - Port Encapsulation
- href str
- Unique Resource Identifier
- locations
Sequence[Get
Service Token Service Token Connection ASide Access Point Selector Port Location] - Port Location
- port_
name str - Port Name
- priority str
- Port Priority
- type str
- Type of Port
- uuid str
- Equinix-assigned Port identifier
- account
Name String - Account Name
- bandwidth Number
- Port Bandwidth
- cvp
Id Number - Customer virtual port Id
- encapsulation
Protocol StringType - Port Encapsulation
- href String
- Unique Resource Identifier
- locations List<Property Map>
- Port Location
- port
Name String - Port Name
- priority String
- Port Priority
- type String
- Type of Port
- uuid String
- Equinix-assigned Port identifier
GetServiceTokenServiceTokenConnectionASideAccessPointSelectorPortLocation
- ibx str
- IBX Code
- metro_
code str - Access point metro code
- metro_
name str - Access point metro name
- region str
- Access point region
GetServiceTokenServiceTokenConnectionASideAccessPointSelectorVirtualDevice
GetServiceTokenServiceTokenConnectionZSide
- Access
Point List<GetSelectors Service Token Service Token Connection ZSide Access Point Selector> - List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
- Access
Point []GetSelectors Service Token Service Token Connection ZSide Access Point Selector - List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
- access
Point List<GetSelectors Service Token Service Token Connection ZSide Access Point Selector> - List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
- access
Point GetSelectors Service Token Service Token Connection ZSide Access Point Selector[] - List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
- access_
point_ Sequence[Getselectors Service Token Service Token Connection ZSide Access Point Selector] - List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
- access
Point List<Property Map>Selectors - List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
GetServiceTokenServiceTokenConnectionZSideAccessPointSelector
- Network
Get
Service Token Service Token Connection ZSide Access Point Selector Network - Network Configuration
- Type string
- Type of Access point; COLO, VD, NETWORK
- Interface
Get
Service Token Service Token Connection ZSide Access Point Selector Interface - Virtual Device Interface Configuration
- Link
Protocol GetService Token Service Token Connection ZSide Access Point Selector Link Protocol - Link protocol Configuration
- Port
Get
Service Token Service Token Connection ZSide Access Point Selector Port - Port Configuration
- Virtual
Device GetService Token Service Token Connection ZSide Access Point Selector Virtual Device - Virtual Device Configuration
- Network
Get
Service Token Service Token Connection ZSide Access Point Selector Network - Network Configuration
- Type string
- Type of Access point; COLO, VD, NETWORK
- Interface
Get
Service Token Service Token Connection ZSide Access Point Selector Interface - Virtual Device Interface Configuration
- Link
Protocol GetService Token Service Token Connection ZSide Access Point Selector Link Protocol - Link protocol Configuration
- Port
Get
Service Token Service Token Connection ZSide Access Point Selector Port - Port Configuration
- Virtual
Device GetService Token Service Token Connection ZSide Access Point Selector Virtual Device - Virtual Device Configuration
- network
Get
Service Token Service Token Connection ZSide Access Point Selector Network - Network Configuration
- type String
- Type of Access point; COLO, VD, NETWORK
- interface_
Get
Service Token Service Token Connection ZSide Access Point Selector Interface - Virtual Device Interface Configuration
- link
Protocol GetService Token Service Token Connection ZSide Access Point Selector Link Protocol - Link protocol Configuration
- port
Get
Service Token Service Token Connection ZSide Access Point Selector Port - Port Configuration
- virtual
Device GetService Token Service Token Connection ZSide Access Point Selector Virtual Device - Virtual Device Configuration
- network
Get
Service Token Service Token Connection ZSide Access Point Selector Network - Network Configuration
- type string
- Type of Access point; COLO, VD, NETWORK
- interface
Get
Service Token Service Token Connection ZSide Access Point Selector Interface - Virtual Device Interface Configuration
- link
Protocol GetService Token Service Token Connection ZSide Access Point Selector Link Protocol - Link protocol Configuration
- port
Get
Service Token Service Token Connection ZSide Access Point Selector Port - Port Configuration
- virtual
Device GetService Token Service Token Connection ZSide Access Point Selector Virtual Device - Virtual Device Configuration
- network
Get
Service Token Service Token Connection ZSide Access Point Selector Network - Network Configuration
- type str
- Type of Access point; COLO, VD, NETWORK
- interface
Get
Service Token Service Token Connection ZSide Access Point Selector Interface - Virtual Device Interface Configuration
- link_
protocol GetService Token Service Token Connection ZSide Access Point Selector Link Protocol - Link protocol Configuration
- port
Get
Service Token Service Token Connection ZSide Access Point Selector Port - Port Configuration
- virtual_
device GetService Token Service Token Connection ZSide Access Point Selector Virtual Device - Virtual Device Configuration
- network Property Map
- Network Configuration
- type String
- Type of Access point; COLO, VD, NETWORK
- interface Property Map
- Virtual Device Interface Configuration
- link
Protocol Property Map - Link protocol Configuration
- port Property Map
- Port Configuration
- virtual
Device Property Map - Virtual Device Configuration
GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorInterface
GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorLinkProtocol
- 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 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 str
- 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 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
GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetwork
GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetworkLocation
- ibx str
- IBX Code
- metro_
code str - Access point metro code
- metro_
name str - Access point metro name
- region str
- Access point region
GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorPort
- Account
Name string - Account Name
- Bandwidth int
- Port Bandwidth
- Cvp
Id int - Customer virtual port Id
- Encapsulation
Protocol stringType - Port Encapsulation
- Href string
- Unique Resource Identifier
- Locations
List<Get
Service Token Service Token Connection ZSide Access Point Selector Port Location> - Port Location
- Port
Name string - Port Name
- Priority string
- Port Priority
- Type string
- Type of Port
- Uuid string
- Equinix-assigned Port identifier
- Account
Name string - Account Name
- Bandwidth int
- Port Bandwidth
- Cvp
Id int - Customer virtual port Id
- Encapsulation
Protocol stringType - Port Encapsulation
- Href string
- Unique Resource Identifier
- Locations
[]Get
Service Token Service Token Connection ZSide Access Point Selector Port Location - Port Location
- Port
Name string - Port Name
- Priority string
- Port Priority
- Type string
- Type of Port
- Uuid string
- Equinix-assigned Port identifier
- account
Name String - Account Name
- bandwidth Integer
- Port Bandwidth
- cvp
Id Integer - Customer virtual port Id
- encapsulation
Protocol StringType - Port Encapsulation
- href String
- Unique Resource Identifier
- locations
List<Get
Service Token Service Token Connection ZSide Access Point Selector Port Location> - Port Location
- port
Name String - Port Name
- priority String
- Port Priority
- type String
- Type of Port
- uuid String
- Equinix-assigned Port identifier
- account
Name string - Account Name
- bandwidth number
- Port Bandwidth
- cvp
Id number - Customer virtual port Id
- encapsulation
Protocol stringType - Port Encapsulation
- href string
- Unique Resource Identifier
- locations
Get
Service Token Service Token Connection ZSide Access Point Selector Port Location[] - Port Location
- port
Name string - Port Name
- priority string
- Port Priority
- type string
- Type of Port
- uuid string
- Equinix-assigned Port identifier
- account_
name str - Account Name
- bandwidth int
- Port Bandwidth
- cvp_
id int - Customer virtual port Id
- encapsulation_
protocol_ strtype - Port Encapsulation
- href str
- Unique Resource Identifier
- locations
Sequence[Get
Service Token Service Token Connection ZSide Access Point Selector Port Location] - Port Location
- port_
name str - Port Name
- priority str
- Port Priority
- type str
- Type of Port
- uuid str
- Equinix-assigned Port identifier
- account
Name String - Account Name
- bandwidth Number
- Port Bandwidth
- cvp
Id Number - Customer virtual port Id
- encapsulation
Protocol StringType - Port Encapsulation
- href String
- Unique Resource Identifier
- locations List<Property Map>
- Port Location
- port
Name String - Port Name
- priority String
- Port Priority
- type String
- Type of Port
- uuid String
- Equinix-assigned Port identifier
GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorPortLocation
- ibx str
- IBX Code
- metro_
code str - Access point metro code
- metro_
name str - Access point metro name
- region str
- Access point region
GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorVirtualDevice
Package Details
- Repository
- equinix equinix/pulumi-equinix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
equinix
Terraform Provider.