equinix.fabric.ServiceToken
Explore with Pulumi AI
Fabric V4 API compatible resource allows creation and management of Equinix Fabric Service Token.
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
Aside Port Service Token
import * as pulumi from "@pulumi/pulumi";
import * as equinix from "@equinix-labs/pulumi-equinix";
const test = new equinix.fabric.ServiceToken("test", {
description: "Aside COLO Service Token",
expirationDateTime: "2025-01-18T06:43:49.981Z",
notifications: [{
emails: [
"example@equinix.com",
"test1@equinix.com",
],
type: "ALL",
}],
serviceTokenConnections: [{
aSides: [{
accessPointSelectors: [{
linkProtocol: {
type: "DOT1Q",
vlanTag: 2987,
},
port: {
uuid: "<port_uuid>",
},
type: "COLO",
}],
}],
bandwidthLimit: 1000,
type: "EVPL_VC",
}],
type: "VC_TOKEN",
});
import pulumi
import pulumi_equinix as equinix
test = equinix.fabric.ServiceToken("test",
description="Aside COLO Service Token",
expiration_date_time="2025-01-18T06:43:49.981Z",
notifications=[{
"emails": [
"example@equinix.com",
"test1@equinix.com",
],
"type": "ALL",
}],
service_token_connections=[{
"a_sides": [{
"access_point_selectors": [{
"link_protocol": {
"type": "DOT1Q",
"vlan_tag": 2987,
},
"port": {
"uuid": "<port_uuid>",
},
"type": "COLO",
}],
}],
"bandwidth_limit": 1000,
"type": "EVPL_VC",
}],
type="VC_TOKEN")
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 {
_, err := fabric.NewServiceToken(ctx, "test", &fabric.ServiceTokenArgs{
Description: pulumi.String("Aside COLO Service Token"),
ExpirationDateTime: pulumi.String("2025-01-18T06:43:49.981Z"),
Notifications: fabric.ServiceTokenNotificationArray{
&fabric.ServiceTokenNotificationArgs{
Emails: pulumi.StringArray{
pulumi.String("example@equinix.com"),
pulumi.String("test1@equinix.com"),
},
Type: pulumi.String("ALL"),
},
},
ServiceTokenConnections: fabric.ServiceTokenServiceTokenConnectionArray{
&fabric.ServiceTokenServiceTokenConnectionArgs{
ASides: fabric.ServiceTokenServiceTokenConnectionASideArray{
&fabric.ServiceTokenServiceTokenConnectionASideArgs{
AccessPointSelectors: fabric.ServiceTokenServiceTokenConnectionASideAccessPointSelectorArray{
&fabric.ServiceTokenServiceTokenConnectionASideAccessPointSelectorArgs{
LinkProtocol: &fabric.ServiceTokenServiceTokenConnectionASideAccessPointSelectorLinkProtocolArgs{
Type: pulumi.String("DOT1Q"),
VlanTag: pulumi.Int(2987),
},
Port: &fabric.ServiceTokenServiceTokenConnectionASideAccessPointSelectorPortArgs{
Uuid: pulumi.String("<port_uuid>"),
},
Type: pulumi.String("COLO"),
},
},
},
},
BandwidthLimit: pulumi.Int(1000),
Type: pulumi.String("EVPL_VC"),
},
},
Type: pulumi.String("VC_TOKEN"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Equinix = Pulumi.Equinix;
return await Deployment.RunAsync(() =>
{
var test = new Equinix.Fabric.ServiceToken("test", new()
{
Description = "Aside COLO Service Token",
ExpirationDateTime = "2025-01-18T06:43:49.981Z",
Notifications = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenNotificationArgs
{
Emails = new[]
{
"example@equinix.com",
"test1@equinix.com",
},
Type = "ALL",
},
},
ServiceTokenConnections = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionArgs
{
ASides = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionASideArgs
{
AccessPointSelectors = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionASideAccessPointSelectorArgs
{
LinkProtocol = new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionASideAccessPointSelectorLinkProtocolArgs
{
Type = "DOT1Q",
VlanTag = 2987,
},
Port = new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionASideAccessPointSelectorPortArgs
{
Uuid = "<port_uuid>",
},
Type = "COLO",
},
},
},
},
BandwidthLimit = 1000,
Type = "EVPL_VC",
},
},
Type = "VC_TOKEN",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.equinix.fabric.ServiceToken;
import com.pulumi.equinix.fabric.ServiceTokenArgs;
import com.pulumi.equinix.fabric.inputs.ServiceTokenNotificationArgs;
import com.pulumi.equinix.fabric.inputs.ServiceTokenServiceTokenConnectionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var test = new ServiceToken("test", ServiceTokenArgs.builder()
.description("Aside COLO Service Token")
.expirationDateTime("2025-01-18T06:43:49.981Z")
.notifications(ServiceTokenNotificationArgs.builder()
.emails(
"example@equinix.com",
"test1@equinix.com")
.type("ALL")
.build())
.serviceTokenConnections(ServiceTokenServiceTokenConnectionArgs.builder()
.aSides(ServiceTokenServiceTokenConnectionASideArgs.builder()
.accessPointSelectors(ServiceTokenServiceTokenConnectionASideAccessPointSelectorArgs.builder()
.linkProtocol(ServiceTokenServiceTokenConnectionASideAccessPointSelectorLinkProtocolArgs.builder()
.type("DOT1Q")
.vlanTag("2987")
.build())
.port(ServiceTokenServiceTokenConnectionASideAccessPointSelectorPortArgs.builder()
.uuid("<port_uuid>")
.build())
.type("COLO")
.build())
.build())
.bandwidthLimit(1000)
.type("EVPL_VC")
.build())
.type("VC_TOKEN")
.build());
}
}
resources:
test:
type: equinix:fabric:ServiceToken
properties:
description: Aside COLO Service Token
expirationDateTime: 2025-01-18T06:43:49.981Z
notifications:
- emails:
- example@equinix.com
- test1@equinix.com
type: ALL
serviceTokenConnections:
- aSides:
- accessPointSelectors:
- linkProtocol:
type: DOT1Q
vlanTag: '2987'
port:
uuid: <port_uuid>
type: COLO
bandwidthLimit: 1000
type: EVPL_VC
type: VC_TOKEN
Zside Port Service Token
import * as pulumi from "@pulumi/pulumi";
import * as equinix from "@equinix-labs/pulumi-equinix";
const test = new equinix.fabric.ServiceToken("test", {
description: "Zside COLO Service Token",
expirationDateTime: "2025-01-18T06:43:49.981Z",
notifications: [{
emails: [
"example@equinix.com",
"test1@equinix.com",
],
type: "ALL",
}],
serviceTokenConnections: [{
supportedBandwidths: [
50,
200,
10000,
],
type: "EVPL_VC",
zSides: [{
accessPointSelectors: [{
linkProtocol: {
type: "DOT1Q",
vlanTag: 2087,
},
port: {
uuid: "<port_uuid>",
},
type: "COLO",
}],
}],
}],
type: "VC_TOKEN",
});
import pulumi
import pulumi_equinix as equinix
test = equinix.fabric.ServiceToken("test",
description="Zside COLO Service Token",
expiration_date_time="2025-01-18T06:43:49.981Z",
notifications=[{
"emails": [
"example@equinix.com",
"test1@equinix.com",
],
"type": "ALL",
}],
service_token_connections=[{
"supported_bandwidths": [
50,
200,
10000,
],
"type": "EVPL_VC",
"z_sides": [{
"access_point_selectors": [{
"link_protocol": {
"type": "DOT1Q",
"vlan_tag": 2087,
},
"port": {
"uuid": "<port_uuid>",
},
"type": "COLO",
}],
}],
}],
type="VC_TOKEN")
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 {
_, err := fabric.NewServiceToken(ctx, "test", &fabric.ServiceTokenArgs{
Description: pulumi.String("Zside COLO Service Token"),
ExpirationDateTime: pulumi.String("2025-01-18T06:43:49.981Z"),
Notifications: fabric.ServiceTokenNotificationArray{
&fabric.ServiceTokenNotificationArgs{
Emails: pulumi.StringArray{
pulumi.String("example@equinix.com"),
pulumi.String("test1@equinix.com"),
},
Type: pulumi.String("ALL"),
},
},
ServiceTokenConnections: fabric.ServiceTokenServiceTokenConnectionArray{
&fabric.ServiceTokenServiceTokenConnectionArgs{
SupportedBandwidths: pulumi.IntArray{
pulumi.Int(50),
pulumi.Int(200),
pulumi.Int(10000),
},
Type: pulumi.String("EVPL_VC"),
ZSides: fabric.ServiceTokenServiceTokenConnectionZSideArray{
&fabric.ServiceTokenServiceTokenConnectionZSideArgs{
AccessPointSelectors: fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorArray{
&fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorArgs{
LinkProtocol: &fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorLinkProtocolArgs{
Type: pulumi.String("DOT1Q"),
VlanTag: pulumi.Int(2087),
},
Port: &fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorPortArgs{
Uuid: pulumi.String("<port_uuid>"),
},
Type: pulumi.String("COLO"),
},
},
},
},
},
},
Type: pulumi.String("VC_TOKEN"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Equinix = Pulumi.Equinix;
return await Deployment.RunAsync(() =>
{
var test = new Equinix.Fabric.ServiceToken("test", new()
{
Description = "Zside COLO Service Token",
ExpirationDateTime = "2025-01-18T06:43:49.981Z",
Notifications = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenNotificationArgs
{
Emails = new[]
{
"example@equinix.com",
"test1@equinix.com",
},
Type = "ALL",
},
},
ServiceTokenConnections = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionArgs
{
SupportedBandwidths = new[]
{
50,
200,
10000,
},
Type = "EVPL_VC",
ZSides = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionZSideArgs
{
AccessPointSelectors = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorArgs
{
LinkProtocol = new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorLinkProtocolArgs
{
Type = "DOT1Q",
VlanTag = 2087,
},
Port = new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorPortArgs
{
Uuid = "<port_uuid>",
},
Type = "COLO",
},
},
},
},
},
},
Type = "VC_TOKEN",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.equinix.fabric.ServiceToken;
import com.pulumi.equinix.fabric.ServiceTokenArgs;
import com.pulumi.equinix.fabric.inputs.ServiceTokenNotificationArgs;
import com.pulumi.equinix.fabric.inputs.ServiceTokenServiceTokenConnectionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var test = new ServiceToken("test", ServiceTokenArgs.builder()
.description("Zside COLO Service Token")
.expirationDateTime("2025-01-18T06:43:49.981Z")
.notifications(ServiceTokenNotificationArgs.builder()
.emails(
"example@equinix.com",
"test1@equinix.com")
.type("ALL")
.build())
.serviceTokenConnections(ServiceTokenServiceTokenConnectionArgs.builder()
.supportedBandwidths(
50,
200,
10000)
.type("EVPL_VC")
.zSides(ServiceTokenServiceTokenConnectionZSideArgs.builder()
.accessPointSelectors(ServiceTokenServiceTokenConnectionZSideAccessPointSelectorArgs.builder()
.linkProtocol(ServiceTokenServiceTokenConnectionZSideAccessPointSelectorLinkProtocolArgs.builder()
.type("DOT1Q")
.vlanTag("2087")
.build())
.port(ServiceTokenServiceTokenConnectionZSideAccessPointSelectorPortArgs.builder()
.uuid("<port_uuid>")
.build())
.type("COLO")
.build())
.build())
.build())
.type("VC_TOKEN")
.build());
}
}
resources:
test:
type: equinix:fabric:ServiceToken
properties:
description: Zside COLO Service Token
expirationDateTime: 2025-01-18T06:43:49.981Z
notifications:
- emails:
- example@equinix.com
- test1@equinix.com
type: ALL
serviceTokenConnections:
- supportedBandwidths:
- 50
- 200
- 10000
type: EVPL_VC
zSides:
- accessPointSelectors:
- linkProtocol:
type: DOT1Q
vlanTag: '2087'
port:
uuid: <port_uuid>
type: COLO
type: VC_TOKEN
Zside Network Service Token
import * as pulumi from "@pulumi/pulumi";
import * as equinix from "@equinix-labs/pulumi-equinix";
const test = new equinix.fabric.ServiceToken("test", {
description: "Zside Network Service Token",
expirationDateTime: "2025-01-18T06:43:49.986Z",
notifications: [{
emails: ["example@equinix.com"],
type: "ALL",
}],
serviceTokenConnections: [{
supportedBandwidths: [
50,
200,
10000,
],
type: "EVPL_VC",
zSides: [{
accessPointSelectors: [{
network: {
uuid: "<network_uuid>",
},
type: "NETWORK",
}],
}],
}],
type: "VC_TOKEN",
});
import pulumi
import pulumi_equinix as equinix
test = equinix.fabric.ServiceToken("test",
description="Zside Network Service Token",
expiration_date_time="2025-01-18T06:43:49.986Z",
notifications=[{
"emails": ["example@equinix.com"],
"type": "ALL",
}],
service_token_connections=[{
"supported_bandwidths": [
50,
200,
10000,
],
"type": "EVPL_VC",
"z_sides": [{
"access_point_selectors": [{
"network": {
"uuid": "<network_uuid>",
},
"type": "NETWORK",
}],
}],
}],
type="VC_TOKEN")
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 {
_, err := fabric.NewServiceToken(ctx, "test", &fabric.ServiceTokenArgs{
Description: pulumi.String("Zside Network Service Token"),
ExpirationDateTime: pulumi.String("2025-01-18T06:43:49.986Z"),
Notifications: fabric.ServiceTokenNotificationArray{
&fabric.ServiceTokenNotificationArgs{
Emails: pulumi.StringArray{
pulumi.String("example@equinix.com"),
},
Type: pulumi.String("ALL"),
},
},
ServiceTokenConnections: fabric.ServiceTokenServiceTokenConnectionArray{
&fabric.ServiceTokenServiceTokenConnectionArgs{
SupportedBandwidths: pulumi.IntArray{
pulumi.Int(50),
pulumi.Int(200),
pulumi.Int(10000),
},
Type: pulumi.String("EVPL_VC"),
ZSides: fabric.ServiceTokenServiceTokenConnectionZSideArray{
&fabric.ServiceTokenServiceTokenConnectionZSideArgs{
AccessPointSelectors: fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorArray{
&fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorArgs{
Network: &fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetworkArgs{
Uuid: pulumi.String("<network_uuid>"),
},
Type: pulumi.String("NETWORK"),
},
},
},
},
},
},
Type: pulumi.String("VC_TOKEN"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Equinix = Pulumi.Equinix;
return await Deployment.RunAsync(() =>
{
var test = new Equinix.Fabric.ServiceToken("test", new()
{
Description = "Zside Network Service Token",
ExpirationDateTime = "2025-01-18T06:43:49.986Z",
Notifications = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenNotificationArgs
{
Emails = new[]
{
"example@equinix.com",
},
Type = "ALL",
},
},
ServiceTokenConnections = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionArgs
{
SupportedBandwidths = new[]
{
50,
200,
10000,
},
Type = "EVPL_VC",
ZSides = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionZSideArgs
{
AccessPointSelectors = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorArgs
{
Network = new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetworkArgs
{
Uuid = "<network_uuid>",
},
Type = "NETWORK",
},
},
},
},
},
},
Type = "VC_TOKEN",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.equinix.fabric.ServiceToken;
import com.pulumi.equinix.fabric.ServiceTokenArgs;
import com.pulumi.equinix.fabric.inputs.ServiceTokenNotificationArgs;
import com.pulumi.equinix.fabric.inputs.ServiceTokenServiceTokenConnectionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var test = new ServiceToken("test", ServiceTokenArgs.builder()
.description("Zside Network Service Token")
.expirationDateTime("2025-01-18T06:43:49.986Z")
.notifications(ServiceTokenNotificationArgs.builder()
.emails("example@equinix.com")
.type("ALL")
.build())
.serviceTokenConnections(ServiceTokenServiceTokenConnectionArgs.builder()
.supportedBandwidths(
50,
200,
10000)
.type("EVPL_VC")
.zSides(ServiceTokenServiceTokenConnectionZSideArgs.builder()
.accessPointSelectors(ServiceTokenServiceTokenConnectionZSideAccessPointSelectorArgs.builder()
.network(ServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetworkArgs.builder()
.uuid("<network_uuid>")
.build())
.type("NETWORK")
.build())
.build())
.build())
.type("VC_TOKEN")
.build());
}
}
resources:
test:
type: equinix:fabric:ServiceToken
properties:
description: Zside Network Service Token
expirationDateTime: 2025-01-18T06:43:49.986Z
notifications:
- emails:
- example@equinix.com
type: ALL
serviceTokenConnections:
- supportedBandwidths:
- 50
- 200
- 10000
type: EVPL_VC
zSides:
- accessPointSelectors:
- network:
uuid: <network_uuid>
type: NETWORK
type: VC_TOKEN
Zside Virtual Device Service Token
import * as pulumi from "@pulumi/pulumi";
import * as equinix from "@equinix-labs/pulumi-equinix";
const test = new equinix.fabric.ServiceToken("test", {
description: "Zside VD Service Token",
expirationDateTime: "2025-01-18T06:43:49.986Z",
notifications: [{
emails: ["example@equinix.com"],
type: "ALL",
}],
serviceTokenConnections: [{
supportedBandwidths: [
50,
200,
10000,
],
type: "EVPL_VC",
zSides: [{
accessPointSelectors: [{
"interface": {
type: "NETWORK",
},
type: "VD",
virtualDevice: {
type: "EDGE",
uuid: "<device_uuid>",
},
}],
}],
}],
type: "VC_TOKEN",
});
import pulumi
import pulumi_equinix as equinix
test = equinix.fabric.ServiceToken("test",
description="Zside VD Service Token",
expiration_date_time="2025-01-18T06:43:49.986Z",
notifications=[{
"emails": ["example@equinix.com"],
"type": "ALL",
}],
service_token_connections=[{
"supported_bandwidths": [
50,
200,
10000,
],
"type": "EVPL_VC",
"z_sides": [{
"access_point_selectors": [{
"interface": {
"type": "NETWORK",
},
"type": "VD",
"virtual_device": {
"type": "EDGE",
"uuid": "<device_uuid>",
},
}],
}],
}],
type="VC_TOKEN")
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 {
_, err := fabric.NewServiceToken(ctx, "test", &fabric.ServiceTokenArgs{
Description: pulumi.String("Zside VD Service Token"),
ExpirationDateTime: pulumi.String("2025-01-18T06:43:49.986Z"),
Notifications: fabric.ServiceTokenNotificationArray{
&fabric.ServiceTokenNotificationArgs{
Emails: pulumi.StringArray{
pulumi.String("example@equinix.com"),
},
Type: pulumi.String("ALL"),
},
},
ServiceTokenConnections: fabric.ServiceTokenServiceTokenConnectionArray{
&fabric.ServiceTokenServiceTokenConnectionArgs{
SupportedBandwidths: pulumi.IntArray{
pulumi.Int(50),
pulumi.Int(200),
pulumi.Int(10000),
},
Type: pulumi.String("EVPL_VC"),
ZSides: fabric.ServiceTokenServiceTokenConnectionZSideArray{
&fabric.ServiceTokenServiceTokenConnectionZSideArgs{
AccessPointSelectors: fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorArray{
&fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorArgs{
Interface: &fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorInterfaceArgs{
Type: pulumi.String("NETWORK"),
},
Type: pulumi.String("VD"),
VirtualDevice: &fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorVirtualDeviceArgs{
Type: pulumi.String("EDGE"),
Uuid: pulumi.String("<device_uuid>"),
},
},
},
},
},
},
},
Type: pulumi.String("VC_TOKEN"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Equinix = Pulumi.Equinix;
return await Deployment.RunAsync(() =>
{
var test = new Equinix.Fabric.ServiceToken("test", new()
{
Description = "Zside VD Service Token",
ExpirationDateTime = "2025-01-18T06:43:49.986Z",
Notifications = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenNotificationArgs
{
Emails = new[]
{
"example@equinix.com",
},
Type = "ALL",
},
},
ServiceTokenConnections = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionArgs
{
SupportedBandwidths = new[]
{
50,
200,
10000,
},
Type = "EVPL_VC",
ZSides = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionZSideArgs
{
AccessPointSelectors = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorArgs
{
Interface = new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorInterfaceArgs
{
Type = "NETWORK",
},
Type = "VD",
VirtualDevice = new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorVirtualDeviceArgs
{
Type = "EDGE",
Uuid = "<device_uuid>",
},
},
},
},
},
},
},
Type = "VC_TOKEN",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.equinix.fabric.ServiceToken;
import com.pulumi.equinix.fabric.ServiceTokenArgs;
import com.pulumi.equinix.fabric.inputs.ServiceTokenNotificationArgs;
import com.pulumi.equinix.fabric.inputs.ServiceTokenServiceTokenConnectionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var test = new ServiceToken("test", ServiceTokenArgs.builder()
.description("Zside VD Service Token")
.expirationDateTime("2025-01-18T06:43:49.986Z")
.notifications(ServiceTokenNotificationArgs.builder()
.emails("example@equinix.com")
.type("ALL")
.build())
.serviceTokenConnections(ServiceTokenServiceTokenConnectionArgs.builder()
.supportedBandwidths(
50,
200,
10000)
.type("EVPL_VC")
.zSides(ServiceTokenServiceTokenConnectionZSideArgs.builder()
.accessPointSelectors(ServiceTokenServiceTokenConnectionZSideAccessPointSelectorArgs.builder()
.interface_(ServiceTokenServiceTokenConnectionZSideAccessPointSelectorInterfaceArgs.builder()
.type("NETWORK")
.build())
.type("VD")
.virtualDevice(ServiceTokenServiceTokenConnectionZSideAccessPointSelectorVirtualDeviceArgs.builder()
.type("EDGE")
.uuid("<device_uuid>")
.build())
.build())
.build())
.build())
.type("VC_TOKEN")
.build());
}
}
resources:
test:
type: equinix:fabric:ServiceToken
properties:
description: Zside VD Service Token
expirationDateTime: 2025-01-18T06:43:49.986Z
notifications:
- emails:
- example@equinix.com
type: ALL
serviceTokenConnections:
- supportedBandwidths:
- 50
- 200
- 10000
type: EVPL_VC
zSides:
- accessPointSelectors:
- interface:
type: NETWORK
type: VD
virtualDevice:
type: EDGE
uuid: <device_uuid>
type: VC_TOKEN
Create ServiceToken Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceToken(name: string, args: ServiceTokenArgs, opts?: CustomResourceOptions);
@overload
def ServiceToken(resource_name: str,
args: ServiceTokenArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServiceToken(resource_name: str,
opts: Optional[ResourceOptions] = None,
expiration_date_time: Optional[str] = None,
notifications: Optional[Sequence[ServiceTokenNotificationArgs]] = None,
service_token_connections: Optional[Sequence[ServiceTokenServiceTokenConnectionArgs]] = None,
type: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
project: Optional[ServiceTokenProjectArgs] = None)
func NewServiceToken(ctx *Context, name string, args ServiceTokenArgs, opts ...ResourceOption) (*ServiceToken, error)
public ServiceToken(string name, ServiceTokenArgs args, CustomResourceOptions? opts = null)
public ServiceToken(String name, ServiceTokenArgs args)
public ServiceToken(String name, ServiceTokenArgs args, CustomResourceOptions options)
type: equinix:fabric:ServiceToken
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ServiceTokenArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ServiceTokenArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ServiceTokenArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceTokenArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceTokenArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var serviceTokenResource = new Equinix.Fabric.ServiceToken("serviceTokenResource", new()
{
ExpirationDateTime = "string",
Notifications = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenNotificationArgs
{
Emails = new[]
{
"string",
},
Type = "string",
SendInterval = "string",
},
},
ServiceTokenConnections = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionArgs
{
ASides = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionASideArgs
{
AccessPointSelectors = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionASideAccessPointSelectorArgs
{
Interface = new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionASideAccessPointSelectorInterfaceArgs
{
Type = "string",
Id = 0,
Uuid = "string",
},
LinkProtocol = new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionASideAccessPointSelectorLinkProtocolArgs
{
Type = "string",
VlanCTag = 0,
VlanSTag = 0,
VlanTag = 0,
},
Network = new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionASideAccessPointSelectorNetworkArgs
{
Uuid = "string",
Href = "string",
Locations = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionASideAccessPointSelectorNetworkLocationArgs
{
Ibx = "string",
MetroCode = "string",
MetroName = "string",
Region = "string",
},
},
Name = "string",
Scope = "string",
Type = "string",
},
Port = new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionASideAccessPointSelectorPortArgs
{
Uuid = "string",
AccountName = "string",
Bandwidth = 0,
CvpId = 0,
EncapsulationProtocolType = "string",
Href = "string",
Locations = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionASideAccessPointSelectorPortLocationArgs
{
Ibx = "string",
MetroCode = "string",
MetroName = "string",
Region = "string",
},
},
PortName = "string",
Priority = "string",
Type = "string",
},
Type = "string",
VirtualDevice = new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionASideAccessPointSelectorVirtualDeviceArgs
{
Uuid = "string",
Cluster = "string",
Href = "string",
Name = "string",
Type = "string",
},
},
},
},
},
AllowCustomBandwidth = false,
AllowRemoteConnection = false,
BandwidthLimit = 0,
SupportedBandwidths = new[]
{
0,
},
Type = "string",
Uuid = "string",
ZSides = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionZSideArgs
{
AccessPointSelectors = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorArgs
{
Interface = new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorInterfaceArgs
{
Type = "string",
Id = 0,
Uuid = "string",
},
LinkProtocol = new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorLinkProtocolArgs
{
Type = "string",
VlanCTag = 0,
VlanSTag = 0,
VlanTag = 0,
},
Network = new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetworkArgs
{
Uuid = "string",
Href = "string",
Locations = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetworkLocationArgs
{
Ibx = "string",
MetroCode = "string",
MetroName = "string",
Region = "string",
},
},
Name = "string",
Scope = "string",
Type = "string",
},
Port = new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorPortArgs
{
Uuid = "string",
AccountName = "string",
Bandwidth = 0,
CvpId = 0,
EncapsulationProtocolType = "string",
Href = "string",
Locations = new[]
{
new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorPortLocationArgs
{
Ibx = "string",
MetroCode = "string",
MetroName = "string",
Region = "string",
},
},
PortName = "string",
Priority = "string",
Type = "string",
},
Type = "string",
VirtualDevice = new Equinix.Fabric.Inputs.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorVirtualDeviceArgs
{
Uuid = "string",
Cluster = "string",
Href = "string",
Name = "string",
Type = "string",
},
},
},
},
},
},
},
Type = "string",
Description = "string",
Name = "string",
Project = new Equinix.Fabric.Inputs.ServiceTokenProjectArgs
{
Href = "string",
ProjectId = "string",
},
});
example, err := fabric.NewServiceToken(ctx, "serviceTokenResource", &fabric.ServiceTokenArgs{
ExpirationDateTime: pulumi.String("string"),
Notifications: fabric.ServiceTokenNotificationArray{
&fabric.ServiceTokenNotificationArgs{
Emails: pulumi.StringArray{
pulumi.String("string"),
},
Type: pulumi.String("string"),
SendInterval: pulumi.String("string"),
},
},
ServiceTokenConnections: fabric.ServiceTokenServiceTokenConnectionArray{
&fabric.ServiceTokenServiceTokenConnectionArgs{
ASides: fabric.ServiceTokenServiceTokenConnectionASideArray{
&fabric.ServiceTokenServiceTokenConnectionASideArgs{
AccessPointSelectors: fabric.ServiceTokenServiceTokenConnectionASideAccessPointSelectorArray{
&fabric.ServiceTokenServiceTokenConnectionASideAccessPointSelectorArgs{
Interface: &fabric.ServiceTokenServiceTokenConnectionASideAccessPointSelectorInterfaceArgs{
Type: pulumi.String("string"),
Id: pulumi.Int(0),
Uuid: pulumi.String("string"),
},
LinkProtocol: &fabric.ServiceTokenServiceTokenConnectionASideAccessPointSelectorLinkProtocolArgs{
Type: pulumi.String("string"),
VlanCTag: pulumi.Int(0),
VlanSTag: pulumi.Int(0),
VlanTag: pulumi.Int(0),
},
Network: &fabric.ServiceTokenServiceTokenConnectionASideAccessPointSelectorNetworkArgs{
Uuid: pulumi.String("string"),
Href: pulumi.String("string"),
Locations: fabric.ServiceTokenServiceTokenConnectionASideAccessPointSelectorNetworkLocationArray{
&fabric.ServiceTokenServiceTokenConnectionASideAccessPointSelectorNetworkLocationArgs{
Ibx: pulumi.String("string"),
MetroCode: pulumi.String("string"),
MetroName: pulumi.String("string"),
Region: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
Scope: pulumi.String("string"),
Type: pulumi.String("string"),
},
Port: &fabric.ServiceTokenServiceTokenConnectionASideAccessPointSelectorPortArgs{
Uuid: pulumi.String("string"),
AccountName: pulumi.String("string"),
Bandwidth: pulumi.Int(0),
CvpId: pulumi.Int(0),
EncapsulationProtocolType: pulumi.String("string"),
Href: pulumi.String("string"),
Locations: fabric.ServiceTokenServiceTokenConnectionASideAccessPointSelectorPortLocationArray{
&fabric.ServiceTokenServiceTokenConnectionASideAccessPointSelectorPortLocationArgs{
Ibx: pulumi.String("string"),
MetroCode: pulumi.String("string"),
MetroName: pulumi.String("string"),
Region: pulumi.String("string"),
},
},
PortName: pulumi.String("string"),
Priority: pulumi.String("string"),
Type: pulumi.String("string"),
},
Type: pulumi.String("string"),
VirtualDevice: &fabric.ServiceTokenServiceTokenConnectionASideAccessPointSelectorVirtualDeviceArgs{
Uuid: pulumi.String("string"),
Cluster: pulumi.String("string"),
Href: pulumi.String("string"),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
},
},
},
AllowCustomBandwidth: pulumi.Bool(false),
AllowRemoteConnection: pulumi.Bool(false),
BandwidthLimit: pulumi.Int(0),
SupportedBandwidths: pulumi.IntArray{
pulumi.Int(0),
},
Type: pulumi.String("string"),
Uuid: pulumi.String("string"),
ZSides: fabric.ServiceTokenServiceTokenConnectionZSideArray{
&fabric.ServiceTokenServiceTokenConnectionZSideArgs{
AccessPointSelectors: fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorArray{
&fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorArgs{
Interface: &fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorInterfaceArgs{
Type: pulumi.String("string"),
Id: pulumi.Int(0),
Uuid: pulumi.String("string"),
},
LinkProtocol: &fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorLinkProtocolArgs{
Type: pulumi.String("string"),
VlanCTag: pulumi.Int(0),
VlanSTag: pulumi.Int(0),
VlanTag: pulumi.Int(0),
},
Network: &fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetworkArgs{
Uuid: pulumi.String("string"),
Href: pulumi.String("string"),
Locations: fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetworkLocationArray{
&fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetworkLocationArgs{
Ibx: pulumi.String("string"),
MetroCode: pulumi.String("string"),
MetroName: pulumi.String("string"),
Region: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
Scope: pulumi.String("string"),
Type: pulumi.String("string"),
},
Port: &fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorPortArgs{
Uuid: pulumi.String("string"),
AccountName: pulumi.String("string"),
Bandwidth: pulumi.Int(0),
CvpId: pulumi.Int(0),
EncapsulationProtocolType: pulumi.String("string"),
Href: pulumi.String("string"),
Locations: fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorPortLocationArray{
&fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorPortLocationArgs{
Ibx: pulumi.String("string"),
MetroCode: pulumi.String("string"),
MetroName: pulumi.String("string"),
Region: pulumi.String("string"),
},
},
PortName: pulumi.String("string"),
Priority: pulumi.String("string"),
Type: pulumi.String("string"),
},
Type: pulumi.String("string"),
VirtualDevice: &fabric.ServiceTokenServiceTokenConnectionZSideAccessPointSelectorVirtualDeviceArgs{
Uuid: pulumi.String("string"),
Cluster: pulumi.String("string"),
Href: pulumi.String("string"),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
},
},
},
},
},
Type: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Project: &fabric.ServiceTokenProjectArgs{
Href: pulumi.String("string"),
ProjectId: pulumi.String("string"),
},
})
var serviceTokenResource = new ServiceToken("serviceTokenResource", ServiceTokenArgs.builder()
.expirationDateTime("string")
.notifications(ServiceTokenNotificationArgs.builder()
.emails("string")
.type("string")
.sendInterval("string")
.build())
.serviceTokenConnections(ServiceTokenServiceTokenConnectionArgs.builder()
.aSides(ServiceTokenServiceTokenConnectionASideArgs.builder()
.accessPointSelectors(ServiceTokenServiceTokenConnectionASideAccessPointSelectorArgs.builder()
.interface_(ServiceTokenServiceTokenConnectionASideAccessPointSelectorInterfaceArgs.builder()
.type("string")
.id(0)
.uuid("string")
.build())
.linkProtocol(ServiceTokenServiceTokenConnectionASideAccessPointSelectorLinkProtocolArgs.builder()
.type("string")
.vlanCTag(0)
.vlanSTag(0)
.vlanTag(0)
.build())
.network(ServiceTokenServiceTokenConnectionASideAccessPointSelectorNetworkArgs.builder()
.uuid("string")
.href("string")
.locations(ServiceTokenServiceTokenConnectionASideAccessPointSelectorNetworkLocationArgs.builder()
.ibx("string")
.metroCode("string")
.metroName("string")
.region("string")
.build())
.name("string")
.scope("string")
.type("string")
.build())
.port(ServiceTokenServiceTokenConnectionASideAccessPointSelectorPortArgs.builder()
.uuid("string")
.accountName("string")
.bandwidth(0)
.cvpId(0)
.encapsulationProtocolType("string")
.href("string")
.locations(ServiceTokenServiceTokenConnectionASideAccessPointSelectorPortLocationArgs.builder()
.ibx("string")
.metroCode("string")
.metroName("string")
.region("string")
.build())
.portName("string")
.priority("string")
.type("string")
.build())
.type("string")
.virtualDevice(ServiceTokenServiceTokenConnectionASideAccessPointSelectorVirtualDeviceArgs.builder()
.uuid("string")
.cluster("string")
.href("string")
.name("string")
.type("string")
.build())
.build())
.build())
.allowCustomBandwidth(false)
.allowRemoteConnection(false)
.bandwidthLimit(0)
.supportedBandwidths(0)
.type("string")
.uuid("string")
.zSides(ServiceTokenServiceTokenConnectionZSideArgs.builder()
.accessPointSelectors(ServiceTokenServiceTokenConnectionZSideAccessPointSelectorArgs.builder()
.interface_(ServiceTokenServiceTokenConnectionZSideAccessPointSelectorInterfaceArgs.builder()
.type("string")
.id(0)
.uuid("string")
.build())
.linkProtocol(ServiceTokenServiceTokenConnectionZSideAccessPointSelectorLinkProtocolArgs.builder()
.type("string")
.vlanCTag(0)
.vlanSTag(0)
.vlanTag(0)
.build())
.network(ServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetworkArgs.builder()
.uuid("string")
.href("string")
.locations(ServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetworkLocationArgs.builder()
.ibx("string")
.metroCode("string")
.metroName("string")
.region("string")
.build())
.name("string")
.scope("string")
.type("string")
.build())
.port(ServiceTokenServiceTokenConnectionZSideAccessPointSelectorPortArgs.builder()
.uuid("string")
.accountName("string")
.bandwidth(0)
.cvpId(0)
.encapsulationProtocolType("string")
.href("string")
.locations(ServiceTokenServiceTokenConnectionZSideAccessPointSelectorPortLocationArgs.builder()
.ibx("string")
.metroCode("string")
.metroName("string")
.region("string")
.build())
.portName("string")
.priority("string")
.type("string")
.build())
.type("string")
.virtualDevice(ServiceTokenServiceTokenConnectionZSideAccessPointSelectorVirtualDeviceArgs.builder()
.uuid("string")
.cluster("string")
.href("string")
.name("string")
.type("string")
.build())
.build())
.build())
.build())
.type("string")
.description("string")
.name("string")
.project(ServiceTokenProjectArgs.builder()
.href("string")
.projectId("string")
.build())
.build());
service_token_resource = equinix.fabric.ServiceToken("serviceTokenResource",
expiration_date_time="string",
notifications=[{
"emails": ["string"],
"type": "string",
"send_interval": "string",
}],
service_token_connections=[{
"a_sides": [{
"access_point_selectors": [{
"interface": {
"type": "string",
"id": 0,
"uuid": "string",
},
"link_protocol": {
"type": "string",
"vlan_c_tag": 0,
"vlan_s_tag": 0,
"vlan_tag": 0,
},
"network": {
"uuid": "string",
"href": "string",
"locations": [{
"ibx": "string",
"metro_code": "string",
"metro_name": "string",
"region": "string",
}],
"name": "string",
"scope": "string",
"type": "string",
},
"port": {
"uuid": "string",
"account_name": "string",
"bandwidth": 0,
"cvp_id": 0,
"encapsulation_protocol_type": "string",
"href": "string",
"locations": [{
"ibx": "string",
"metro_code": "string",
"metro_name": "string",
"region": "string",
}],
"port_name": "string",
"priority": "string",
"type": "string",
},
"type": "string",
"virtual_device": {
"uuid": "string",
"cluster": "string",
"href": "string",
"name": "string",
"type": "string",
},
}],
}],
"allow_custom_bandwidth": False,
"allow_remote_connection": False,
"bandwidth_limit": 0,
"supported_bandwidths": [0],
"type": "string",
"uuid": "string",
"z_sides": [{
"access_point_selectors": [{
"interface": {
"type": "string",
"id": 0,
"uuid": "string",
},
"link_protocol": {
"type": "string",
"vlan_c_tag": 0,
"vlan_s_tag": 0,
"vlan_tag": 0,
},
"network": {
"uuid": "string",
"href": "string",
"locations": [{
"ibx": "string",
"metro_code": "string",
"metro_name": "string",
"region": "string",
}],
"name": "string",
"scope": "string",
"type": "string",
},
"port": {
"uuid": "string",
"account_name": "string",
"bandwidth": 0,
"cvp_id": 0,
"encapsulation_protocol_type": "string",
"href": "string",
"locations": [{
"ibx": "string",
"metro_code": "string",
"metro_name": "string",
"region": "string",
}],
"port_name": "string",
"priority": "string",
"type": "string",
},
"type": "string",
"virtual_device": {
"uuid": "string",
"cluster": "string",
"href": "string",
"name": "string",
"type": "string",
},
}],
}],
}],
type="string",
description="string",
name="string",
project={
"href": "string",
"project_id": "string",
})
const serviceTokenResource = new equinix.fabric.ServiceToken("serviceTokenResource", {
expirationDateTime: "string",
notifications: [{
emails: ["string"],
type: "string",
sendInterval: "string",
}],
serviceTokenConnections: [{
aSides: [{
accessPointSelectors: [{
"interface": {
type: "string",
id: 0,
uuid: "string",
},
linkProtocol: {
type: "string",
vlanCTag: 0,
vlanSTag: 0,
vlanTag: 0,
},
network: {
uuid: "string",
href: "string",
locations: [{
ibx: "string",
metroCode: "string",
metroName: "string",
region: "string",
}],
name: "string",
scope: "string",
type: "string",
},
port: {
uuid: "string",
accountName: "string",
bandwidth: 0,
cvpId: 0,
encapsulationProtocolType: "string",
href: "string",
locations: [{
ibx: "string",
metroCode: "string",
metroName: "string",
region: "string",
}],
portName: "string",
priority: "string",
type: "string",
},
type: "string",
virtualDevice: {
uuid: "string",
cluster: "string",
href: "string",
name: "string",
type: "string",
},
}],
}],
allowCustomBandwidth: false,
allowRemoteConnection: false,
bandwidthLimit: 0,
supportedBandwidths: [0],
type: "string",
uuid: "string",
zSides: [{
accessPointSelectors: [{
"interface": {
type: "string",
id: 0,
uuid: "string",
},
linkProtocol: {
type: "string",
vlanCTag: 0,
vlanSTag: 0,
vlanTag: 0,
},
network: {
uuid: "string",
href: "string",
locations: [{
ibx: "string",
metroCode: "string",
metroName: "string",
region: "string",
}],
name: "string",
scope: "string",
type: "string",
},
port: {
uuid: "string",
accountName: "string",
bandwidth: 0,
cvpId: 0,
encapsulationProtocolType: "string",
href: "string",
locations: [{
ibx: "string",
metroCode: "string",
metroName: "string",
region: "string",
}],
portName: "string",
priority: "string",
type: "string",
},
type: "string",
virtualDevice: {
uuid: "string",
cluster: "string",
href: "string",
name: "string",
type: "string",
},
}],
}],
}],
type: "string",
description: "string",
name: "string",
project: {
href: "string",
projectId: "string",
},
});
type: equinix:fabric:ServiceToken
properties:
description: string
expirationDateTime: string
name: string
notifications:
- emails:
- string
sendInterval: string
type: string
project:
href: string
projectId: string
serviceTokenConnections:
- aSides:
- accessPointSelectors:
- interface:
id: 0
type: string
uuid: string
linkProtocol:
type: string
vlanCTag: 0
vlanSTag: 0
vlanTag: 0
network:
href: string
locations:
- ibx: string
metroCode: string
metroName: string
region: string
name: string
scope: string
type: string
uuid: string
port:
accountName: string
bandwidth: 0
cvpId: 0
encapsulationProtocolType: string
href: string
locations:
- ibx: string
metroCode: string
metroName: string
region: string
portName: string
priority: string
type: string
uuid: string
type: string
virtualDevice:
cluster: string
href: string
name: string
type: string
uuid: string
allowCustomBandwidth: false
allowRemoteConnection: false
bandwidthLimit: 0
supportedBandwidths:
- 0
type: string
uuid: string
zSides:
- accessPointSelectors:
- interface:
id: 0
type: string
uuid: string
linkProtocol:
type: string
vlanCTag: 0
vlanSTag: 0
vlanTag: 0
network:
href: string
locations:
- ibx: string
metroCode: string
metroName: string
region: string
name: string
scope: string
type: string
uuid: string
port:
accountName: string
bandwidth: 0
cvpId: 0
encapsulationProtocolType: string
href: string
locations:
- ibx: string
metroCode: string
metroName: string
region: string
portName: string
priority: string
type: string
uuid: string
type: string
virtualDevice:
cluster: string
href: string
name: string
type: string
uuid: string
type: string
ServiceToken Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ServiceToken resource accepts the following input properties:
- Expiration
Date stringTime - Expiration date and time of the service token; 2020-11-06T07:00:00Z
- Notifications
List<Service
Token Notification> - Preferences for notifications on Service Token configuration or status changes
- Service
Token List<ServiceConnections Token Service Token Connection> - Service Token Connection Type Information
- Type string
- Service Token Type; VCTOKEN,EPLTOKEN
- Description string
- Optional Description to the Service Token you will be creating
- Name string
- Name of the Service Token
- Project
Service
Token Project - Project information
- Expiration
Date stringTime - Expiration date and time of the service token; 2020-11-06T07:00:00Z
- Notifications
[]Service
Token Notification Args - Preferences for notifications on Service Token configuration or status changes
- Service
Token []ServiceConnections Token Service Token Connection Args - Service Token Connection Type Information
- Type string
- Service Token Type; VCTOKEN,EPLTOKEN
- Description string
- Optional Description to the Service Token you will be creating
- Name string
- Name of the Service Token
- Project
Service
Token Project Args - Project information
- expiration
Date StringTime - Expiration date and time of the service token; 2020-11-06T07:00:00Z
- notifications
List<Service
Token Notification> - Preferences for notifications on Service Token configuration or status changes
- service
Token List<ServiceConnections Token Service Token Connection> - Service Token Connection Type Information
- type String
- Service Token Type; VCTOKEN,EPLTOKEN
- description String
- Optional Description to the Service Token you will be creating
- name String
- Name of the Service Token
- project
Service
Token Project - Project information
- expiration
Date stringTime - Expiration date and time of the service token; 2020-11-06T07:00:00Z
- notifications
Service
Token Notification[] - Preferences for notifications on Service Token configuration or status changes
- service
Token ServiceConnections Token Service Token Connection[] - Service Token Connection Type Information
- type string
- Service Token Type; VCTOKEN,EPLTOKEN
- description string
- Optional Description to the Service Token you will be creating
- name string
- Name of the Service Token
- project
Service
Token Project - Project information
- expiration_
date_ strtime - Expiration date and time of the service token; 2020-11-06T07:00:00Z
- notifications
Sequence[Service
Token Notification Args] - Preferences for notifications on Service Token configuration or status changes
- service_
token_ Sequence[Serviceconnections Token Service Token Connection Args] - Service Token Connection Type Information
- type str
- Service Token Type; VCTOKEN,EPLTOKEN
- description str
- Optional Description to the Service Token you will be creating
- name str
- Name of the Service Token
- project
Service
Token Project Args - Project information
- expiration
Date StringTime - Expiration date and time of the service token; 2020-11-06T07:00:00Z
- notifications List<Property Map>
- Preferences for notifications on Service Token configuration or status changes
- service
Token List<Property Map>Connections - Service Token Connection Type Information
- type String
- Service Token Type; VCTOKEN,EPLTOKEN
- description String
- Optional Description to the Service Token you will be creating
- name String
- Name of the Service Token
- project Property Map
- Project information
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceToken resource produces the following output properties:
- Accounts
List<Service
Token Account> - Customer account information that is associated with this service token
- Change
Logs List<ServiceToken Change Log> - Captures connection lifecycle change information
- Href string
- An absolute URL that is the subject of the link's context.
- Id string
- The provider-assigned unique ID for this managed resource.
- Issuer
Side string - Information about token side; ASIDE, ZSIDE
- State string
- Service token state; ACTIVE, INACTIVE, EXPIRED, DELETED
- Uuid string
- Equinix-assigned service token identifier
- Accounts
[]Service
Token Account - Customer account information that is associated with this service token
- Change
Logs []ServiceToken Change Log - Captures connection lifecycle change information
- Href string
- An absolute URL that is the subject of the link's context.
- Id string
- The provider-assigned unique ID for this managed resource.
- Issuer
Side string - Information about token side; ASIDE, ZSIDE
- State string
- Service token state; ACTIVE, INACTIVE, EXPIRED, DELETED
- Uuid string
- Equinix-assigned service token identifier
- accounts
List<Service
Token Account> - Customer account information that is associated with this service token
- change
Logs List<ServiceToken Change Log> - Captures connection lifecycle change information
- href String
- An absolute URL that is the subject of the link's context.
- id String
- The provider-assigned unique ID for this managed resource.
- issuer
Side String - Information about token side; ASIDE, ZSIDE
- state String
- Service token state; ACTIVE, INACTIVE, EXPIRED, DELETED
- uuid String
- Equinix-assigned service token identifier
- accounts
Service
Token Account[] - Customer account information that is associated with this service token
- change
Logs ServiceToken Change Log[] - Captures connection lifecycle change information
- href string
- An absolute URL that is the subject of the link's context.
- id string
- The provider-assigned unique ID for this managed resource.
- issuer
Side string - Information about token side; ASIDE, ZSIDE
- state string
- Service token state; ACTIVE, INACTIVE, EXPIRED, DELETED
- uuid string
- Equinix-assigned service token identifier
- accounts
Sequence[Service
Token Account] - Customer account information that is associated with this service token
- change_
logs Sequence[ServiceToken Change Log] - Captures connection lifecycle change information
- 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
- state str
- Service token state; ACTIVE, INACTIVE, EXPIRED, DELETED
- uuid str
- Equinix-assigned service token identifier
- accounts List<Property Map>
- Customer account information that is associated with this service token
- change
Logs List<Property Map> - Captures connection lifecycle change information
- href String
- An absolute URL that is the subject of the link's context.
- id String
- The provider-assigned unique ID for this managed resource.
- issuer
Side String - Information about token side; ASIDE, ZSIDE
- state String
- Service token state; ACTIVE, INACTIVE, EXPIRED, DELETED
- uuid String
- Equinix-assigned service token identifier
Look up Existing ServiceToken Resource
Get an existing ServiceToken resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ServiceTokenState, opts?: CustomResourceOptions): ServiceToken
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
accounts: Optional[Sequence[ServiceTokenAccountArgs]] = None,
change_logs: Optional[Sequence[ServiceTokenChangeLogArgs]] = None,
description: Optional[str] = None,
expiration_date_time: Optional[str] = None,
href: Optional[str] = None,
issuer_side: Optional[str] = None,
name: Optional[str] = None,
notifications: Optional[Sequence[ServiceTokenNotificationArgs]] = None,
project: Optional[ServiceTokenProjectArgs] = None,
service_token_connections: Optional[Sequence[ServiceTokenServiceTokenConnectionArgs]] = None,
state: Optional[str] = None,
type: Optional[str] = None,
uuid: Optional[str] = None) -> ServiceToken
func GetServiceToken(ctx *Context, name string, id IDInput, state *ServiceTokenState, opts ...ResourceOption) (*ServiceToken, error)
public static ServiceToken Get(string name, Input<string> id, ServiceTokenState? state, CustomResourceOptions? opts = null)
public static ServiceToken get(String name, Output<String> id, ServiceTokenState state, CustomResourceOptions options)
resources: _: type: equinix:fabric:ServiceToken get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Accounts
List<Service
Token Account> - Customer account information that is associated with this service token
- Change
Logs List<ServiceToken Change Log> - Captures connection lifecycle change information
- Description string
- Optional Description to the Service Token you will be creating
- Expiration
Date stringTime - Expiration date and time of the service token; 2020-11-06T07:00:00Z
- Href string
- An absolute URL that is the subject of the link's context.
- Issuer
Side string - Information about token side; ASIDE, ZSIDE
- Name string
- Name of the Service Token
- Notifications
List<Service
Token Notification> - Preferences for notifications on Service Token configuration or status changes
- Project
Service
Token Project - Project information
- Service
Token List<ServiceConnections 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
[]Service
Token Account Args - Customer account information that is associated with this service token
- Change
Logs []ServiceToken Change Log Args - Captures connection lifecycle change information
- Description string
- Optional Description to the Service Token you will be creating
- Expiration
Date stringTime - Expiration date and time of the service token; 2020-11-06T07:00:00Z
- Href string
- An absolute URL that is the subject of the link's context.
- Issuer
Side string - Information about token side; ASIDE, ZSIDE
- Name string
- Name of the Service Token
- Notifications
[]Service
Token Notification Args - Preferences for notifications on Service Token configuration or status changes
- Project
Service
Token Project Args - Project information
- Service
Token []ServiceConnections Token Service Token Connection Args - 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<Service
Token Account> - Customer account information that is associated with this service token
- change
Logs List<ServiceToken Change Log> - Captures connection lifecycle change information
- description String
- Optional Description to the Service Token you will be creating
- expiration
Date StringTime - Expiration date and time of the service token; 2020-11-06T07:00:00Z
- href String
- An absolute URL that is the subject of the link's context.
- issuer
Side String - Information about token side; ASIDE, ZSIDE
- name String
- Name of the Service Token
- notifications
List<Service
Token Notification> - Preferences for notifications on Service Token configuration or status changes
- project
Service
Token Project - Project information
- service
Token List<ServiceConnections 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
Service
Token Account[] - Customer account information that is associated with this service token
- change
Logs ServiceToken Change Log[] - Captures connection lifecycle change information
- description string
- Optional Description to the Service Token you will be creating
- expiration
Date stringTime - Expiration date and time of the service token; 2020-11-06T07:00:00Z
- href string
- An absolute URL that is the subject of the link's context.
- issuer
Side string - Information about token side; ASIDE, ZSIDE
- name string
- Name of the Service Token
- notifications
Service
Token Notification[] - Preferences for notifications on Service Token configuration or status changes
- project
Service
Token Project - Project information
- service
Token ServiceConnections 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[Service
Token Account Args] - Customer account information that is associated with this service token
- change_
logs Sequence[ServiceToken Change Log Args] - 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.
- issuer_
side str - Information about token side; ASIDE, ZSIDE
- name str
- Name of the Service Token
- notifications
Sequence[Service
Token Notification Args] - Preferences for notifications on Service Token configuration or status changes
- project
Service
Token Project Args - Project information
- service_
token_ Sequence[Serviceconnections Token Service Token Connection Args] - Service Token Connection Type Information
- state str
- Service token state; ACTIVE, INACTIVE, EXPIRED, DELETED
- type str
- Service Token Type; VCTOKEN,EPLTOKEN
- uuid str
- Equinix-assigned service token identifier
- accounts List<Property Map>
- Customer account information that is associated with this service token
- change
Logs List<Property Map> - Captures connection lifecycle change information
- description String
- Optional Description to the Service Token you will be creating
- expiration
Date StringTime - Expiration date and time of the service token; 2020-11-06T07:00:00Z
- href String
- An absolute URL that is the subject of the link's context.
- issuer
Side String - Information about token side; ASIDE, ZSIDE
- name String
- Name of the Service Token
- notifications List<Property Map>
- Preferences for notifications on Service Token configuration or status changes
- project Property Map
- Project information
- service
Token List<Property Map>Connections - Service Token Connection Type Information
- state String
- Service token state; ACTIVE, INACTIVE, EXPIRED, DELETED
- type String
- Service Token Type; VCTOKEN,EPLTOKEN
- uuid String
- Equinix-assigned service token identifier
Supporting Types
ServiceTokenAccount, ServiceTokenAccountArgs
- Account
Name string - Legal name of the accountholder.
- Account
Number int - Equinix-assigned account number.
- Global
Cust stringId - Equinix-assigned ID of the subscriber's parent organization.
- Global
Org stringId - Equinix-assigned ID of the subscriber's parent organization.
- Global
Organization stringName - Equinix-assigned name of the subscriber's parent organization.
- Org
Id int - Equinix-assigned ID of the subscriber's organization.
- Organization
Name string - Equinix-assigned name of the subscriber's organization.
- Ucm
Id string - Enterprise datastore id
- Account
Name string - Legal name of the accountholder.
- Account
Number int - Equinix-assigned account number.
- Global
Cust stringId - Equinix-assigned ID of the subscriber's parent organization.
- Global
Org stringId - Equinix-assigned ID of the subscriber's parent organization.
- Global
Organization stringName - Equinix-assigned name of the subscriber's parent organization.
- Org
Id int - Equinix-assigned ID of the subscriber's organization.
- Organization
Name string - Equinix-assigned name of the subscriber's organization.
- Ucm
Id string - Enterprise datastore id
- account
Name String - Legal name of the accountholder.
- account
Number Integer - Equinix-assigned account number.
- global
Cust StringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Org StringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Organization StringName - Equinix-assigned name of the subscriber's parent organization.
- org
Id Integer - Equinix-assigned ID of the subscriber's organization.
- organization
Name String - Equinix-assigned name of the subscriber's organization.
- ucm
Id String - Enterprise datastore id
- account
Name string - Legal name of the accountholder.
- account
Number number - Equinix-assigned account number.
- global
Cust stringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Org stringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Organization stringName - Equinix-assigned name of the subscriber's parent organization.
- org
Id number - Equinix-assigned ID of the subscriber's organization.
- organization
Name string - Equinix-assigned name of the subscriber's organization.
- ucm
Id string - Enterprise datastore id
- account_
name str - Legal name of the accountholder.
- account_
number int - Equinix-assigned account number.
- global_
cust_ strid - Equinix-assigned ID of the subscriber's parent organization.
- global_
org_ strid - Equinix-assigned ID of the subscriber's parent organization.
- global_
organization_ strname - Equinix-assigned name of the subscriber's parent organization.
- org_
id int - Equinix-assigned ID of the subscriber's organization.
- organization_
name str - Equinix-assigned name of the subscriber's organization.
- ucm_
id str - Enterprise datastore id
- account
Name String - Legal name of the accountholder.
- account
Number Number - Equinix-assigned account number.
- global
Cust StringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Org StringId - Equinix-assigned ID of the subscriber's parent organization.
- global
Organization StringName - Equinix-assigned name of the subscriber's parent organization.
- org
Id Number - Equinix-assigned ID of the subscriber's organization.
- organization
Name String - Equinix-assigned name of the subscriber's organization.
- ucm
Id String - Enterprise datastore id
ServiceTokenChangeLog, ServiceTokenChangeLogArgs
- Created
By string - Created by User Key
- Created
By stringEmail - Created by User Email Address
- Created
By stringFull Name - Created by User Full Name
- Created
Date stringTime - Created by Date and Time
- Deleted
By string - Deleted by User Key
- Deleted
By stringEmail - Deleted by User Email Address
- Deleted
By stringFull Name - Deleted by User Full Name
- Deleted
Date stringTime - Deleted by Date and Time
- Updated
By string - Updated by User Key
- Updated
By stringEmail - Updated by User Email Address
- Updated
By stringFull Name - Updated by User Full Name
- Updated
Date stringTime - Updated by Date and Time
- Created
By string - Created by User Key
- Created
By stringEmail - Created by User Email Address
- Created
By stringFull Name - Created by User Full Name
- Created
Date stringTime - Created by Date and Time
- Deleted
By string - Deleted by User Key
- Deleted
By stringEmail - Deleted by User Email Address
- Deleted
By stringFull Name - Deleted by User Full Name
- Deleted
Date stringTime - Deleted by Date and Time
- Updated
By string - Updated by User Key
- Updated
By stringEmail - Updated by User Email Address
- Updated
By stringFull Name - Updated by User Full Name
- Updated
Date stringTime - Updated by Date and Time
- created
By String - Created by User Key
- created
By StringEmail - Created by User Email Address
- created
By StringFull Name - Created by User Full Name
- created
Date StringTime - Created by Date and Time
- deleted
By String - Deleted by User Key
- deleted
By StringEmail - Deleted by User Email Address
- deleted
By StringFull Name - Deleted by User Full Name
- deleted
Date StringTime - Deleted by Date and Time
- updated
By String - Updated by User Key
- updated
By StringEmail - Updated by User Email Address
- updated
By StringFull Name - Updated by User Full Name
- updated
Date StringTime - Updated by Date and Time
- created
By string - Created by User Key
- created
By stringEmail - Created by User Email Address
- created
By stringFull Name - Created by User Full Name
- created
Date stringTime - Created by Date and Time
- deleted
By string - Deleted by User Key
- deleted
By stringEmail - Deleted by User Email Address
- deleted
By stringFull Name - Deleted by User Full Name
- deleted
Date stringTime - Deleted by Date and Time
- updated
By string - Updated by User Key
- updated
By stringEmail - Updated by User Email Address
- updated
By stringFull Name - Updated by User Full Name
- updated
Date stringTime - Updated by Date and Time
- created_
by str - Created by User Key
- created_
by_ stremail - Created by User Email Address
- created_
by_ strfull_ name - Created by User Full Name
- created_
date_ strtime - Created by Date and Time
- deleted_
by str - Deleted by User Key
- deleted_
by_ stremail - Deleted by User Email Address
- deleted_
by_ strfull_ name - Deleted by User Full Name
- deleted_
date_ strtime - Deleted by Date and Time
- updated_
by str - Updated by User Key
- updated_
by_ stremail - Updated by User Email Address
- updated_
by_ strfull_ name - Updated by User Full Name
- updated_
date_ strtime - Updated by Date and Time
- created
By String - Created by User Key
- created
By StringEmail - Created by User Email Address
- created
By StringFull Name - Created by User Full Name
- created
Date StringTime - Created by Date and Time
- deleted
By String - Deleted by User Key
- deleted
By StringEmail - Deleted by User Email Address
- deleted
By StringFull Name - Deleted by User Full Name
- deleted
Date StringTime - Deleted by Date and Time
- updated
By String - Updated by User Key
- updated
By StringEmail - Updated by User Email Address
- updated
By StringFull Name - Updated by User Full Name
- updated
Date StringTime - Updated by Date and Time
ServiceTokenNotification, ServiceTokenNotificationArgs
- Emails List<string>
- Array of contact emails
- Type string
- Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
- Send
Interval string - Send interval
- Emails []string
- Array of contact emails
- Type string
- Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
- Send
Interval string - Send interval
- emails List<String>
- Array of contact emails
- type String
- Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
- send
Interval String - Send interval
- emails string[]
- Array of contact emails
- type string
- Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
- send
Interval string - Send interval
- emails Sequence[str]
- Array of contact emails
- type str
- Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
- send_
interval str - Send interval
- emails List<String>
- Array of contact emails
- type String
- Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
- send
Interval String - Send interval
ServiceTokenProject, ServiceTokenProjectArgs
- href str
- Unique Resource URL
- project_
id str - Project Id
ServiceTokenServiceTokenConnection, ServiceTokenServiceTokenConnectionArgs
- ASides
List<Service
Token Service Token Connection ASide> - A-Side Connection link protocol,virtual device or network configuration
- Allow
Custom boolBandwidth - Allow custom bandwidth value
- Allow
Remote boolConnection - Authorization to connect remotely
- Bandwidth
Limit int - Connection bandwidth limit in Mbps
- Supported
Bandwidths List<int> - List of permitted bandwidths'; For Port-based Service Tokens, the maximum allowable bandwidth is 50 Gbps, while for Virtual Device-based Service Tokens, it is limited to 10 Gbps
- Type string
- Type of Connection supported by Service Token you will create; EVPLVC, EVPLANVC, EPLANVC, IPWANVC
- Uuid string
- Equinix-assigned connection identifier
- ZSides
List<Service
Token Service Token Connection ZSide> - Z-Side Connection link protocol,virtual device or network configuration
- ASides
[]Service
Token Service Token Connection ASide - A-Side Connection link protocol,virtual device or network configuration
- Allow
Custom boolBandwidth - Allow custom bandwidth value
- Allow
Remote boolConnection - Authorization to connect remotely
- Bandwidth
Limit int - Connection bandwidth limit in Mbps
- Supported
Bandwidths []int - List of permitted bandwidths'; For Port-based Service Tokens, the maximum allowable bandwidth is 50 Gbps, while for Virtual Device-based Service Tokens, it is limited to 10 Gbps
- Type string
- Type of Connection supported by Service Token you will create; EVPLVC, EVPLANVC, EPLANVC, IPWANVC
- Uuid string
- Equinix-assigned connection identifier
- ZSides
[]Service
Token Service Token Connection ZSide - Z-Side Connection link protocol,virtual device or network configuration
- a
Sides List<ServiceToken Service Token Connection ASide> - A-Side Connection link protocol,virtual device or network configuration
- allow
Custom BooleanBandwidth - Allow custom bandwidth value
- allow
Remote BooleanConnection - Authorization to connect remotely
- bandwidth
Limit Integer - Connection bandwidth limit in Mbps
- supported
Bandwidths List<Integer> - List of permitted bandwidths'; For Port-based Service Tokens, the maximum allowable bandwidth is 50 Gbps, while for Virtual Device-based Service Tokens, it is limited to 10 Gbps
- type String
- Type of Connection supported by Service Token you will create; EVPLVC, EVPLANVC, EPLANVC, IPWANVC
- uuid String
- Equinix-assigned connection identifier
- z
Sides List<ServiceToken Service Token Connection ZSide> - Z-Side Connection link protocol,virtual device or network configuration
- a
Sides ServiceToken Service Token Connection ASide[] - A-Side Connection link protocol,virtual device or network configuration
- allow
Custom booleanBandwidth - Allow custom bandwidth value
- allow
Remote booleanConnection - Authorization to connect remotely
- bandwidth
Limit number - Connection bandwidth limit in Mbps
- supported
Bandwidths number[] - List of permitted bandwidths'; For Port-based Service Tokens, the maximum allowable bandwidth is 50 Gbps, while for Virtual Device-based Service Tokens, it is limited to 10 Gbps
- type string
- Type of Connection supported by Service Token you will create; EVPLVC, EVPLANVC, EPLANVC, IPWANVC
- uuid string
- Equinix-assigned connection identifier
- z
Sides ServiceToken Service Token Connection ZSide[] - Z-Side Connection link protocol,virtual device or network configuration
- a_
sides Sequence[ServiceToken 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
- type str
- Type of Connection supported by Service Token you will create; EVPLVC, EVPLANVC, EPLANVC, IPWANVC
- uuid str
- Equinix-assigned connection identifier
- z_
sides Sequence[ServiceToken Service Token Connection ZSide] - Z-Side Connection link protocol,virtual device or network configuration
- a
Sides List<Property Map> - A-Side Connection link protocol,virtual device or network configuration
- allow
Custom BooleanBandwidth - Allow custom bandwidth value
- allow
Remote BooleanConnection - Authorization to connect remotely
- bandwidth
Limit Number - Connection bandwidth limit in Mbps
- supported
Bandwidths List<Number> - List of permitted bandwidths'; For Port-based Service Tokens, the maximum allowable bandwidth is 50 Gbps, while for Virtual Device-based Service Tokens, it is limited to 10 Gbps
- type String
- Type of Connection supported by Service Token you will create; EVPLVC, EVPLANVC, EPLANVC, IPWANVC
- uuid String
- Equinix-assigned connection identifier
- z
Sides List<Property Map> - Z-Side Connection link protocol,virtual device or network configuration
ServiceTokenServiceTokenConnectionASide, ServiceTokenServiceTokenConnectionASideArgs
- Access
Point List<ServiceSelectors 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 []ServiceSelectors Token Service Token Connection ASide Access Point Selector - List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
- access
Point List<ServiceSelectors 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 ServiceSelectors 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[Serviceselectors Token Service Token Connection ASide Access Point Selector] - List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
- access
Point List<Property Map>Selectors - List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
ServiceTokenServiceTokenConnectionASideAccessPointSelector, ServiceTokenServiceTokenConnectionASideAccessPointSelectorArgs
- Interface
Service
Token Service Token Connection ASide Access Point Selector Interface - Virtual Device Interface Configuration
- Link
Protocol ServiceToken Service Token Connection ASide Access Point Selector Link Protocol - Link protocol Configuration
- Network
Service
Token Service Token Connection ASide Access Point Selector Network - Network Configuration
- Port
Service
Token Service Token Connection ASide Access Point Selector Port - Port Configuration
- Type string
- Type of Access point; COLO, VD, NETWORK
- Virtual
Device ServiceToken Service Token Connection ASide Access Point Selector Virtual Device - Virtual Device Configuration
- Interface
Service
Token Service Token Connection ASide Access Point Selector Interface - Virtual Device Interface Configuration
- Link
Protocol ServiceToken Service Token Connection ASide Access Point Selector Link Protocol - Link protocol Configuration
- Network
Service
Token Service Token Connection ASide Access Point Selector Network - Network Configuration
- Port
Service
Token Service Token Connection ASide Access Point Selector Port - Port Configuration
- Type string
- Type of Access point; COLO, VD, NETWORK
- Virtual
Device ServiceToken Service Token Connection ASide Access Point Selector Virtual Device - Virtual Device Configuration
- interface_
Service
Token Service Token Connection ASide Access Point Selector Interface - Virtual Device Interface Configuration
- link
Protocol ServiceToken Service Token Connection ASide Access Point Selector Link Protocol - Link protocol Configuration
- network
Service
Token Service Token Connection ASide Access Point Selector Network - Network Configuration
- port
Service
Token Service Token Connection ASide Access Point Selector Port - Port Configuration
- type String
- Type of Access point; COLO, VD, NETWORK
- virtual
Device ServiceToken Service Token Connection ASide Access Point Selector Virtual Device - Virtual Device Configuration
- interface
Service
Token Service Token Connection ASide Access Point Selector Interface - Virtual Device Interface Configuration
- link
Protocol ServiceToken Service Token Connection ASide Access Point Selector Link Protocol - Link protocol Configuration
- network
Service
Token Service Token Connection ASide Access Point Selector Network - Network Configuration
- port
Service
Token Service Token Connection ASide Access Point Selector Port - Port Configuration
- type string
- Type of Access point; COLO, VD, NETWORK
- virtual
Device ServiceToken Service Token Connection ASide Access Point Selector Virtual Device - Virtual Device Configuration
- interface
Service
Token Service Token Connection ASide Access Point Selector Interface - Virtual Device Interface Configuration
- link_
protocol ServiceToken Service Token Connection ASide Access Point Selector Link Protocol - Link protocol Configuration
- network
Service
Token Service Token Connection ASide Access Point Selector Network - Network Configuration
- port
Service
Token Service Token Connection ASide Access Point Selector Port - Port Configuration
- type str
- Type of Access point; COLO, VD, NETWORK
- virtual_
device ServiceToken Service Token Connection ASide Access Point Selector Virtual Device - Virtual Device Configuration
- interface Property Map
- Virtual Device Interface Configuration
- link
Protocol Property Map - Link protocol Configuration
- network Property Map
- Network Configuration
- port Property Map
- Port Configuration
- type String
- Type of Access point; COLO, VD, NETWORK
- virtual
Device Property Map - Virtual Device Configuration
ServiceTokenServiceTokenConnectionASideAccessPointSelectorInterface, ServiceTokenServiceTokenConnectionASideAccessPointSelectorInterfaceArgs
ServiceTokenServiceTokenConnectionASideAccessPointSelectorLinkProtocol, ServiceTokenServiceTokenConnectionASideAccessPointSelectorLinkProtocolArgs
- Type string
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- Vlan
CTag int - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- Vlan
STag int - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- Vlan
Tag int - Vlan Tag information, vlanTag value specified for DOT1Q connections
- Type string
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- Vlan
CTag int - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- Vlan
STag int - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- Vlan
Tag int - Vlan Tag information, vlanTag value specified for DOT1Q connections
- type String
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- vlan
CTag Integer - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlan
STag Integer - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlan
Tag Integer - Vlan Tag information, vlanTag value specified for DOT1Q connections
- type string
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- vlan
CTag number - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlan
STag number - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlan
Tag number - Vlan Tag information, vlanTag value specified for DOT1Q connections
- type str
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- vlan_
c_ inttag - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlan_
s_ inttag - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlan_
tag int - Vlan Tag information, vlanTag value specified for DOT1Q connections
- type String
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- vlan
CTag Number - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlan
STag Number - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlan
Tag Number - Vlan Tag information, vlanTag value specified for DOT1Q connections
ServiceTokenServiceTokenConnectionASideAccessPointSelectorNetwork, ServiceTokenServiceTokenConnectionASideAccessPointSelectorNetworkArgs
ServiceTokenServiceTokenConnectionASideAccessPointSelectorNetworkLocation, ServiceTokenServiceTokenConnectionASideAccessPointSelectorNetworkLocationArgs
- ibx str
- IBX Code
- metro_
code str - Access point metro code
- metro_
name str - Access point metro name
- region str
- Access point region
ServiceTokenServiceTokenConnectionASideAccessPointSelectorPort, ServiceTokenServiceTokenConnectionASideAccessPointSelectorPortArgs
- Uuid string
- Equinix-assigned Port identifier
- Account
Name string - Account Name
- Bandwidth int
- Port Bandwidth
- Cvp
Id int - Customer virtual port Id
- Encapsulation
Protocol stringType - Port Encapsulation
- Href string
- Unique Resource Identifier
- Locations
List<Service
Token Service Token Connection ASide Access Point Selector Port Location> - Port Location
- Port
Name string - Port Name
- Priority string
- Port Priority
- Type string
- Type of Port
- Uuid string
- Equinix-assigned Port identifier
- Account
Name string - Account Name
- Bandwidth int
- Port Bandwidth
- Cvp
Id int - Customer virtual port Id
- Encapsulation
Protocol stringType - Port Encapsulation
- Href string
- Unique Resource Identifier
- Locations
[]Service
Token Service Token Connection ASide Access Point Selector Port Location - Port Location
- Port
Name string - Port Name
- Priority string
- Port Priority
- Type string
- Type of Port
- uuid String
- Equinix-assigned Port identifier
- account
Name String - Account Name
- bandwidth Integer
- Port Bandwidth
- cvp
Id Integer - Customer virtual port Id
- encapsulation
Protocol StringType - Port Encapsulation
- href String
- Unique Resource Identifier
- locations
List<Service
Token Service Token Connection ASide Access Point Selector Port Location> - Port Location
- port
Name String - Port Name
- priority String
- Port Priority
- type String
- Type of Port
- uuid string
- Equinix-assigned Port identifier
- account
Name string - Account Name
- bandwidth number
- Port Bandwidth
- cvp
Id number - Customer virtual port Id
- encapsulation
Protocol stringType - Port Encapsulation
- href string
- Unique Resource Identifier
- locations
Service
Token Service Token Connection ASide Access Point Selector Port Location[] - Port Location
- port
Name string - Port Name
- priority string
- Port Priority
- type string
- Type of Port
- uuid str
- 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[Service
Token Service Token Connection ASide Access Point Selector Port Location] - Port Location
- port_
name str - Port Name
- priority str
- Port Priority
- type str
- Type of Port
- uuid String
- Equinix-assigned Port identifier
- account
Name String - Account Name
- bandwidth Number
- Port Bandwidth
- cvp
Id Number - Customer virtual port Id
- encapsulation
Protocol StringType - Port Encapsulation
- href String
- Unique Resource Identifier
- locations List<Property Map>
- Port Location
- port
Name String - Port Name
- priority String
- Port Priority
- type String
- Type of Port
ServiceTokenServiceTokenConnectionASideAccessPointSelectorPortLocation, ServiceTokenServiceTokenConnectionASideAccessPointSelectorPortLocationArgs
- ibx str
- IBX Code
- metro_
code str - Access point metro code
- metro_
name str - Access point metro name
- region str
- Access point region
ServiceTokenServiceTokenConnectionASideAccessPointSelectorVirtualDevice, ServiceTokenServiceTokenConnectionASideAccessPointSelectorVirtualDeviceArgs
ServiceTokenServiceTokenConnectionZSide, ServiceTokenServiceTokenConnectionZSideArgs
- Access
Point List<ServiceSelectors 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 []ServiceSelectors Token Service Token Connection ZSide Access Point Selector - List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
- access
Point List<ServiceSelectors 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 ServiceSelectors 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[Serviceselectors Token Service Token Connection ZSide Access Point Selector] - List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
- access
Point List<Property Map>Selectors - List of criteria for selecting network access points with optimal efficiency, security, compatibility, and availability
ServiceTokenServiceTokenConnectionZSideAccessPointSelector, ServiceTokenServiceTokenConnectionZSideAccessPointSelectorArgs
- Interface
Service
Token Service Token Connection ZSide Access Point Selector Interface - Virtual Device Interface Configuration
- Link
Protocol ServiceToken Service Token Connection ZSide Access Point Selector Link Protocol - Link protocol Configuration
- Network
Service
Token Service Token Connection ZSide Access Point Selector Network - Network Configuration
- Port
Service
Token Service Token Connection ZSide Access Point Selector Port - Port Configuration
- Type string
- Type of Access point; COLO, VD, NETWORK
- Virtual
Device ServiceToken Service Token Connection ZSide Access Point Selector Virtual Device - Virtual Device Configuration
- Interface
Service
Token Service Token Connection ZSide Access Point Selector Interface - Virtual Device Interface Configuration
- Link
Protocol ServiceToken Service Token Connection ZSide Access Point Selector Link Protocol - Link protocol Configuration
- Network
Service
Token Service Token Connection ZSide Access Point Selector Network - Network Configuration
- Port
Service
Token Service Token Connection ZSide Access Point Selector Port - Port Configuration
- Type string
- Type of Access point; COLO, VD, NETWORK
- Virtual
Device ServiceToken Service Token Connection ZSide Access Point Selector Virtual Device - Virtual Device Configuration
- interface_
Service
Token Service Token Connection ZSide Access Point Selector Interface - Virtual Device Interface Configuration
- link
Protocol ServiceToken Service Token Connection ZSide Access Point Selector Link Protocol - Link protocol Configuration
- network
Service
Token Service Token Connection ZSide Access Point Selector Network - Network Configuration
- port
Service
Token Service Token Connection ZSide Access Point Selector Port - Port Configuration
- type String
- Type of Access point; COLO, VD, NETWORK
- virtual
Device ServiceToken Service Token Connection ZSide Access Point Selector Virtual Device - Virtual Device Configuration
- interface
Service
Token Service Token Connection ZSide Access Point Selector Interface - Virtual Device Interface Configuration
- link
Protocol ServiceToken Service Token Connection ZSide Access Point Selector Link Protocol - Link protocol Configuration
- network
Service
Token Service Token Connection ZSide Access Point Selector Network - Network Configuration
- port
Service
Token Service Token Connection ZSide Access Point Selector Port - Port Configuration
- type string
- Type of Access point; COLO, VD, NETWORK
- virtual
Device ServiceToken Service Token Connection ZSide Access Point Selector Virtual Device - Virtual Device Configuration
- interface
Service
Token Service Token Connection ZSide Access Point Selector Interface - Virtual Device Interface Configuration
- link_
protocol ServiceToken Service Token Connection ZSide Access Point Selector Link Protocol - Link protocol Configuration
- network
Service
Token Service Token Connection ZSide Access Point Selector Network - Network Configuration
- port
Service
Token Service Token Connection ZSide Access Point Selector Port - Port Configuration
- type str
- Type of Access point; COLO, VD, NETWORK
- virtual_
device ServiceToken Service Token Connection ZSide Access Point Selector Virtual Device - Virtual Device Configuration
- interface Property Map
- Virtual Device Interface Configuration
- link
Protocol Property Map - Link protocol Configuration
- network Property Map
- Network Configuration
- port Property Map
- Port Configuration
- type String
- Type of Access point; COLO, VD, NETWORK
- virtual
Device Property Map - Virtual Device Configuration
ServiceTokenServiceTokenConnectionZSideAccessPointSelectorInterface, ServiceTokenServiceTokenConnectionZSideAccessPointSelectorInterfaceArgs
ServiceTokenServiceTokenConnectionZSideAccessPointSelectorLinkProtocol, ServiceTokenServiceTokenConnectionZSideAccessPointSelectorLinkProtocolArgs
- Type string
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- Vlan
CTag int - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- Vlan
STag int - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- Vlan
Tag int - Vlan Tag information, vlanTag value specified for DOT1Q connections
- Type string
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- Vlan
CTag int - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- Vlan
STag int - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- Vlan
Tag int - Vlan Tag information, vlanTag value specified for DOT1Q connections
- type String
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- vlan
CTag Integer - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlan
STag Integer - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlan
Tag Integer - Vlan Tag information, vlanTag value specified for DOT1Q connections
- type string
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- vlan
CTag number - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlan
STag number - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlan
Tag number - Vlan Tag information, vlanTag value specified for DOT1Q connections
- type str
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- vlan_
c_ inttag - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlan_
s_ inttag - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlan_
tag int - Vlan Tag information, vlanTag value specified for DOT1Q connections
- type String
- Type of the link protocol - UNTAGGED, DOT1Q, QINQ, EVPN_VXLAN
- vlan
CTag Number - Vlan Customer Tag information, vlanCTag value specified for QINQ connections
- vlan
STag Number - Vlan Provider Tag information, vlanSTag value specified for QINQ connections
- vlan
Tag Number - Vlan Tag information, vlanTag value specified for DOT1Q connections
ServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetwork, ServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetworkArgs
ServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetworkLocation, ServiceTokenServiceTokenConnectionZSideAccessPointSelectorNetworkLocationArgs
- ibx str
- IBX Code
- metro_
code str - Access point metro code
- metro_
name str - Access point metro name
- region str
- Access point region
ServiceTokenServiceTokenConnectionZSideAccessPointSelectorPort, ServiceTokenServiceTokenConnectionZSideAccessPointSelectorPortArgs
- Uuid string
- Equinix-assigned Port identifier
- Account
Name string - Account Name
- Bandwidth int
- Port Bandwidth
- Cvp
Id int - Customer virtual port Id
- Encapsulation
Protocol stringType - Port Encapsulation
- Href string
- Unique Resource Identifier
- Locations
List<Service
Token Service Token Connection ZSide Access Point Selector Port Location> - Port Location
- Port
Name string - Port Name
- Priority string
- Port Priority
- Type string
- Type of Port
- Uuid string
- Equinix-assigned Port identifier
- Account
Name string - Account Name
- Bandwidth int
- Port Bandwidth
- Cvp
Id int - Customer virtual port Id
- Encapsulation
Protocol stringType - Port Encapsulation
- Href string
- Unique Resource Identifier
- Locations
[]Service
Token Service Token Connection ZSide Access Point Selector Port Location - Port Location
- Port
Name string - Port Name
- Priority string
- Port Priority
- Type string
- Type of Port
- uuid String
- Equinix-assigned Port identifier
- account
Name String - Account Name
- bandwidth Integer
- Port Bandwidth
- cvp
Id Integer - Customer virtual port Id
- encapsulation
Protocol StringType - Port Encapsulation
- href String
- Unique Resource Identifier
- locations
List<Service
Token Service Token Connection ZSide Access Point Selector Port Location> - Port Location
- port
Name String - Port Name
- priority String
- Port Priority
- type String
- Type of Port
- uuid string
- Equinix-assigned Port identifier
- account
Name string - Account Name
- bandwidth number
- Port Bandwidth
- cvp
Id number - Customer virtual port Id
- encapsulation
Protocol stringType - Port Encapsulation
- href string
- Unique Resource Identifier
- locations
Service
Token Service Token Connection ZSide Access Point Selector Port Location[] - Port Location
- port
Name string - Port Name
- priority string
- Port Priority
- type string
- Type of Port
- uuid str
- 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[Service
Token Service Token Connection ZSide Access Point Selector Port Location] - Port Location
- port_
name str - Port Name
- priority str
- Port Priority
- type str
- Type of Port
- uuid String
- Equinix-assigned Port identifier
- account
Name String - Account Name
- bandwidth Number
- Port Bandwidth
- cvp
Id Number - Customer virtual port Id
- encapsulation
Protocol StringType - Port Encapsulation
- href String
- Unique Resource Identifier
- locations List<Property Map>
- Port Location
- port
Name String - Port Name
- priority String
- Port Priority
- type String
- Type of Port
ServiceTokenServiceTokenConnectionZSideAccessPointSelectorPortLocation, ServiceTokenServiceTokenConnectionZSideAccessPointSelectorPortLocationArgs
- ibx str
- IBX Code
- metro_
code str - Access point metro code
- metro_
name str - Access point metro name
- region str
- Access point region
ServiceTokenServiceTokenConnectionZSideAccessPointSelectorVirtualDevice, ServiceTokenServiceTokenConnectionZSideAccessPointSelectorVirtualDeviceArgs
Package Details
- Repository
- equinix equinix/pulumi-equinix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
equinix
Terraform Provider.