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 dictionaryThe 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<GetService Token Account> 
- Customer account information that is associated with this service token
- ChangeLogs List<GetService Token Change Log> 
- Captures connection lifecycle change information
- Description string
- Optional Description to the Service Token you will be creating
- ExpirationDate 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.
- IssuerSide string
- Information about token side; ASIDE, ZSIDE
- Name string
- Name of the Service Token
- Notifications
List<GetService Token Notification> 
- Preferences for notifications on Service Token configuration or status changes
- Projects
List<GetService Token Project> 
- Project information
- ServiceToken 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
[]GetService Token Account 
- Customer account information that is associated with this service token
- ChangeLogs []GetService Token Change Log 
- Captures connection lifecycle change information
- Description string
- Optional Description to the Service Token you will be creating
- ExpirationDate 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.
- IssuerSide string
- Information about token side; ASIDE, ZSIDE
- Name string
- Name of the Service Token
- Notifications
[]GetService Token Notification 
- Preferences for notifications on Service Token configuration or status changes
- Projects
[]GetService Token Project 
- Project information
- ServiceToken []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<GetService Token Account> 
- Customer account information that is associated with this service token
- changeLogs List<GetService Token Change Log> 
- Captures connection lifecycle change information
- description String
- Optional Description to the Service Token you will be creating
- expirationDate 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.
- issuerSide String
- Information about token side; ASIDE, ZSIDE
- name String
- Name of the Service Token
- notifications
List<GetService Token Notification> 
- Preferences for notifications on Service Token configuration or status changes
- projects
List<GetService Token Project> 
- Project information
- serviceToken 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
GetService Token Account[] 
- Customer account information that is associated with this service token
- changeLogs GetService Token Change Log[] 
- Captures connection lifecycle change information
- description string
- Optional Description to the Service Token you will be creating
- expirationDate 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.
- issuerSide string
- Information about token side; ASIDE, ZSIDE
- name string
- Name of the Service Token
- notifications
GetService Token Notification[] 
- Preferences for notifications on Service Token configuration or status changes
- projects
GetService Token Project[] 
- Project information
- serviceToken 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[GetService 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[GetService Token Notification] 
- Preferences for notifications on Service Token configuration or status changes
- projects
Sequence[GetService 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
- changeLogs List<Property Map>
- Captures connection lifecycle change information
- description String
- Optional Description to the Service Token you will be creating
- expirationDate 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.
- issuerSide 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
- serviceToken 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   
- AccountName string
- Legal name of the accountholder.
- AccountNumber int
- Equinix-assigned account number.
- GlobalCust stringId 
- Equinix-assigned ID of the subscriber's parent organization.
- GlobalOrg stringId 
- Equinix-assigned ID of the subscriber's parent organization.
- GlobalOrganization stringName 
- Equinix-assigned name of the subscriber's parent organization.
- OrgId int
- Equinix-assigned ID of the subscriber's organization.
- OrganizationName string
- Equinix-assigned name of the subscriber's organization.
- UcmId string
- Enterprise datastore id
- AccountName string
- Legal name of the accountholder.
- AccountNumber int
- Equinix-assigned account number.
- GlobalCust stringId 
- Equinix-assigned ID of the subscriber's parent organization.
- GlobalOrg stringId 
- Equinix-assigned ID of the subscriber's parent organization.
- GlobalOrganization stringName 
- Equinix-assigned name of the subscriber's parent organization.
- OrgId int
- Equinix-assigned ID of the subscriber's organization.
- OrganizationName string
- Equinix-assigned name of the subscriber's organization.
- UcmId string
- Enterprise datastore id
- accountName String
- Legal name of the accountholder.
- accountNumber Integer
- Equinix-assigned account number.
- globalCust StringId 
- Equinix-assigned ID of the subscriber's parent organization.
- globalOrg StringId 
- Equinix-assigned ID of the subscriber's parent organization.
- globalOrganization StringName 
- Equinix-assigned name of the subscriber's parent organization.
- orgId Integer
- Equinix-assigned ID of the subscriber's organization.
- organizationName String
- Equinix-assigned name of the subscriber's organization.
- ucmId String
- Enterprise datastore id
- accountName string
- Legal name of the accountholder.
- accountNumber number
- Equinix-assigned account number.
- globalCust stringId 
- Equinix-assigned ID of the subscriber's parent organization.
- globalOrg stringId 
- Equinix-assigned ID of the subscriber's parent organization.
- globalOrganization stringName 
- Equinix-assigned name of the subscriber's parent organization.
- orgId number
- Equinix-assigned ID of the subscriber's organization.
- organizationName string
- Equinix-assigned name of the subscriber's organization.
- ucmId 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
- accountName String
- Legal name of the accountholder.
- accountNumber Number
- Equinix-assigned account number.
- globalCust StringId 
- Equinix-assigned ID of the subscriber's parent organization.
- globalOrg StringId 
- Equinix-assigned ID of the subscriber's parent organization.
- globalOrganization StringName 
- Equinix-assigned name of the subscriber's parent organization.
- orgId Number
- Equinix-assigned ID of the subscriber's organization.
- organizationName String
- Equinix-assigned name of the subscriber's organization.
- ucmId String
- Enterprise datastore id
GetServiceTokenChangeLog    
- CreatedBy string
- Created by User Key
- CreatedBy stringEmail 
- Created by User Email Address
- CreatedBy stringFull Name 
- Created by User Full Name
- CreatedDate stringTime 
- Created by Date and Time
- DeletedBy string
- Deleted by User Key
- DeletedBy stringEmail 
- Deleted by User Email Address
- DeletedBy stringFull Name 
- Deleted by User Full Name
- DeletedDate stringTime 
- Deleted by Date and Time
- UpdatedBy string
- Updated by User Key
- UpdatedBy stringEmail 
- Updated by User Email Address
- UpdatedBy stringFull Name 
- Updated by User Full Name
- UpdatedDate stringTime 
- Updated by Date and Time
- CreatedBy string
- Created by User Key
- CreatedBy stringEmail 
- Created by User Email Address
- CreatedBy stringFull Name 
- Created by User Full Name
- CreatedDate stringTime 
- Created by Date and Time
- DeletedBy string
- Deleted by User Key
- DeletedBy stringEmail 
- Deleted by User Email Address
- DeletedBy stringFull Name 
- Deleted by User Full Name
- DeletedDate stringTime 
- Deleted by Date and Time
- UpdatedBy string
- Updated by User Key
- UpdatedBy stringEmail 
- Updated by User Email Address
- UpdatedBy stringFull Name 
- Updated by User Full Name
- UpdatedDate stringTime 
- Updated by Date and Time
- createdBy String
- Created by User Key
- createdBy StringEmail 
- Created by User Email Address
- createdBy StringFull Name 
- Created by User Full Name
- createdDate StringTime 
- Created by Date and Time
- deletedBy String
- Deleted by User Key
- deletedBy StringEmail 
- Deleted by User Email Address
- deletedBy StringFull Name 
- Deleted by User Full Name
- deletedDate StringTime 
- Deleted by Date and Time
- updatedBy String
- Updated by User Key
- updatedBy StringEmail 
- Updated by User Email Address
- updatedBy StringFull Name 
- Updated by User Full Name
- updatedDate StringTime 
- Updated by Date and Time
- createdBy string
- Created by User Key
- createdBy stringEmail 
- Created by User Email Address
- createdBy stringFull Name 
- Created by User Full Name
- createdDate stringTime 
- Created by Date and Time
- deletedBy string
- Deleted by User Key
- deletedBy stringEmail 
- Deleted by User Email Address
- deletedBy stringFull Name 
- Deleted by User Full Name
- deletedDate stringTime 
- Deleted by Date and Time
- updatedBy string
- Updated by User Key
- updatedBy stringEmail 
- Updated by User Email Address
- updatedBy stringFull Name 
- Updated by User Full Name
- updatedDate 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
- createdBy String
- Created by User Key
- createdBy StringEmail 
- Created by User Email Address
- createdBy StringFull Name 
- Created by User Full Name
- createdDate StringTime 
- Created by Date and Time
- deletedBy String
- Deleted by User Key
- deletedBy StringEmail 
- Deleted by User Email Address
- deletedBy StringFull Name 
- Deleted by User Full Name
- deletedDate StringTime 
- Deleted by Date and Time
- updatedBy String
- Updated by User Key
- updatedBy StringEmail 
- Updated by User Email Address
- updatedBy StringFull Name 
- Updated by User Full Name
- updatedDate 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
- SendInterval string
- Send interval
- Emails []string
- Array of contact emails
- Type string
- Notification Type - ALL,CONNECTION_APPROVAL,SALES_REP_NOTIFICATIONS, NOTIFICATIONS
- SendInterval string
- Send interval
- emails List<String>
- Array of contact emails
- type String
- Notification Type - ALL,CONNECTION_APPROVAL,SALES_REP_NOTIFICATIONS, NOTIFICATIONS
- sendInterval String
- Send interval
- emails string[]
- Array of contact emails
- type string
- Notification Type - ALL,CONNECTION_APPROVAL,SALES_REP_NOTIFICATIONS, NOTIFICATIONS
- sendInterval 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
- sendInterval String
- Send interval
GetServiceTokenProject   
- href str
- Unique Resource URL
- project_id str
- Project Id
GetServiceTokenServiceTokenConnection     
- ASides
List<GetService Token Service Token Connection ASide> 
- A-Side Connection link protocol,virtual device or network configuration
- AllowCustom boolBandwidth 
- Allow custom bandwidth value
- AllowRemote boolConnection 
- Authorization to connect remotely
- BandwidthLimit int
- Connection bandwidth limit in Mbps
- SupportedBandwidths 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<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
- ASides
[]GetService Token Service Token Connection ASide 
- A-Side Connection link protocol,virtual device or network configuration
- AllowCustom boolBandwidth 
- Allow custom bandwidth value
- AllowRemote boolConnection 
- Authorization to connect remotely
- BandwidthLimit int
- Connection bandwidth limit in Mbps
- SupportedBandwidths []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
[]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
- aSides List<GetService Token Service Token Connection ASide> 
- A-Side Connection link protocol,virtual device or network configuration
- allowCustom BooleanBandwidth 
- Allow custom bandwidth value
- allowRemote BooleanConnection 
- Authorization to connect remotely
- bandwidthLimit Integer
- Connection bandwidth limit in Mbps
- supportedBandwidths 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
- zSides 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
- aSides GetService Token Service Token Connection ASide[] 
- A-Side Connection link protocol,virtual device or network configuration
- allowCustom booleanBandwidth 
- Allow custom bandwidth value
- allowRemote booleanConnection 
- Authorization to connect remotely
- bandwidthLimit number
- Connection bandwidth limit in Mbps
- supportedBandwidths 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
- zSides 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
- aSides List<Property Map>
- A-Side Connection link protocol,virtual device or network configuration
- allowCustom BooleanBandwidth 
- Allow custom bandwidth value
- allowRemote BooleanConnection 
- Authorization to connect remotely
- bandwidthLimit Number
- Connection bandwidth limit in Mbps
- supportedBandwidths 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
- zSides 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      
- AccessPoint 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
- AccessPoint []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
- accessPoint 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
- accessPoint 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
- accessPoint List<Property Map>Selectors 
- List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
GetServiceTokenServiceTokenConnectionASideAccessPointSelector         
- Network
GetService Token Service Token Connection ASide Access Point Selector Network 
- Network Configuration
- Type string
- Type of Access point; COLO, VD, NETWORK
- Interface
GetService Token Service Token Connection ASide Access Point Selector Interface 
- Virtual Device Interface Configuration
- LinkProtocol GetService Token Service Token Connection ASide Access Point Selector Link Protocol 
- Link protocol Configuration
- Port
GetService Token Service Token Connection ASide Access Point Selector Port 
- Port Configuration
- VirtualDevice GetService Token Service Token Connection ASide Access Point Selector Virtual Device 
- Virtual Device Configuration
- Network
GetService Token Service Token Connection ASide Access Point Selector Network 
- Network Configuration
- Type string
- Type of Access point; COLO, VD, NETWORK
- Interface
GetService Token Service Token Connection ASide Access Point Selector Interface 
- Virtual Device Interface Configuration
- LinkProtocol GetService Token Service Token Connection ASide Access Point Selector Link Protocol 
- Link protocol Configuration
- Port
GetService Token Service Token Connection ASide Access Point Selector Port 
- Port Configuration
- VirtualDevice GetService Token Service Token Connection ASide Access Point Selector Virtual Device 
- Virtual Device Configuration
- network
GetService Token Service Token Connection ASide Access Point Selector Network 
- Network Configuration
- type String
- Type of Access point; COLO, VD, NETWORK
- interface_
GetService Token Service Token Connection ASide Access Point Selector Interface 
- Virtual Device Interface Configuration
- linkProtocol GetService Token Service Token Connection ASide Access Point Selector Link Protocol 
- Link protocol Configuration
- port
GetService Token Service Token Connection ASide Access Point Selector Port 
- Port Configuration
- virtualDevice GetService Token Service Token Connection ASide Access Point Selector Virtual Device 
- Virtual Device Configuration
- network
GetService Token Service Token Connection ASide Access Point Selector Network 
- Network Configuration
- type string
- Type of Access point; COLO, VD, NETWORK
- interface
GetService Token Service Token Connection ASide Access Point Selector Interface 
- Virtual Device Interface Configuration
- linkProtocol GetService Token Service Token Connection ASide Access Point Selector Link Protocol 
- Link protocol Configuration
- port
GetService Token Service Token Connection ASide Access Point Selector Port 
- Port Configuration
- virtualDevice GetService Token Service Token Connection ASide Access Point Selector Virtual Device 
- Virtual Device Configuration
- network
GetService Token Service Token Connection ASide Access Point Selector Network 
- Network Configuration
- type str
- Type of Access point; COLO, VD, NETWORK
- interface
GetService 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
GetService 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
- linkProtocol Property Map
- Link protocol Configuration
- port Property Map
- Port Configuration
- virtualDevice Property Map
- Virtual Device Configuration
GetServiceTokenServiceTokenConnectionASideAccessPointSelectorInterface          
GetServiceTokenServiceTokenConnectionASideAccessPointSelectorLinkProtocol           
- Type string
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- VlanCTag int
- Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- VlanSTag int
- Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- VlanTag int
- Vlan Tag information, vlanTag value specified for DOT1Q connections
- Type string
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- VlanCTag int
- Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- VlanSTag int
- Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- VlanTag int
- Vlan Tag information, vlanTag value specified for DOT1Q connections
- type String
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- vlanCTag Integer
- Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlanSTag Integer
- Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlanTag Integer
- Vlan Tag information, vlanTag value specified for DOT1Q connections
- type string
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- vlanCTag number
- Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlanSTag number
- Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlanTag 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
- vlanCTag Number
- Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlanSTag Number
- Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlanTag 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          
- AccountName string
- Account Name
- Bandwidth int
- Port Bandwidth
- CvpId int
- Customer virtual port Id
- EncapsulationProtocol stringType 
- Port Encapsulation
- Href string
- Unique Resource Identifier
- Locations
List<GetService Token Service Token Connection ASide Access Point Selector Port Location> 
- Port Location
- PortName string
- Port Name
- Priority string
- Port Priority
- Type string
- Type of Port
- Uuid string
- Equinix-assigned Port identifier
- AccountName string
- Account Name
- Bandwidth int
- Port Bandwidth
- CvpId int
- Customer virtual port Id
- EncapsulationProtocol stringType 
- Port Encapsulation
- Href string
- Unique Resource Identifier
- Locations
[]GetService Token Service Token Connection ASide Access Point Selector Port Location 
- Port Location
- PortName string
- Port Name
- Priority string
- Port Priority
- Type string
- Type of Port
- Uuid string
- Equinix-assigned Port identifier
- accountName String
- Account Name
- bandwidth Integer
- Port Bandwidth
- cvpId Integer
- Customer virtual port Id
- encapsulationProtocol StringType 
- Port Encapsulation
- href String
- Unique Resource Identifier
- locations
List<GetService Token Service Token Connection ASide Access Point Selector Port Location> 
- Port Location
- portName String
- Port Name
- priority String
- Port Priority
- type String
- Type of Port
- uuid String
- Equinix-assigned Port identifier
- accountName string
- Account Name
- bandwidth number
- Port Bandwidth
- cvpId number
- Customer virtual port Id
- encapsulationProtocol stringType 
- Port Encapsulation
- href string
- Unique Resource Identifier
- locations
GetService Token Service Token Connection ASide Access Point Selector Port Location[] 
- Port Location
- portName 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[GetService 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
- accountName String
- Account Name
- bandwidth Number
- Port Bandwidth
- cvpId Number
- Customer virtual port Id
- encapsulationProtocol StringType 
- Port Encapsulation
- href String
- Unique Resource Identifier
- locations List<Property Map>
- Port Location
- portName 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      
- AccessPoint 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
- AccessPoint []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
- accessPoint 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
- accessPoint 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
- accessPoint List<Property Map>Selectors 
- List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
GetServiceTokenServiceTokenConnectionZSideAccessPointSelector         
- Network
GetService Token Service Token Connection ZSide Access Point Selector Network 
- Network Configuration
- Type string
- Type of Access point; COLO, VD, NETWORK
- Interface
GetService Token Service Token Connection ZSide Access Point Selector Interface 
- Virtual Device Interface Configuration
- LinkProtocol GetService Token Service Token Connection ZSide Access Point Selector Link Protocol 
- Link protocol Configuration
- Port
GetService Token Service Token Connection ZSide Access Point Selector Port 
- Port Configuration
- VirtualDevice GetService Token Service Token Connection ZSide Access Point Selector Virtual Device 
- Virtual Device Configuration
- Network
GetService Token Service Token Connection ZSide Access Point Selector Network 
- Network Configuration
- Type string
- Type of Access point; COLO, VD, NETWORK
- Interface
GetService Token Service Token Connection ZSide Access Point Selector Interface 
- Virtual Device Interface Configuration
- LinkProtocol GetService Token Service Token Connection ZSide Access Point Selector Link Protocol 
- Link protocol Configuration
- Port
GetService Token Service Token Connection ZSide Access Point Selector Port 
- Port Configuration
- VirtualDevice GetService Token Service Token Connection ZSide Access Point Selector Virtual Device 
- Virtual Device Configuration
- network
GetService Token Service Token Connection ZSide Access Point Selector Network 
- Network Configuration
- type String
- Type of Access point; COLO, VD, NETWORK
- interface_
GetService Token Service Token Connection ZSide Access Point Selector Interface 
- Virtual Device Interface Configuration
- linkProtocol GetService Token Service Token Connection ZSide Access Point Selector Link Protocol 
- Link protocol Configuration
- port
GetService Token Service Token Connection ZSide Access Point Selector Port 
- Port Configuration
- virtualDevice GetService Token Service Token Connection ZSide Access Point Selector Virtual Device 
- Virtual Device Configuration
- network
GetService Token Service Token Connection ZSide Access Point Selector Network 
- Network Configuration
- type string
- Type of Access point; COLO, VD, NETWORK
- interface
GetService Token Service Token Connection ZSide Access Point Selector Interface 
- Virtual Device Interface Configuration
- linkProtocol GetService Token Service Token Connection ZSide Access Point Selector Link Protocol 
- Link protocol Configuration
- port
GetService Token Service Token Connection ZSide Access Point Selector Port 
- Port Configuration
- virtualDevice GetService Token Service Token Connection ZSide Access Point Selector Virtual Device 
- Virtual Device Configuration
- network
GetService Token Service Token Connection ZSide Access Point Selector Network 
- Network Configuration
- type str
- Type of Access point; COLO, VD, NETWORK
- interface
GetService 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
GetService 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
- linkProtocol Property Map
- Link protocol Configuration
- port Property Map
- Port Configuration
- virtualDevice Property Map
- Virtual Device Configuration
GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorInterface          
GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorLinkProtocol           
- Type string
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- VlanCTag int
- Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- VlanSTag int
- Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- VlanTag int
- Vlan Tag information, vlanTag value specified for DOT1Q connections
- Type string
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- VlanCTag int
- Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- VlanSTag int
- Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- VlanTag int
- Vlan Tag information, vlanTag value specified for DOT1Q connections
- type String
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- vlanCTag Integer
- Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlanSTag Integer
- Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlanTag Integer
- Vlan Tag information, vlanTag value specified for DOT1Q connections
- type string
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- vlanCTag number
- Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlanSTag number
- Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlanTag 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
- vlanCTag Number
- Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlanSTag Number
- Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlanTag 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          
- AccountName string
- Account Name
- Bandwidth int
- Port Bandwidth
- CvpId int
- Customer virtual port Id
- EncapsulationProtocol stringType 
- Port Encapsulation
- Href string
- Unique Resource Identifier
- Locations
List<GetService Token Service Token Connection ZSide Access Point Selector Port Location> 
- Port Location
- PortName string
- Port Name
- Priority string
- Port Priority
- Type string
- Type of Port
- Uuid string
- Equinix-assigned Port identifier
- AccountName string
- Account Name
- Bandwidth int
- Port Bandwidth
- CvpId int
- Customer virtual port Id
- EncapsulationProtocol stringType 
- Port Encapsulation
- Href string
- Unique Resource Identifier
- Locations
[]GetService Token Service Token Connection ZSide Access Point Selector Port Location 
- Port Location
- PortName string
- Port Name
- Priority string
- Port Priority
- Type string
- Type of Port
- Uuid string
- Equinix-assigned Port identifier
- accountName String
- Account Name
- bandwidth Integer
- Port Bandwidth
- cvpId Integer
- Customer virtual port Id
- encapsulationProtocol StringType 
- Port Encapsulation
- href String
- Unique Resource Identifier
- locations
List<GetService Token Service Token Connection ZSide Access Point Selector Port Location> 
- Port Location
- portName String
- Port Name
- priority String
- Port Priority
- type String
- Type of Port
- uuid String
- Equinix-assigned Port identifier
- accountName string
- Account Name
- bandwidth number
- Port Bandwidth
- cvpId number
- Customer virtual port Id
- encapsulationProtocol stringType 
- Port Encapsulation
- href string
- Unique Resource Identifier
- locations
GetService Token Service Token Connection ZSide Access Point Selector Port Location[] 
- Port Location
- portName 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[GetService 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
- accountName String
- Account Name
- bandwidth Number
- Port Bandwidth
- cvpId Number
- Customer virtual port Id
- encapsulationProtocol StringType 
- Port Encapsulation
- href String
- Unique Resource Identifier
- locations List<Property Map>
- Port Location
- portName 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 equinixTerraform Provider.
