1. Packages
  2. Equinix
  3. API Docs
  4. fabric
  5. getServiceToken
Equinix v0.21.0 published on Friday, Feb 28, 2025 by Equinix

equinix.fabric.getServiceToken

Explore with Pulumi AI

equinix logo
Equinix v0.21.0 published on Friday, Feb 28, 2025 by Equinix

    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<GetServiceTokenAccount>
    Customer account information that is associated with this service token
    ChangeLogs List<GetServiceTokenChangeLog>
    Captures connection lifecycle change information
    Description string
    Optional Description to the Service Token you will be creating
    ExpirationDateTime string
    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<GetServiceTokenNotification>
    Preferences for notifications on Service Token configuration or status changes
    Projects List<GetServiceTokenProject>
    Project information
    ServiceTokenConnections List<GetServiceTokenServiceTokenConnection>
    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 []GetServiceTokenAccount
    Customer account information that is associated with this service token
    ChangeLogs []GetServiceTokenChangeLog
    Captures connection lifecycle change information
    Description string
    Optional Description to the Service Token you will be creating
    ExpirationDateTime string
    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 []GetServiceTokenNotification
    Preferences for notifications on Service Token configuration or status changes
    Projects []GetServiceTokenProject
    Project information
    ServiceTokenConnections []GetServiceTokenServiceTokenConnection
    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<GetServiceTokenAccount>
    Customer account information that is associated with this service token
    changeLogs List<GetServiceTokenChangeLog>
    Captures connection lifecycle change information
    description String
    Optional Description to the Service Token you will be creating
    expirationDateTime String
    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<GetServiceTokenNotification>
    Preferences for notifications on Service Token configuration or status changes
    projects List<GetServiceTokenProject>
    Project information
    serviceTokenConnections List<GetServiceTokenServiceTokenConnection>
    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 GetServiceTokenAccount[]
    Customer account information that is associated with this service token
    changeLogs GetServiceTokenChangeLog[]
    Captures connection lifecycle change information
    description string
    Optional Description to the Service Token you will be creating
    expirationDateTime string
    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 GetServiceTokenNotification[]
    Preferences for notifications on Service Token configuration or status changes
    projects GetServiceTokenProject[]
    Project information
    serviceTokenConnections GetServiceTokenServiceTokenConnection[]
    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[GetServiceTokenAccount]
    Customer account information that is associated with this service token
    change_logs Sequence[GetServiceTokenChangeLog]
    Captures connection lifecycle change information
    description str
    Optional Description to the Service Token you will be creating
    expiration_date_time str
    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[GetServiceTokenNotification]
    Preferences for notifications on Service Token configuration or status changes
    projects Sequence[GetServiceTokenProject]
    Project information
    service_token_connections Sequence[GetServiceTokenServiceTokenConnection]
    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
    expirationDateTime String
    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
    serviceTokenConnections List<Property Map>
    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.
    GlobalCustId string
    Equinix-assigned ID of the subscriber's parent organization.
    GlobalOrgId string
    Equinix-assigned ID of the subscriber's parent organization.
    GlobalOrganizationName string
    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.
    GlobalCustId string
    Equinix-assigned ID of the subscriber's parent organization.
    GlobalOrgId string
    Equinix-assigned ID of the subscriber's parent organization.
    GlobalOrganizationName string
    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.
    globalCustId String
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrgId String
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrganizationName String
    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.
    globalCustId string
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrgId string
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrganizationName string
    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_id str
    Equinix-assigned ID of the subscriber's parent organization.
    global_org_id str
    Equinix-assigned ID of the subscriber's parent organization.
    global_organization_name str
    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.
    globalCustId String
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrgId String
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrganizationName String
    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
    CreatedByEmail string
    Created by User Email Address
    CreatedByFullName string
    Created by User Full Name
    CreatedDateTime string
    Created by Date and Time
    DeletedBy string
    Deleted by User Key
    DeletedByEmail string
    Deleted by User Email Address
    DeletedByFullName string
    Deleted by User Full Name
    DeletedDateTime string
    Deleted by Date and Time
    UpdatedBy string
    Updated by User Key
    UpdatedByEmail string
    Updated by User Email Address
    UpdatedByFullName string
    Updated by User Full Name
    UpdatedDateTime string
    Updated by Date and Time
    CreatedBy string
    Created by User Key
    CreatedByEmail string
    Created by User Email Address
    CreatedByFullName string
    Created by User Full Name
    CreatedDateTime string
    Created by Date and Time
    DeletedBy string
    Deleted by User Key
    DeletedByEmail string
    Deleted by User Email Address
    DeletedByFullName string
    Deleted by User Full Name
    DeletedDateTime string
    Deleted by Date and Time
    UpdatedBy string
    Updated by User Key
    UpdatedByEmail string
    Updated by User Email Address
    UpdatedByFullName string
    Updated by User Full Name
    UpdatedDateTime string
    Updated by Date and Time
    createdBy String
    Created by User Key
    createdByEmail String
    Created by User Email Address
    createdByFullName String
    Created by User Full Name
    createdDateTime String
    Created by Date and Time
    deletedBy String
    Deleted by User Key
    deletedByEmail String
    Deleted by User Email Address
    deletedByFullName String
    Deleted by User Full Name
    deletedDateTime String
    Deleted by Date and Time
    updatedBy String
    Updated by User Key
    updatedByEmail String
    Updated by User Email Address
    updatedByFullName String
    Updated by User Full Name
    updatedDateTime String
    Updated by Date and Time
    createdBy string
    Created by User Key
    createdByEmail string
    Created by User Email Address
    createdByFullName string
    Created by User Full Name
    createdDateTime string
    Created by Date and Time
    deletedBy string
    Deleted by User Key
    deletedByEmail string
    Deleted by User Email Address
    deletedByFullName string
    Deleted by User Full Name
    deletedDateTime string
    Deleted by Date and Time
    updatedBy string
    Updated by User Key
    updatedByEmail string
    Updated by User Email Address
    updatedByFullName string
    Updated by User Full Name
    updatedDateTime string
    Updated by Date and Time
    created_by str
    Created by User Key
    created_by_email str
    Created by User Email Address
    created_by_full_name str
    Created by User Full Name
    created_date_time str
    Created by Date and Time
    deleted_by str
    Deleted by User Key
    deleted_by_email str
    Deleted by User Email Address
    deleted_by_full_name str
    Deleted by User Full Name
    deleted_date_time str
    Deleted by Date and Time
    updated_by str
    Updated by User Key
    updated_by_email str
    Updated by User Email Address
    updated_by_full_name str
    Updated by User Full Name
    updated_date_time str
    Updated by Date and Time
    createdBy String
    Created by User Key
    createdByEmail String
    Created by User Email Address
    createdByFullName String
    Created by User Full Name
    createdDateTime String
    Created by Date and Time
    deletedBy String
    Deleted by User Key
    deletedByEmail String
    Deleted by User Email Address
    deletedByFullName String
    Deleted by User Full Name
    deletedDateTime String
    Deleted by Date and Time
    updatedBy String
    Updated by User Key
    updatedByEmail String
    Updated by User Email Address
    updatedByFullName String
    Updated by User Full Name
    updatedDateTime String
    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 string
    Unique Resource URL
    ProjectId string
    Project Id
    Href string
    Unique Resource URL
    ProjectId string
    Project Id
    href String
    Unique Resource URL
    projectId String
    Project Id
    href string
    Unique Resource URL
    projectId string
    Project Id
    href str
    Unique Resource URL
    project_id str
    Project Id
    href String
    Unique Resource URL
    projectId String
    Project Id

    GetServiceTokenServiceTokenConnection

    ASides List<GetServiceTokenServiceTokenConnectionASide>
    A-Side Connection link protocol,virtual device or network configuration
    AllowCustomBandwidth bool
    Allow custom bandwidth value
    AllowRemoteConnection bool
    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<GetServiceTokenServiceTokenConnectionZSide>
    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 []GetServiceTokenServiceTokenConnectionASide
    A-Side Connection link protocol,virtual device or network configuration
    AllowCustomBandwidth bool
    Allow custom bandwidth value
    AllowRemoteConnection bool
    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 []GetServiceTokenServiceTokenConnectionZSide
    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<GetServiceTokenServiceTokenConnectionASide>
    A-Side Connection link protocol,virtual device or network configuration
    allowCustomBandwidth Boolean
    Allow custom bandwidth value
    allowRemoteConnection Boolean
    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<GetServiceTokenServiceTokenConnectionZSide>
    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 GetServiceTokenServiceTokenConnectionASide[]
    A-Side Connection link protocol,virtual device or network configuration
    allowCustomBandwidth boolean
    Allow custom bandwidth value
    allowRemoteConnection boolean
    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 GetServiceTokenServiceTokenConnectionZSide[]
    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[GetServiceTokenServiceTokenConnectionASide]
    A-Side Connection link protocol,virtual device or network configuration
    allow_custom_bandwidth bool
    Allow custom bandwidth value
    allow_remote_connection bool
    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[GetServiceTokenServiceTokenConnectionZSide]
    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
    allowCustomBandwidth Boolean
    Allow custom bandwidth value
    allowRemoteConnection Boolean
    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

    AccessPointSelectors List<GetServiceTokenServiceTokenConnectionASideAccessPointSelector>
    List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
    AccessPointSelectors []GetServiceTokenServiceTokenConnectionASideAccessPointSelector
    List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
    accessPointSelectors List<GetServiceTokenServiceTokenConnectionASideAccessPointSelector>
    List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
    accessPointSelectors GetServiceTokenServiceTokenConnectionASideAccessPointSelector[]
    List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
    access_point_selectors Sequence[GetServiceTokenServiceTokenConnectionASideAccessPointSelector]
    List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
    accessPointSelectors List<Property Map>
    List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability

    GetServiceTokenServiceTokenConnectionASideAccessPointSelector

    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

    Id int
    id
    Type string
    Interface type
    Uuid string
    Equinix-assigned interface identifier
    Id int
    id
    Type string
    Interface type
    Uuid string
    Equinix-assigned interface identifier
    id Integer
    id
    type String
    Interface type
    uuid String
    Equinix-assigned interface identifier
    id number
    id
    type string
    Interface type
    uuid string
    Equinix-assigned interface identifier
    id int
    id
    type str
    Interface type
    uuid str
    Equinix-assigned interface identifier
    id Number
    id
    type String
    Interface type
    uuid String
    Equinix-assigned interface identifier

    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_tag int
    Vlan Customer Tag information, vlanCTag value specified for QINQ connections
    vlan_s_tag 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
    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

    Href string
    Unique Resource Identifier
    Locations List<GetServiceTokenServiceTokenConnectionASideAccessPointSelectorNetworkLocation>
    Location
    Name string
    Network Name
    Scope string
    Scope of Network
    Type string
    Type of Network
    Uuid string
    Equinix-assigned Network identifier
    Href string
    Unique Resource Identifier
    Locations []GetServiceTokenServiceTokenConnectionASideAccessPointSelectorNetworkLocation
    Location
    Name string
    Network Name
    Scope string
    Scope of Network
    Type string
    Type of Network
    Uuid string
    Equinix-assigned Network identifier
    href String
    Unique Resource Identifier
    locations List<GetServiceTokenServiceTokenConnectionASideAccessPointSelectorNetworkLocation>
    Location
    name String
    Network Name
    scope String
    Scope of Network
    type String
    Type of Network
    uuid String
    Equinix-assigned Network identifier
    href string
    Unique Resource Identifier
    locations GetServiceTokenServiceTokenConnectionASideAccessPointSelectorNetworkLocation[]
    Location
    name string
    Network Name
    scope string
    Scope of Network
    type string
    Type of Network
    uuid string
    Equinix-assigned Network identifier
    href str
    Unique Resource Identifier
    locations Sequence[GetServiceTokenServiceTokenConnectionASideAccessPointSelectorNetworkLocation]
    Location
    name str
    Network Name
    scope str
    Scope of Network
    type str
    Type of Network
    uuid str
    Equinix-assigned Network identifier
    href String
    Unique Resource Identifier
    locations List<Property Map>
    Location
    name String
    Network Name
    scope String
    Scope of Network
    type String
    Type of Network
    uuid String
    Equinix-assigned Network identifier

    GetServiceTokenServiceTokenConnectionASideAccessPointSelectorNetworkLocation

    Ibx string
    IBX Code
    MetroCode string
    Access point metro code
    MetroName string
    Access point metro name
    Region string
    Access point region
    Ibx string
    IBX Code
    MetroCode string
    Access point metro code
    MetroName string
    Access point metro name
    Region string
    Access point region
    ibx String
    IBX Code
    metroCode String
    Access point metro code
    metroName String
    Access point metro name
    region String
    Access point region
    ibx string
    IBX Code
    metroCode string
    Access point metro code
    metroName string
    Access point metro name
    region string
    Access point region
    ibx str
    IBX Code
    metro_code str
    Access point metro code
    metro_name str
    Access point metro name
    region str
    Access point region
    ibx String
    IBX Code
    metroCode String
    Access point metro code
    metroName String
    Access point metro name
    region String
    Access point region

    GetServiceTokenServiceTokenConnectionASideAccessPointSelectorPort

    AccountName string
    Account Name
    Bandwidth int
    Port Bandwidth
    CvpId int
    Customer virtual port Id
    EncapsulationProtocolType string
    Port Encapsulation
    Href string
    Unique Resource Identifier
    Locations List<GetServiceTokenServiceTokenConnectionASideAccessPointSelectorPortLocation>
    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
    EncapsulationProtocolType string
    Port Encapsulation
    Href string
    Unique Resource Identifier
    Locations []GetServiceTokenServiceTokenConnectionASideAccessPointSelectorPortLocation
    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
    encapsulationProtocolType String
    Port Encapsulation
    href String
    Unique Resource Identifier
    locations List<GetServiceTokenServiceTokenConnectionASideAccessPointSelectorPortLocation>
    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
    encapsulationProtocolType string
    Port Encapsulation
    href string
    Unique Resource Identifier
    locations GetServiceTokenServiceTokenConnectionASideAccessPointSelectorPortLocation[]
    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_type str
    Port Encapsulation
    href str
    Unique Resource Identifier
    locations Sequence[GetServiceTokenServiceTokenConnectionASideAccessPointSelectorPortLocation]
    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
    encapsulationProtocolType String
    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 string
    IBX Code
    MetroCode string
    Access point metro code
    MetroName string
    Access point metro name
    Region string
    Access point region
    Ibx string
    IBX Code
    MetroCode string
    Access point metro code
    MetroName string
    Access point metro name
    Region string
    Access point region
    ibx String
    IBX Code
    metroCode String
    Access point metro code
    metroName String
    Access point metro name
    region String
    Access point region
    ibx string
    IBX Code
    metroCode string
    Access point metro code
    metroName string
    Access point metro name
    region string
    Access point region
    ibx str
    IBX Code
    metro_code str
    Access point metro code
    metro_name str
    Access point metro name
    region str
    Access point region
    ibx String
    IBX Code
    metroCode String
    Access point metro code
    metroName String
    Access point metro name
    region String
    Access point region

    GetServiceTokenServiceTokenConnectionASideAccessPointSelectorVirtualDevice

    Cluster string
    Virtual Device Cluster Information
    Href string
    Unique Resource Identifier
    Name string
    Customer-assigned Virtual Device Name
    Type string
    Virtual Device type
    Uuid string
    Equinix-assigned Virtual Device identifier
    Cluster string
    Virtual Device Cluster Information
    Href string
    Unique Resource Identifier
    Name string
    Customer-assigned Virtual Device Name
    Type string
    Virtual Device type
    Uuid string
    Equinix-assigned Virtual Device identifier
    cluster String
    Virtual Device Cluster Information
    href String
    Unique Resource Identifier
    name String
    Customer-assigned Virtual Device Name
    type String
    Virtual Device type
    uuid String
    Equinix-assigned Virtual Device identifier
    cluster string
    Virtual Device Cluster Information
    href string
    Unique Resource Identifier
    name string
    Customer-assigned Virtual Device Name
    type string
    Virtual Device type
    uuid string
    Equinix-assigned Virtual Device identifier
    cluster str
    Virtual Device Cluster Information
    href str
    Unique Resource Identifier
    name str
    Customer-assigned Virtual Device Name
    type str
    Virtual Device type
    uuid str
    Equinix-assigned Virtual Device identifier
    cluster String
    Virtual Device Cluster Information
    href String
    Unique Resource Identifier
    name String
    Customer-assigned Virtual Device Name
    type String
    Virtual Device type
    uuid String
    Equinix-assigned Virtual Device identifier

    GetServiceTokenServiceTokenConnectionZSide

    AccessPointSelectors List<GetServiceTokenServiceTokenConnectionZSideAccessPointSelector>
    List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
    AccessPointSelectors []GetServiceTokenServiceTokenConnectionZSideAccessPointSelector
    List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
    accessPointSelectors List<GetServiceTokenServiceTokenConnectionZSideAccessPointSelector>
    List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
    accessPointSelectors GetServiceTokenServiceTokenConnectionZSideAccessPointSelector[]
    List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
    access_point_selectors Sequence[GetServiceTokenServiceTokenConnectionZSideAccessPointSelector]
    List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
    accessPointSelectors List<Property Map>
    List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability

    GetServiceTokenServiceTokenConnectionZSideAccessPointSelector

    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

    Id int
    id
    Type string
    Interface type
    Uuid string
    Equinix-assigned interface identifier
    Id int
    id
    Type string
    Interface type
    Uuid string
    Equinix-assigned interface identifier
    id Integer
    id
    type String
    Interface type
    uuid String
    Equinix-assigned interface identifier
    id number
    id
    type string
    Interface type
    uuid string
    Equinix-assigned interface identifier
    id int
    id
    type str
    Interface type
    uuid str
    Equinix-assigned interface identifier
    id Number
    id
    type String
    Interface type
    uuid String
    Equinix-assigned interface identifier

    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_tag int
    Vlan Customer Tag information, vlanCTag value specified for QINQ connections
    vlan_s_tag 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
    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

    Href string
    Unique Resource Identifier
    Locations List<GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetworkLocation>
    Location
    Name string
    Network Name
    Scope string
    Scope of Network
    Type string
    Type of Network
    Uuid string
    Equinix-assigned Network identifier
    Href string
    Unique Resource Identifier
    Locations []GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetworkLocation
    Location
    Name string
    Network Name
    Scope string
    Scope of Network
    Type string
    Type of Network
    Uuid string
    Equinix-assigned Network identifier
    href String
    Unique Resource Identifier
    locations List<GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetworkLocation>
    Location
    name String
    Network Name
    scope String
    Scope of Network
    type String
    Type of Network
    uuid String
    Equinix-assigned Network identifier
    href string
    Unique Resource Identifier
    locations GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetworkLocation[]
    Location
    name string
    Network Name
    scope string
    Scope of Network
    type string
    Type of Network
    uuid string
    Equinix-assigned Network identifier
    href str
    Unique Resource Identifier
    locations Sequence[GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetworkLocation]
    Location
    name str
    Network Name
    scope str
    Scope of Network
    type str
    Type of Network
    uuid str
    Equinix-assigned Network identifier
    href String
    Unique Resource Identifier
    locations List<Property Map>
    Location
    name String
    Network Name
    scope String
    Scope of Network
    type String
    Type of Network
    uuid String
    Equinix-assigned Network identifier

    GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetworkLocation

    Ibx string
    IBX Code
    MetroCode string
    Access point metro code
    MetroName string
    Access point metro name
    Region string
    Access point region
    Ibx string
    IBX Code
    MetroCode string
    Access point metro code
    MetroName string
    Access point metro name
    Region string
    Access point region
    ibx String
    IBX Code
    metroCode String
    Access point metro code
    metroName String
    Access point metro name
    region String
    Access point region
    ibx string
    IBX Code
    metroCode string
    Access point metro code
    metroName string
    Access point metro name
    region string
    Access point region
    ibx str
    IBX Code
    metro_code str
    Access point metro code
    metro_name str
    Access point metro name
    region str
    Access point region
    ibx String
    IBX Code
    metroCode String
    Access point metro code
    metroName String
    Access point metro name
    region String
    Access point region

    GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorPort

    AccountName string
    Account Name
    Bandwidth int
    Port Bandwidth
    CvpId int
    Customer virtual port Id
    EncapsulationProtocolType string
    Port Encapsulation
    Href string
    Unique Resource Identifier
    Locations List<GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorPortLocation>
    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
    EncapsulationProtocolType string
    Port Encapsulation
    Href string
    Unique Resource Identifier
    Locations []GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorPortLocation
    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
    encapsulationProtocolType String
    Port Encapsulation
    href String
    Unique Resource Identifier
    locations List<GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorPortLocation>
    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
    encapsulationProtocolType string
    Port Encapsulation
    href string
    Unique Resource Identifier
    locations GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorPortLocation[]
    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_type str
    Port Encapsulation
    href str
    Unique Resource Identifier
    locations Sequence[GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorPortLocation]
    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
    encapsulationProtocolType String
    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 string
    IBX Code
    MetroCode string
    Access point metro code
    MetroName string
    Access point metro name
    Region string
    Access point region
    Ibx string
    IBX Code
    MetroCode string
    Access point metro code
    MetroName string
    Access point metro name
    Region string
    Access point region
    ibx String
    IBX Code
    metroCode String
    Access point metro code
    metroName String
    Access point metro name
    region String
    Access point region
    ibx string
    IBX Code
    metroCode string
    Access point metro code
    metroName string
    Access point metro name
    region string
    Access point region
    ibx str
    IBX Code
    metro_code str
    Access point metro code
    metro_name str
    Access point metro name
    region str
    Access point region
    ibx String
    IBX Code
    metroCode String
    Access point metro code
    metroName String
    Access point metro name
    region String
    Access point region

    GetServiceTokenServiceTokenConnectionZSideAccessPointSelectorVirtualDevice

    Cluster string
    Virtual Device Cluster Information
    Href string
    Unique Resource Identifier
    Name string
    Customer-assigned Virtual Device Name
    Type string
    Virtual Device type
    Uuid string
    Equinix-assigned Virtual Device identifier
    Cluster string
    Virtual Device Cluster Information
    Href string
    Unique Resource Identifier
    Name string
    Customer-assigned Virtual Device Name
    Type string
    Virtual Device type
    Uuid string
    Equinix-assigned Virtual Device identifier
    cluster String
    Virtual Device Cluster Information
    href String
    Unique Resource Identifier
    name String
    Customer-assigned Virtual Device Name
    type String
    Virtual Device type
    uuid String
    Equinix-assigned Virtual Device identifier
    cluster string
    Virtual Device Cluster Information
    href string
    Unique Resource Identifier
    name string
    Customer-assigned Virtual Device Name
    type string
    Virtual Device type
    uuid string
    Equinix-assigned Virtual Device identifier
    cluster str
    Virtual Device Cluster Information
    href str
    Unique Resource Identifier
    name str
    Customer-assigned Virtual Device Name
    type str
    Virtual Device type
    uuid str
    Equinix-assigned Virtual Device identifier
    cluster String
    Virtual Device Cluster Information
    href String
    Unique Resource Identifier
    name String
    Customer-assigned Virtual Device Name
    type String
    Virtual Device type
    uuid String
    Equinix-assigned Virtual Device identifier

    Package Details

    Repository
    equinix equinix/pulumi-equinix
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the equinix Terraform Provider.
    equinix logo
    Equinix v0.21.0 published on Friday, Feb 28, 2025 by Equinix