1. Packages
  2. Equinix
  3. API Docs
  4. fabric
  5. Connection
Equinix v0.8.0 published on Tuesday, Apr 2, 2024 by Equinix

equinix.fabric.Connection

Explore with Pulumi AI

equinix logo
Equinix v0.8.0 published on Tuesday, Apr 2, 2024 by Equinix

    Fabric V4 API compatible resource allows creation and management of Equinix Fabric connection

    Example Usage

    using System.Collections.Generic;
    using Pulumi;
    using Equinix = Pulumi.Equinix;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var metro = config.Get("metro") ?? "FR";
        var speedInMbps = config.GetNumber("speedInMbps") ?? 50;
        var fabricPortName = config.Require("fabricPortName");
        var awsRegion = config.Get("awsRegion") ?? "eu-central-1";
        var awsAccountId = config.Require("awsAccountId");
        var serviceProfileId = Equinix.Fabric.GetServiceProfiles.Invoke(new()
        {
            Filter = new Equinix.Fabric.Inputs.GetServiceProfilesFilterInputArgs
            {
                Property = "/name",
                Operator = "=",
                Values = new[]
                {
                    "AWS Direct Connect",
                },
            },
        }).Apply(invoke => invoke.Data[0]?.Uuid);
    
        var portId = Equinix.Fabric.GetPorts.Invoke(new()
        {
            Filter = new Equinix.Fabric.Inputs.GetPortsFilterInputArgs
            {
                Name = fabricPortName,
            },
        }).Apply(invoke => invoke.Data[0]?.Uuid);
    
        var colo2Aws = new Equinix.Fabric.Connection("colo2Aws", new()
        {
            Name = "Pulumi-colo2Aws",
            Type = "EVPL_VC",
            Notifications = new[]
            {
                new Equinix.Fabric.Inputs.ConnectionNotificationArgs
                {
                    Type = "ALL",
                    Emails = new[]
                    {
                        "example@equinix.com",
                    },
                },
            },
            Bandwidth = speedInMbps,
            Redundancy = new Equinix.Fabric.Inputs.ConnectionRedundancyArgs
            {
                Priority = "PRIMARY",
            },
            ASide = new Equinix.Fabric.Inputs.ConnectionASideArgs
            {
                AccessPoint = new Equinix.Fabric.Inputs.ConnectionASideAccessPointArgs
                {
                    Type = "COLO",
                    Port = new Equinix.Fabric.Inputs.ConnectionASideAccessPointPortArgs
                    {
                        Uuid = portId,
                    },
                    LinkProtocol = new Equinix.Fabric.Inputs.ConnectionASideAccessPointLinkProtocolArgs
                    {
                        Type = "DOT1Q",
                        VlanTag = 1234,
                    },
                },
            },
            ZSide = new Equinix.Fabric.Inputs.ConnectionZSideArgs
            {
                AccessPoint = new Equinix.Fabric.Inputs.ConnectionZSideAccessPointArgs
                {
                    Type = "SP",
                    AuthenticationKey = awsAccountId,
                    SellerRegion = awsRegion,
                    Profile = new Equinix.Fabric.Inputs.ConnectionZSideAccessPointProfileArgs
                    {
                        Type = "L2_PROFILE",
                        Uuid = serviceProfileId,
                    },
                    Location = new Equinix.Fabric.Inputs.ConnectionZSideAccessPointLocationArgs
                    {
                        MetroCode = metro,
                    },
                },
            },
        });
    
        return new Dictionary<string, object?>
        {
            ["connectionId"] = colo2Aws.Id,
            ["connectionStatus"] = colo2Aws.Operation.Apply(operation => operation.EquinixStatus),
            ["connectionProviderStatus"] = colo2Aws.Operation.Apply(operation => operation.ProviderStatus),
            ["awsDirectConnectId"] = colo2Aws.ZSide.Apply(zSide => zSide.AccessPoint?.ProviderConnectionId),
        };
    });
    
    package main
    
    import (
    	"github.com/equinix/pulumi-equinix/sdk/go/equinix/fabric"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		metro := "FR"
    		if param := cfg.Get("metro"); param != "" {
    			metro = param
    		}
    		speedInMbps := 50
    		if param := cfg.GetInt("speedInMbps"); param != 0 {
    			speedInMbps = param
    		}
    		fabricPortName := cfg.Require("fabricPortName")
    		awsRegion := "eu-central-1"
    		if param := cfg.Get("awsRegion"); param != "" {
    			awsRegion = param
    		}
    		awsAccountId := cfg.Require("awsAccountId")
    		serviceProfileId := fabric.GetServiceProfiles(ctx, &fabric.GetServiceProfilesArgs{
    			Filter: fabric.GetServiceProfilesFilter{
    				Property: pulumi.StringRef("/name"),
    				Operator: pulumi.StringRef("="),
    				Values: []string{
    					"AWS Direct Connect",
    				},
    			},
    		}, nil).Data[0].Uuid
    		portId := fabric.GetPorts(ctx, &fabric.GetPortsArgs{
    			Filter: fabric.GetPortsFilter{
    				Name: pulumi.StringRef(fabricPortName),
    			},
    		}, nil).Data[0].Uuid
    		colo2Aws, err := fabric.NewConnection(ctx, "colo2Aws", &fabric.ConnectionArgs{
    			Name: pulumi.String("Pulumi-colo2Aws"),
    			Type: pulumi.String("EVPL_VC"),
    			Notifications: fabric.ConnectionNotificationArray{
    				&fabric.ConnectionNotificationArgs{
    					Type: pulumi.String("ALL"),
    					Emails: pulumi.StringArray{
    						pulumi.String("example@equinix.com"),
    					},
    				},
    			},
    			Bandwidth: pulumi.Int(speedInMbps),
    			Redundancy: &fabric.ConnectionRedundancyArgs{
    				Priority: pulumi.String("PRIMARY"),
    			},
    			ASide: &fabric.ConnectionASideArgs{
    				AccessPoint: &fabric.ConnectionASideAccessPointArgs{
    					Type: pulumi.String("COLO"),
    					Port: &fabric.ConnectionASideAccessPointPortArgs{
    						Uuid: *pulumi.String(portId),
    					},
    					LinkProtocol: &fabric.ConnectionASideAccessPointLinkProtocolArgs{
    						Type:    pulumi.String("DOT1Q"),
    						VlanTag: pulumi.Int(1234),
    					},
    				},
    			},
    			ZSide: &fabric.ConnectionZSideArgs{
    				AccessPoint: &fabric.ConnectionZSideAccessPointArgs{
    					Type:              pulumi.String("SP"),
    					AuthenticationKey: pulumi.String(awsAccountId),
    					SellerRegion:      pulumi.String(awsRegion),
    					Profile: &fabric.ConnectionZSideAccessPointProfileArgs{
    						Type: pulumi.String("L2_PROFILE"),
    						Uuid: *pulumi.String(serviceProfileId),
    					},
    					Location: &fabric.ConnectionZSideAccessPointLocationArgs{
    						MetroCode: pulumi.String(metro),
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		ctx.Export("connectionId", colo2Aws.ID())
    		ctx.Export("connectionStatus", colo2Aws.Operation.ApplyT(func(operation fabric.ConnectionOperation) (*string, error) {
    			return &operation.EquinixStatus, nil
    		}).(pulumi.StringPtrOutput))
    		ctx.Export("connectionProviderStatus", colo2Aws.Operation.ApplyT(func(operation fabric.ConnectionOperation) (*string, error) {
    			return &operation.ProviderStatus, nil
    		}).(pulumi.StringPtrOutput))
    		ctx.Export("awsDirectConnectId", colo2Aws.ZSide.ApplyT(func(zSide fabric.ConnectionZSide) (*string, error) {
    			return &zSide.AccessPoint.ProviderConnectionId, nil
    		}).(pulumi.StringPtrOutput))
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.equinix.pulumi.fabric.Connection;
    import com.equinix.pulumi.fabric.ConnectionArgs;
    import com.equinix.pulumi.fabric.inputs.ConnectionNotificationArgs;
    import com.equinix.pulumi.fabric.inputs.ConnectionRedundancyArgs;
    import com.equinix.pulumi.fabric.inputs.ConnectionASideArgs;
    import com.equinix.pulumi.fabric.inputs.ConnectionASideAccessPointArgs;
    import com.equinix.pulumi.fabric.inputs.ConnectionASideAccessPointPortArgs;
    import com.equinix.pulumi.fabric.inputs.ConnectionASideAccessPointLinkProtocolArgs;
    import com.equinix.pulumi.fabric.inputs.ConnectionZSideArgs;
    import com.equinix.pulumi.fabric.inputs.ConnectionZSideAccessPointArgs;
    import com.equinix.pulumi.fabric.inputs.ConnectionZSideAccessPointProfileArgs;
    import com.equinix.pulumi.fabric.inputs.ConnectionZSideAccessPointLocationArgs;
    import com.equinix.pulumi.fabric.inputs.GetServiceProfilesArgs;
    import com.equinix.pulumi.fabric.inputs.GetServiceProfilesFilterArgs;
    import com.equinix.pulumi.fabric.inputs.GetPortsArgs;
    import com.equinix.pulumi.fabric.inputs.GetPortsFilterArgs;
    import com.equinix.pulumi.fabric.FabricFunctions;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var config = ctx.config();
            final var metro = config.get("metro").orElse("FR");
            final var speedInMbps = Integer.parseInt(config.get("speedInMbps").orElse("50"));
            final var fabricPortName = config.get("fabricPortName").get().toString();
            final var awsRegion = config.get("awsRegion").orElse("eu-central-1");
            final var awsAccountId = config.get("awsAccountId").get().toString();
            System.out.println(System.getProperty("java.classpath"));
            final var serviceProfileId = FabricFunctions.getServiceProfiles(GetServiceProfilesArgs.builder()
                .filter(GetServiceProfilesFilterArgs.builder()
                    .property("/name")
                    .operator("=")
                    .values("AWS Direct Connect")
                    .build())
                .build()).applyValue(data -> data.data().get(0).uuid().get());
    
            final var portId = FabricFunctions.getPorts(GetPortsArgs.builder()
                .filter(GetPortsFilterArgs.builder()
                    .name(fabricPortName)
                    .build())
                .build()).applyValue(data -> data.data().get(0).uuid().get());
    
            var colo2Aws = new Connection("colo2Aws", ConnectionArgs.builder()        
                .name("Pulumi-colo2Aws")
                .type("EVPL_VC")
                .notifications(ConnectionNotificationArgs.builder()
                    .type("ALL")
                    .emails("example@equinix.com")
                    .build())
                .bandwidth(speedInMbps)
                .redundancy(ConnectionRedundancyArgs.builder()
                    .priority("PRIMARY")
                    .build())
                .aSide(ConnectionASideArgs.builder()
                    .accessPoint(ConnectionASideAccessPointArgs.builder()
                        .type("COLO")
                        .port(ConnectionASideAccessPointPortArgs.builder()
                            .uuid(portId)
                            .build())
                        .linkProtocol(ConnectionASideAccessPointLinkProtocolArgs.builder()
                            .type("DOT1Q")
                            .vlanTag(1234)
                            .build())
                        .build())
                    .build())
                .zSide(ConnectionZSideArgs.builder()
                    .accessPoint(ConnectionZSideAccessPointArgs.builder()
                        .type("SP")
                        .authenticationKey(awsAccountId)
                        .sellerRegion(awsRegion)
                        .profile(ConnectionZSideAccessPointProfileArgs.builder()
                            .type("L2_PROFILE")
                            .uuid(serviceProfileId)
                            .build())
                        .location(ConnectionZSideAccessPointLocationArgs.builder()
                            .metroCode(metro)
                            .build())
                        .build())
                    .build())
                .build());
    
            ctx.export("connectionId", colo2Aws.id());
            ctx.export("connectionStatus", colo2Aws.operation().applyValue(operation -> operation.equinixStatus()));
            ctx.export("connectionProviderStatus", colo2Aws.operation().applyValue(operation -> operation.providerStatus()));
            ctx.export("awsDirectConnectId", colo2Aws.zSide().applyValue(zSide -> zSide.accessPoint().get().providerConnectionId()));
        }
    }
    
    import pulumi
    import pulumi_equinix as equinix
    
    config = pulumi.Config()
    metro = config.get("metro")
    if metro is None:
        metro = "FR"
    speed_in_mbps = config.get_int("speedInMbps")
    if speed_in_mbps is None:
        speed_in_mbps = 50
    fabric_port_name = config.require("fabricPortName")
    aws_region = config.get("awsRegion")
    if aws_region is None:
        aws_region = "eu-central-1"
    aws_account_id = config.require("awsAccountId")
    service_profile_id = equinix.fabric.get_service_profiles(filter=equinix.fabric.GetServiceProfilesFilterArgs(
        property="/name",
        operator="=",
        values=["AWS Direct Connect"],
    )).data[0].uuid
    port_id = equinix.fabric.get_ports(filter=equinix.fabric.GetPortsFilterArgs(
        name=fabric_port_name,
    )).data[0].uuid
    colo2_aws = equinix.fabric.Connection("colo2Aws",
        name="Pulumi-colo2Aws",
        type="EVPL_VC",
        notifications=[equinix.fabric.ConnectionNotificationArgs(
            type="ALL",
            emails=["example@equinix.com"],
        )],
        bandwidth=speed_in_mbps,
        redundancy=equinix.fabric.ConnectionRedundancyArgs(
            priority="PRIMARY",
        ),
        a_side=equinix.fabric.ConnectionASideArgs(
            access_point=equinix.fabric.ConnectionASideAccessPointArgs(
                type="COLO",
                port=equinix.fabric.ConnectionASideAccessPointPortArgs(
                    uuid=port_id,
                ),
                link_protocol=equinix.fabric.ConnectionASideAccessPointLinkProtocolArgs(
                    type="DOT1Q",
                    vlan_tag=1234,
                ),
            ),
        ),
        z_side=equinix.fabric.ConnectionZSideArgs(
            access_point=equinix.fabric.ConnectionZSideAccessPointArgs(
                type="SP",
                authentication_key=aws_account_id,
                seller_region=aws_region,
                profile=equinix.fabric.ConnectionZSideAccessPointProfileArgs(
                    type="L2_PROFILE",
                    uuid=service_profile_id,
                ),
                location=equinix.fabric.ConnectionZSideAccessPointLocationArgs(
                    metro_code=metro,
                ),
            ),
        ))
    pulumi.export("connectionId", colo2_aws.id)
    pulumi.export("connectionStatus", colo2_aws.operation.equinix_status)
    pulumi.export("connectionProviderStatus", colo2_aws.operation.provider_status)
    pulumi.export("awsDirectConnectId", colo2_aws.z_side.access_point.provider_connection_id)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as equinix from "@equinix-labs/pulumi-equinix";
    
    const config = new pulumi.Config();
    const metro = config.get("metro") || "FR";
    const speedInMbps = config.getNumber("speedInMbps") || 50;
    const fabricPortName = config.require("fabricPortName");
    const awsRegion = config.get("awsRegion") || "eu-central-1";
    const awsAccountId = config.require("awsAccountId");
    const serviceProfileId = equinix.fabric.getServiceProfiles({
        filter: {
            property: "/name",
            operator: "=",
            values: ["AWS Direct Connect"],
        },
    }).then(invoke => invoke.data?.[0]?.uuid!);
    const portId = equinix.fabric.getPorts({
        filter: {
            name: fabricPortName,
        },
    }).then(invoke => invoke.data?.[0]?.uuid!);
    const colo2Aws = new equinix.fabric.Connection("colo2Aws", {
        name: "Pulumi-colo2Aws",
        type: "EVPL_VC",
        notifications: [{
            type: "ALL",
            emails: ["example@equinix.com"],
        }],
        bandwidth: speedInMbps,
        redundancy: {
            priority: "PRIMARY",
        },
        aSide: {
            accessPoint: {
                type: "COLO",
                port: {
                    uuid: portId,
                },
                linkProtocol: {
                    type: "DOT1Q",
                    vlanTag: 1234,
                },
            },
        },
        zSide: {
            accessPoint: {
                type: "SP",
                authenticationKey: awsAccountId,
                sellerRegion: awsRegion,
                profile: {
                    type: "L2_PROFILE",
                    uuid: serviceProfileId,
                },
                location: {
                    metroCode: metro,
                },
            },
        },
    });
    export const connectionId = colo2Aws.id;
    export const connectionStatus = colo2Aws.operation.apply(operation => operation.equinixStatus);
    export const connectionProviderStatus = colo2Aws.operation.apply(operation => operation.providerStatus);
    export const awsDirectConnectId = colo2Aws.zSide.apply(zSide => zSide.accessPoint?.providerConnectionId);
    
    config:
      metro:
        type: string
        default: FR
      speedInMbps:
        type: integer
        default: 50
      fabricPortName:
        type: string
      awsRegion:
        type: string
        default: eu-central-1
      awsAccountId:
        type: string
    variables:
      serviceProfileId:
        fn::invoke:
          function: equinix:fabric:getServiceProfiles
          arguments:
            filter:
              property: /name
              operator: "="
              values:
              - AWS Direct Connect
          return: data[0].uuid
      portId:
        fn::invoke:
          function: equinix:fabric:getPorts
          arguments:
            filter:
              name: ${fabricPortName}
          return: data[0].uuid
    resources:
      colo2Aws:
        type: equinix:fabric:Connection
        properties:
          name: Pulumi-colo2Aws
          type: EVPL_VC
          notifications:
          - type: ALL
            emails:
            - example@equinix.com
          bandwidth: ${speedInMbps}
          redundancy:
            priority: PRIMARY
          aSide:
            accessPoint:
              type: COLO
              port:
                uuid: ${portId}
              linkProtocol:
                type: DOT1Q
                vlanTag: 1234
          zSide:
            accessPoint:
              type: SP
              authenticationKey: ${awsAccountId}
              sellerRegion: ${awsRegion}
              profile:
                type: L2_PROFILE
                uuid: ${serviceProfileId}
              location:
                metroCode: ${metro}
    outputs:
      connectionId: ${colo2Aws.id}
      connectionStatus: ${colo2Aws.operation.equinixStatus}
      connectionProviderStatus: ${colo2Aws.operation.providerStatus}
      awsDirectConnectId: ${colo2Aws.zSide.accessPoint.providerConnectionId}
    

    Create Connection Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Connection(name: string, args: ConnectionArgs, opts?: CustomResourceOptions);
    @overload
    def Connection(resource_name: str,
                   args: ConnectionArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def Connection(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   a_side: Optional[ConnectionASideArgs] = None,
                   bandwidth: Optional[int] = None,
                   notifications: Optional[Sequence[ConnectionNotificationArgs]] = None,
                   order: Optional[ConnectionOrderArgs] = None,
                   type: Optional[Union[str, ConnectionType]] = None,
                   z_side: Optional[ConnectionZSideArgs] = None,
                   additional_info: Optional[Sequence[Mapping[str, Any]]] = None,
                   description: Optional[str] = None,
                   name: Optional[str] = None,
                   project: Optional[ConnectionProjectArgs] = None,
                   redundancy: Optional[ConnectionRedundancyArgs] = None)
    func NewConnection(ctx *Context, name string, args ConnectionArgs, opts ...ResourceOption) (*Connection, error)
    public Connection(string name, ConnectionArgs args, CustomResourceOptions? opts = null)
    public Connection(String name, ConnectionArgs args)
    public Connection(String name, ConnectionArgs args, CustomResourceOptions options)
    
    type: equinix:fabric:Connection
    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 ConnectionArgs
    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 ConnectionArgs
    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 ConnectionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ConnectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ConnectionArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var connectionResource = new Equinix.Fabric.Connection("connectionResource", new()
    {
        ASide = new Equinix.Fabric.Inputs.ConnectionASideArgs
        {
            AccessPoint = new Equinix.Fabric.Inputs.ConnectionASideAccessPointArgs
            {
                Account = new Equinix.Fabric.Inputs.ConnectionASideAccessPointAccountArgs
                {
                    AccountName = "string",
                    AccountNumber = 0,
                    GlobalCustId = "string",
                    GlobalOrgId = "string",
                    GlobalOrganizationName = "string",
                    OrgId = 0,
                    OrganizationName = "string",
                    UcmId = "string",
                },
                AuthenticationKey = "string",
                Interface = new Equinix.Fabric.Inputs.ConnectionASideAccessPointInterfaceArgs
                {
                    Id = 0,
                    Type = "string",
                    Uuid = "string",
                },
                LinkProtocol = new Equinix.Fabric.Inputs.ConnectionASideAccessPointLinkProtocolArgs
                {
                    Type = "string",
                    VlanCTag = 0,
                    VlanSTag = 0,
                    VlanTag = 0,
                },
                Location = new Equinix.Fabric.Inputs.ConnectionASideAccessPointLocationArgs
                {
                    Ibx = "string",
                    MetroCode = "string",
                    MetroName = "string",
                    Region = "string",
                },
                Network = new Equinix.Fabric.Inputs.ConnectionASideAccessPointNetworkArgs
                {
                    Href = "string",
                    Uuid = "string",
                },
                PeeringType = "string",
                Port = new Equinix.Fabric.Inputs.ConnectionASideAccessPointPortArgs
                {
                    Href = "string",
                    Name = "string",
                    Redundancy = new Equinix.Fabric.Inputs.ConnectionASideAccessPointPortRedundancyArgs
                    {
                        Enabled = false,
                        Group = "string",
                        Priority = "string",
                    },
                    Uuid = "string",
                },
                Profile = new Equinix.Fabric.Inputs.ConnectionASideAccessPointProfileArgs
                {
                    Type = "string",
                    Uuid = "string",
                    AccessPointTypeConfigs = new[]
                    {
                        new Equinix.Fabric.Inputs.ConnectionASideAccessPointProfileAccessPointTypeConfigArgs
                        {
                            Type = "string",
                            Uuid = "string",
                        },
                    },
                    Description = "string",
                    Href = "string",
                    Name = "string",
                },
                ProviderConnectionId = "string",
                Router = new Equinix.Fabric.Inputs.ConnectionASideAccessPointRouterArgs
                {
                    Href = "string",
                    Uuid = "string",
                },
                SellerRegion = "string",
                Type = "string",
                VirtualDevice = new Equinix.Fabric.Inputs.ConnectionASideAccessPointVirtualDeviceArgs
                {
                    Href = "string",
                    Name = "string",
                    Type = "string",
                    Uuid = "string",
                },
            },
            AdditionalInfo = new[]
            {
                new Equinix.Fabric.Inputs.ConnectionASideAdditionalInfoArgs
                {
                    Key = "string",
                    Value = "string",
                },
            },
            ServiceToken = new Equinix.Fabric.Inputs.ConnectionASideServiceTokenArgs
            {
                Description = "string",
                Href = "string",
                Type = "string",
                Uuid = "string",
            },
        },
        Bandwidth = 0,
        Notifications = new[]
        {
            new Equinix.Fabric.Inputs.ConnectionNotificationArgs
            {
                Emails = new[]
                {
                    "string",
                },
                Type = "string",
                SendInterval = "string",
            },
        },
        Order = new Equinix.Fabric.Inputs.ConnectionOrderArgs
        {
            BillingTier = "string",
            OrderId = "string",
            OrderNumber = "string",
            PurchaseOrderNumber = "string",
        },
        Type = "string",
        ZSide = new Equinix.Fabric.Inputs.ConnectionZSideArgs
        {
            AccessPoint = new Equinix.Fabric.Inputs.ConnectionZSideAccessPointArgs
            {
                Account = new Equinix.Fabric.Inputs.ConnectionZSideAccessPointAccountArgs
                {
                    AccountName = "string",
                    AccountNumber = 0,
                    GlobalCustId = "string",
                    GlobalOrgId = "string",
                    GlobalOrganizationName = "string",
                    OrgId = 0,
                    OrganizationName = "string",
                    UcmId = "string",
                },
                AuthenticationKey = "string",
                Interface = new Equinix.Fabric.Inputs.ConnectionZSideAccessPointInterfaceArgs
                {
                    Id = 0,
                    Type = "string",
                    Uuid = "string",
                },
                LinkProtocol = new Equinix.Fabric.Inputs.ConnectionZSideAccessPointLinkProtocolArgs
                {
                    Type = "string",
                    VlanCTag = 0,
                    VlanSTag = 0,
                    VlanTag = 0,
                },
                Location = new Equinix.Fabric.Inputs.ConnectionZSideAccessPointLocationArgs
                {
                    Ibx = "string",
                    MetroCode = "string",
                    MetroName = "string",
                    Region = "string",
                },
                Network = new Equinix.Fabric.Inputs.ConnectionZSideAccessPointNetworkArgs
                {
                    Href = "string",
                    Uuid = "string",
                },
                PeeringType = "string",
                Port = new Equinix.Fabric.Inputs.ConnectionZSideAccessPointPortArgs
                {
                    Href = "string",
                    Name = "string",
                    Redundancy = new Equinix.Fabric.Inputs.ConnectionZSideAccessPointPortRedundancyArgs
                    {
                        Enabled = false,
                        Group = "string",
                        Priority = "string",
                    },
                    Uuid = "string",
                },
                Profile = new Equinix.Fabric.Inputs.ConnectionZSideAccessPointProfileArgs
                {
                    Type = "string",
                    Uuid = "string",
                    AccessPointTypeConfigs = new[]
                    {
                        new Equinix.Fabric.Inputs.ConnectionZSideAccessPointProfileAccessPointTypeConfigArgs
                        {
                            Type = "string",
                            Uuid = "string",
                        },
                    },
                    Description = "string",
                    Href = "string",
                    Name = "string",
                },
                ProviderConnectionId = "string",
                Router = new Equinix.Fabric.Inputs.ConnectionZSideAccessPointRouterArgs
                {
                    Href = "string",
                    Uuid = "string",
                },
                SellerRegion = "string",
                Type = "string",
                VirtualDevice = new Equinix.Fabric.Inputs.ConnectionZSideAccessPointVirtualDeviceArgs
                {
                    Href = "string",
                    Name = "string",
                    Type = "string",
                    Uuid = "string",
                },
            },
            AdditionalInfo = new[]
            {
                new Equinix.Fabric.Inputs.ConnectionZSideAdditionalInfoArgs
                {
                    Key = "string",
                    Value = "string",
                },
            },
            ServiceToken = new Equinix.Fabric.Inputs.ConnectionZSideServiceTokenArgs
            {
                Description = "string",
                Href = "string",
                Type = "string",
                Uuid = "string",
            },
        },
        AdditionalInfo = new[]
        {
            
            {
                { "string", "any" },
            },
        },
        Description = "string",
        Name = "string",
        Project = new Equinix.Fabric.Inputs.ConnectionProjectArgs
        {
            Href = "string",
            ProjectId = "string",
        },
        Redundancy = new Equinix.Fabric.Inputs.ConnectionRedundancyArgs
        {
            Group = "string",
            Priority = "string",
        },
    });
    
    example, err := fabric.NewConnection(ctx, "connectionResource", &fabric.ConnectionArgs{
    	ASide: &fabric.ConnectionASideArgs{
    		AccessPoint: &fabric.ConnectionASideAccessPointArgs{
    			Account: &fabric.ConnectionASideAccessPointAccountArgs{
    				AccountName:            pulumi.String("string"),
    				AccountNumber:          pulumi.Int(0),
    				GlobalCustId:           pulumi.String("string"),
    				GlobalOrgId:            pulumi.String("string"),
    				GlobalOrganizationName: pulumi.String("string"),
    				OrgId:                  pulumi.Int(0),
    				OrganizationName:       pulumi.String("string"),
    				UcmId:                  pulumi.String("string"),
    			},
    			AuthenticationKey: pulumi.String("string"),
    			Interface: &fabric.ConnectionASideAccessPointInterfaceArgs{
    				Id:   pulumi.Int(0),
    				Type: pulumi.String("string"),
    				Uuid: pulumi.String("string"),
    			},
    			LinkProtocol: &fabric.ConnectionASideAccessPointLinkProtocolArgs{
    				Type:     pulumi.String("string"),
    				VlanCTag: pulumi.Int(0),
    				VlanSTag: pulumi.Int(0),
    				VlanTag:  pulumi.Int(0),
    			},
    			Location: &fabric.ConnectionASideAccessPointLocationArgs{
    				Ibx:       pulumi.String("string"),
    				MetroCode: pulumi.String("string"),
    				MetroName: pulumi.String("string"),
    				Region:    pulumi.String("string"),
    			},
    			Network: &fabric.ConnectionASideAccessPointNetworkArgs{
    				Href: pulumi.String("string"),
    				Uuid: pulumi.String("string"),
    			},
    			PeeringType: pulumi.String("string"),
    			Port: &fabric.ConnectionASideAccessPointPortArgs{
    				Href: pulumi.String("string"),
    				Name: pulumi.String("string"),
    				Redundancy: &fabric.ConnectionASideAccessPointPortRedundancyArgs{
    					Enabled:  pulumi.Bool(false),
    					Group:    pulumi.String("string"),
    					Priority: pulumi.String("string"),
    				},
    				Uuid: pulumi.String("string"),
    			},
    			Profile: &fabric.ConnectionASideAccessPointProfileArgs{
    				Type: pulumi.String("string"),
    				Uuid: pulumi.String("string"),
    				AccessPointTypeConfigs: fabric.ConnectionASideAccessPointProfileAccessPointTypeConfigArray{
    					&fabric.ConnectionASideAccessPointProfileAccessPointTypeConfigArgs{
    						Type: pulumi.String("string"),
    						Uuid: pulumi.String("string"),
    					},
    				},
    				Description: pulumi.String("string"),
    				Href:        pulumi.String("string"),
    				Name:        pulumi.String("string"),
    			},
    			ProviderConnectionId: pulumi.String("string"),
    			Router: &fabric.ConnectionASideAccessPointRouterArgs{
    				Href: pulumi.String("string"),
    				Uuid: pulumi.String("string"),
    			},
    			SellerRegion: pulumi.String("string"),
    			Type:         pulumi.String("string"),
    			VirtualDevice: &fabric.ConnectionASideAccessPointVirtualDeviceArgs{
    				Href: pulumi.String("string"),
    				Name: pulumi.String("string"),
    				Type: pulumi.String("string"),
    				Uuid: pulumi.String("string"),
    			},
    		},
    		AdditionalInfo: fabric.ConnectionASideAdditionalInfoArray{
    			&fabric.ConnectionASideAdditionalInfoArgs{
    				Key:   pulumi.String("string"),
    				Value: pulumi.String("string"),
    			},
    		},
    		ServiceToken: &fabric.ConnectionASideServiceTokenArgs{
    			Description: pulumi.String("string"),
    			Href:        pulumi.String("string"),
    			Type:        pulumi.String("string"),
    			Uuid:        pulumi.String("string"),
    		},
    	},
    	Bandwidth: pulumi.Int(0),
    	Notifications: fabric.ConnectionNotificationArray{
    		&fabric.ConnectionNotificationArgs{
    			Emails: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			Type:         pulumi.String("string"),
    			SendInterval: pulumi.String("string"),
    		},
    	},
    	Order: &fabric.ConnectionOrderArgs{
    		BillingTier:         pulumi.String("string"),
    		OrderId:             pulumi.String("string"),
    		OrderNumber:         pulumi.String("string"),
    		PurchaseOrderNumber: pulumi.String("string"),
    	},
    	Type: pulumi.String("string"),
    	ZSide: &fabric.ConnectionZSideArgs{
    		AccessPoint: &fabric.ConnectionZSideAccessPointArgs{
    			Account: &fabric.ConnectionZSideAccessPointAccountArgs{
    				AccountName:            pulumi.String("string"),
    				AccountNumber:          pulumi.Int(0),
    				GlobalCustId:           pulumi.String("string"),
    				GlobalOrgId:            pulumi.String("string"),
    				GlobalOrganizationName: pulumi.String("string"),
    				OrgId:                  pulumi.Int(0),
    				OrganizationName:       pulumi.String("string"),
    				UcmId:                  pulumi.String("string"),
    			},
    			AuthenticationKey: pulumi.String("string"),
    			Interface: &fabric.ConnectionZSideAccessPointInterfaceArgs{
    				Id:   pulumi.Int(0),
    				Type: pulumi.String("string"),
    				Uuid: pulumi.String("string"),
    			},
    			LinkProtocol: &fabric.ConnectionZSideAccessPointLinkProtocolArgs{
    				Type:     pulumi.String("string"),
    				VlanCTag: pulumi.Int(0),
    				VlanSTag: pulumi.Int(0),
    				VlanTag:  pulumi.Int(0),
    			},
    			Location: &fabric.ConnectionZSideAccessPointLocationArgs{
    				Ibx:       pulumi.String("string"),
    				MetroCode: pulumi.String("string"),
    				MetroName: pulumi.String("string"),
    				Region:    pulumi.String("string"),
    			},
    			Network: &fabric.ConnectionZSideAccessPointNetworkArgs{
    				Href: pulumi.String("string"),
    				Uuid: pulumi.String("string"),
    			},
    			PeeringType: pulumi.String("string"),
    			Port: &fabric.ConnectionZSideAccessPointPortArgs{
    				Href: pulumi.String("string"),
    				Name: pulumi.String("string"),
    				Redundancy: &fabric.ConnectionZSideAccessPointPortRedundancyArgs{
    					Enabled:  pulumi.Bool(false),
    					Group:    pulumi.String("string"),
    					Priority: pulumi.String("string"),
    				},
    				Uuid: pulumi.String("string"),
    			},
    			Profile: &fabric.ConnectionZSideAccessPointProfileArgs{
    				Type: pulumi.String("string"),
    				Uuid: pulumi.String("string"),
    				AccessPointTypeConfigs: fabric.ConnectionZSideAccessPointProfileAccessPointTypeConfigArray{
    					&fabric.ConnectionZSideAccessPointProfileAccessPointTypeConfigArgs{
    						Type: pulumi.String("string"),
    						Uuid: pulumi.String("string"),
    					},
    				},
    				Description: pulumi.String("string"),
    				Href:        pulumi.String("string"),
    				Name:        pulumi.String("string"),
    			},
    			ProviderConnectionId: pulumi.String("string"),
    			Router: &fabric.ConnectionZSideAccessPointRouterArgs{
    				Href: pulumi.String("string"),
    				Uuid: pulumi.String("string"),
    			},
    			SellerRegion: pulumi.String("string"),
    			Type:         pulumi.String("string"),
    			VirtualDevice: &fabric.ConnectionZSideAccessPointVirtualDeviceArgs{
    				Href: pulumi.String("string"),
    				Name: pulumi.String("string"),
    				Type: pulumi.String("string"),
    				Uuid: pulumi.String("string"),
    			},
    		},
    		AdditionalInfo: fabric.ConnectionZSideAdditionalInfoArray{
    			&fabric.ConnectionZSideAdditionalInfoArgs{
    				Key:   pulumi.String("string"),
    				Value: pulumi.String("string"),
    			},
    		},
    		ServiceToken: &fabric.ConnectionZSideServiceTokenArgs{
    			Description: pulumi.String("string"),
    			Href:        pulumi.String("string"),
    			Type:        pulumi.String("string"),
    			Uuid:        pulumi.String("string"),
    		},
    	},
    	AdditionalInfo: pulumi.MapArray{
    		pulumi.Map{
    			"string": pulumi.Any("any"),
    		},
    	},
    	Description: pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	Project: &fabric.ConnectionProjectArgs{
    		Href:      pulumi.String("string"),
    		ProjectId: pulumi.String("string"),
    	},
    	Redundancy: &fabric.ConnectionRedundancyArgs{
    		Group:    pulumi.String("string"),
    		Priority: pulumi.String("string"),
    	},
    })
    
    var connectionResource = new Connection("connectionResource", ConnectionArgs.builder()        
        .aSide(ConnectionASideArgs.builder()
            .accessPoint(ConnectionASideAccessPointArgs.builder()
                .account(ConnectionASideAccessPointAccountArgs.builder()
                    .accountName("string")
                    .accountNumber(0)
                    .globalCustId("string")
                    .globalOrgId("string")
                    .globalOrganizationName("string")
                    .orgId(0)
                    .organizationName("string")
                    .ucmId("string")
                    .build())
                .authenticationKey("string")
                .interface_(ConnectionASideAccessPointInterfaceArgs.builder()
                    .id(0)
                    .type("string")
                    .uuid("string")
                    .build())
                .linkProtocol(ConnectionASideAccessPointLinkProtocolArgs.builder()
                    .type("string")
                    .vlanCTag(0)
                    .vlanSTag(0)
                    .vlanTag(0)
                    .build())
                .location(ConnectionASideAccessPointLocationArgs.builder()
                    .ibx("string")
                    .metroCode("string")
                    .metroName("string")
                    .region("string")
                    .build())
                .network(ConnectionASideAccessPointNetworkArgs.builder()
                    .href("string")
                    .uuid("string")
                    .build())
                .peeringType("string")
                .port(ConnectionASideAccessPointPortArgs.builder()
                    .href("string")
                    .name("string")
                    .redundancy(ConnectionASideAccessPointPortRedundancyArgs.builder()
                        .enabled(false)
                        .group("string")
                        .priority("string")
                        .build())
                    .uuid("string")
                    .build())
                .profile(ConnectionASideAccessPointProfileArgs.builder()
                    .type("string")
                    .uuid("string")
                    .accessPointTypeConfigs(ConnectionASideAccessPointProfileAccessPointTypeConfigArgs.builder()
                        .type("string")
                        .uuid("string")
                        .build())
                    .description("string")
                    .href("string")
                    .name("string")
                    .build())
                .providerConnectionId("string")
                .router(ConnectionASideAccessPointRouterArgs.builder()
                    .href("string")
                    .uuid("string")
                    .build())
                .sellerRegion("string")
                .type("string")
                .virtualDevice(ConnectionASideAccessPointVirtualDeviceArgs.builder()
                    .href("string")
                    .name("string")
                    .type("string")
                    .uuid("string")
                    .build())
                .build())
            .additionalInfo(ConnectionASideAdditionalInfoArgs.builder()
                .key("string")
                .value("string")
                .build())
            .serviceToken(ConnectionASideServiceTokenArgs.builder()
                .description("string")
                .href("string")
                .type("string")
                .uuid("string")
                .build())
            .build())
        .bandwidth(0)
        .notifications(ConnectionNotificationArgs.builder()
            .emails("string")
            .type("string")
            .sendInterval("string")
            .build())
        .order(ConnectionOrderArgs.builder()
            .billingTier("string")
            .orderId("string")
            .orderNumber("string")
            .purchaseOrderNumber("string")
            .build())
        .type("string")
        .zSide(ConnectionZSideArgs.builder()
            .accessPoint(ConnectionZSideAccessPointArgs.builder()
                .account(ConnectionZSideAccessPointAccountArgs.builder()
                    .accountName("string")
                    .accountNumber(0)
                    .globalCustId("string")
                    .globalOrgId("string")
                    .globalOrganizationName("string")
                    .orgId(0)
                    .organizationName("string")
                    .ucmId("string")
                    .build())
                .authenticationKey("string")
                .interface_(ConnectionZSideAccessPointInterfaceArgs.builder()
                    .id(0)
                    .type("string")
                    .uuid("string")
                    .build())
                .linkProtocol(ConnectionZSideAccessPointLinkProtocolArgs.builder()
                    .type("string")
                    .vlanCTag(0)
                    .vlanSTag(0)
                    .vlanTag(0)
                    .build())
                .location(ConnectionZSideAccessPointLocationArgs.builder()
                    .ibx("string")
                    .metroCode("string")
                    .metroName("string")
                    .region("string")
                    .build())
                .network(ConnectionZSideAccessPointNetworkArgs.builder()
                    .href("string")
                    .uuid("string")
                    .build())
                .peeringType("string")
                .port(ConnectionZSideAccessPointPortArgs.builder()
                    .href("string")
                    .name("string")
                    .redundancy(ConnectionZSideAccessPointPortRedundancyArgs.builder()
                        .enabled(false)
                        .group("string")
                        .priority("string")
                        .build())
                    .uuid("string")
                    .build())
                .profile(ConnectionZSideAccessPointProfileArgs.builder()
                    .type("string")
                    .uuid("string")
                    .accessPointTypeConfigs(ConnectionZSideAccessPointProfileAccessPointTypeConfigArgs.builder()
                        .type("string")
                        .uuid("string")
                        .build())
                    .description("string")
                    .href("string")
                    .name("string")
                    .build())
                .providerConnectionId("string")
                .router(ConnectionZSideAccessPointRouterArgs.builder()
                    .href("string")
                    .uuid("string")
                    .build())
                .sellerRegion("string")
                .type("string")
                .virtualDevice(ConnectionZSideAccessPointVirtualDeviceArgs.builder()
                    .href("string")
                    .name("string")
                    .type("string")
                    .uuid("string")
                    .build())
                .build())
            .additionalInfo(ConnectionZSideAdditionalInfoArgs.builder()
                .key("string")
                .value("string")
                .build())
            .serviceToken(ConnectionZSideServiceTokenArgs.builder()
                .description("string")
                .href("string")
                .type("string")
                .uuid("string")
                .build())
            .build())
        .additionalInfo(Map.of("string", "any"))
        .description("string")
        .name("string")
        .project(ConnectionProjectArgs.builder()
            .href("string")
            .projectId("string")
            .build())
        .redundancy(ConnectionRedundancyArgs.builder()
            .group("string")
            .priority("string")
            .build())
        .build());
    
    connection_resource = equinix.fabric.Connection("connectionResource",
        a_side=equinix.fabric.ConnectionASideArgs(
            access_point=equinix.fabric.ConnectionASideAccessPointArgs(
                account=equinix.fabric.ConnectionASideAccessPointAccountArgs(
                    account_name="string",
                    account_number=0,
                    global_cust_id="string",
                    global_org_id="string",
                    global_organization_name="string",
                    org_id=0,
                    organization_name="string",
                    ucm_id="string",
                ),
                authentication_key="string",
                interface=equinix.fabric.ConnectionASideAccessPointInterfaceArgs(
                    id=0,
                    type="string",
                    uuid="string",
                ),
                link_protocol=equinix.fabric.ConnectionASideAccessPointLinkProtocolArgs(
                    type="string",
                    vlan_c_tag=0,
                    vlan_s_tag=0,
                    vlan_tag=0,
                ),
                location=equinix.fabric.ConnectionASideAccessPointLocationArgs(
                    ibx="string",
                    metro_code="string",
                    metro_name="string",
                    region="string",
                ),
                network=equinix.fabric.ConnectionASideAccessPointNetworkArgs(
                    href="string",
                    uuid="string",
                ),
                peering_type="string",
                port=equinix.fabric.ConnectionASideAccessPointPortArgs(
                    href="string",
                    name="string",
                    redundancy=equinix.fabric.ConnectionASideAccessPointPortRedundancyArgs(
                        enabled=False,
                        group="string",
                        priority="string",
                    ),
                    uuid="string",
                ),
                profile=equinix.fabric.ConnectionASideAccessPointProfileArgs(
                    type="string",
                    uuid="string",
                    access_point_type_configs=[equinix.fabric.ConnectionASideAccessPointProfileAccessPointTypeConfigArgs(
                        type="string",
                        uuid="string",
                    )],
                    description="string",
                    href="string",
                    name="string",
                ),
                provider_connection_id="string",
                router=equinix.fabric.ConnectionASideAccessPointRouterArgs(
                    href="string",
                    uuid="string",
                ),
                seller_region="string",
                type="string",
                virtual_device=equinix.fabric.ConnectionASideAccessPointVirtualDeviceArgs(
                    href="string",
                    name="string",
                    type="string",
                    uuid="string",
                ),
            ),
            additional_info=[equinix.fabric.ConnectionASideAdditionalInfoArgs(
                key="string",
                value="string",
            )],
            service_token=equinix.fabric.ConnectionASideServiceTokenArgs(
                description="string",
                href="string",
                type="string",
                uuid="string",
            ),
        ),
        bandwidth=0,
        notifications=[equinix.fabric.ConnectionNotificationArgs(
            emails=["string"],
            type="string",
            send_interval="string",
        )],
        order=equinix.fabric.ConnectionOrderArgs(
            billing_tier="string",
            order_id="string",
            order_number="string",
            purchase_order_number="string",
        ),
        type="string",
        z_side=equinix.fabric.ConnectionZSideArgs(
            access_point=equinix.fabric.ConnectionZSideAccessPointArgs(
                account=equinix.fabric.ConnectionZSideAccessPointAccountArgs(
                    account_name="string",
                    account_number=0,
                    global_cust_id="string",
                    global_org_id="string",
                    global_organization_name="string",
                    org_id=0,
                    organization_name="string",
                    ucm_id="string",
                ),
                authentication_key="string",
                interface=equinix.fabric.ConnectionZSideAccessPointInterfaceArgs(
                    id=0,
                    type="string",
                    uuid="string",
                ),
                link_protocol=equinix.fabric.ConnectionZSideAccessPointLinkProtocolArgs(
                    type="string",
                    vlan_c_tag=0,
                    vlan_s_tag=0,
                    vlan_tag=0,
                ),
                location=equinix.fabric.ConnectionZSideAccessPointLocationArgs(
                    ibx="string",
                    metro_code="string",
                    metro_name="string",
                    region="string",
                ),
                network=equinix.fabric.ConnectionZSideAccessPointNetworkArgs(
                    href="string",
                    uuid="string",
                ),
                peering_type="string",
                port=equinix.fabric.ConnectionZSideAccessPointPortArgs(
                    href="string",
                    name="string",
                    redundancy=equinix.fabric.ConnectionZSideAccessPointPortRedundancyArgs(
                        enabled=False,
                        group="string",
                        priority="string",
                    ),
                    uuid="string",
                ),
                profile=equinix.fabric.ConnectionZSideAccessPointProfileArgs(
                    type="string",
                    uuid="string",
                    access_point_type_configs=[equinix.fabric.ConnectionZSideAccessPointProfileAccessPointTypeConfigArgs(
                        type="string",
                        uuid="string",
                    )],
                    description="string",
                    href="string",
                    name="string",
                ),
                provider_connection_id="string",
                router=equinix.fabric.ConnectionZSideAccessPointRouterArgs(
                    href="string",
                    uuid="string",
                ),
                seller_region="string",
                type="string",
                virtual_device=equinix.fabric.ConnectionZSideAccessPointVirtualDeviceArgs(
                    href="string",
                    name="string",
                    type="string",
                    uuid="string",
                ),
            ),
            additional_info=[equinix.fabric.ConnectionZSideAdditionalInfoArgs(
                key="string",
                value="string",
            )],
            service_token=equinix.fabric.ConnectionZSideServiceTokenArgs(
                description="string",
                href="string",
                type="string",
                uuid="string",
            ),
        ),
        additional_info=[{
            "string": "any",
        }],
        description="string",
        name="string",
        project=equinix.fabric.ConnectionProjectArgs(
            href="string",
            project_id="string",
        ),
        redundancy=equinix.fabric.ConnectionRedundancyArgs(
            group="string",
            priority="string",
        ))
    
    const connectionResource = new equinix.fabric.Connection("connectionResource", {
        aSide: {
            accessPoint: {
                account: {
                    accountName: "string",
                    accountNumber: 0,
                    globalCustId: "string",
                    globalOrgId: "string",
                    globalOrganizationName: "string",
                    orgId: 0,
                    organizationName: "string",
                    ucmId: "string",
                },
                authenticationKey: "string",
                "interface": {
                    id: 0,
                    type: "string",
                    uuid: "string",
                },
                linkProtocol: {
                    type: "string",
                    vlanCTag: 0,
                    vlanSTag: 0,
                    vlanTag: 0,
                },
                location: {
                    ibx: "string",
                    metroCode: "string",
                    metroName: "string",
                    region: "string",
                },
                network: {
                    href: "string",
                    uuid: "string",
                },
                peeringType: "string",
                port: {
                    href: "string",
                    name: "string",
                    redundancy: {
                        enabled: false,
                        group: "string",
                        priority: "string",
                    },
                    uuid: "string",
                },
                profile: {
                    type: "string",
                    uuid: "string",
                    accessPointTypeConfigs: [{
                        type: "string",
                        uuid: "string",
                    }],
                    description: "string",
                    href: "string",
                    name: "string",
                },
                providerConnectionId: "string",
                router: {
                    href: "string",
                    uuid: "string",
                },
                sellerRegion: "string",
                type: "string",
                virtualDevice: {
                    href: "string",
                    name: "string",
                    type: "string",
                    uuid: "string",
                },
            },
            additionalInfo: [{
                key: "string",
                value: "string",
            }],
            serviceToken: {
                description: "string",
                href: "string",
                type: "string",
                uuid: "string",
            },
        },
        bandwidth: 0,
        notifications: [{
            emails: ["string"],
            type: "string",
            sendInterval: "string",
        }],
        order: {
            billingTier: "string",
            orderId: "string",
            orderNumber: "string",
            purchaseOrderNumber: "string",
        },
        type: "string",
        zSide: {
            accessPoint: {
                account: {
                    accountName: "string",
                    accountNumber: 0,
                    globalCustId: "string",
                    globalOrgId: "string",
                    globalOrganizationName: "string",
                    orgId: 0,
                    organizationName: "string",
                    ucmId: "string",
                },
                authenticationKey: "string",
                "interface": {
                    id: 0,
                    type: "string",
                    uuid: "string",
                },
                linkProtocol: {
                    type: "string",
                    vlanCTag: 0,
                    vlanSTag: 0,
                    vlanTag: 0,
                },
                location: {
                    ibx: "string",
                    metroCode: "string",
                    metroName: "string",
                    region: "string",
                },
                network: {
                    href: "string",
                    uuid: "string",
                },
                peeringType: "string",
                port: {
                    href: "string",
                    name: "string",
                    redundancy: {
                        enabled: false,
                        group: "string",
                        priority: "string",
                    },
                    uuid: "string",
                },
                profile: {
                    type: "string",
                    uuid: "string",
                    accessPointTypeConfigs: [{
                        type: "string",
                        uuid: "string",
                    }],
                    description: "string",
                    href: "string",
                    name: "string",
                },
                providerConnectionId: "string",
                router: {
                    href: "string",
                    uuid: "string",
                },
                sellerRegion: "string",
                type: "string",
                virtualDevice: {
                    href: "string",
                    name: "string",
                    type: "string",
                    uuid: "string",
                },
            },
            additionalInfo: [{
                key: "string",
                value: "string",
            }],
            serviceToken: {
                description: "string",
                href: "string",
                type: "string",
                uuid: "string",
            },
        },
        additionalInfo: [{
            string: "any",
        }],
        description: "string",
        name: "string",
        project: {
            href: "string",
            projectId: "string",
        },
        redundancy: {
            group: "string",
            priority: "string",
        },
    });
    
    type: equinix:fabric:Connection
    properties:
        aSide:
            accessPoint:
                account:
                    accountName: string
                    accountNumber: 0
                    globalCustId: string
                    globalOrgId: string
                    globalOrganizationName: string
                    orgId: 0
                    organizationName: string
                    ucmId: string
                authenticationKey: string
                interface:
                    id: 0
                    type: string
                    uuid: string
                linkProtocol:
                    type: string
                    vlanCTag: 0
                    vlanSTag: 0
                    vlanTag: 0
                location:
                    ibx: string
                    metroCode: string
                    metroName: string
                    region: string
                network:
                    href: string
                    uuid: string
                peeringType: string
                port:
                    href: string
                    name: string
                    redundancy:
                        enabled: false
                        group: string
                        priority: string
                    uuid: string
                profile:
                    accessPointTypeConfigs:
                        - type: string
                          uuid: string
                    description: string
                    href: string
                    name: string
                    type: string
                    uuid: string
                providerConnectionId: string
                router:
                    href: string
                    uuid: string
                sellerRegion: string
                type: string
                virtualDevice:
                    href: string
                    name: string
                    type: string
                    uuid: string
            additionalInfo:
                - key: string
                  value: string
            serviceToken:
                description: string
                href: string
                type: string
                uuid: string
        additionalInfo:
            - string: any
        bandwidth: 0
        description: string
        name: string
        notifications:
            - emails:
                - string
              sendInterval: string
              type: string
        order:
            billingTier: string
            orderId: string
            orderNumber: string
            purchaseOrderNumber: string
        project:
            href: string
            projectId: string
        redundancy:
            group: string
            priority: string
        type: string
        zSide:
            accessPoint:
                account:
                    accountName: string
                    accountNumber: 0
                    globalCustId: string
                    globalOrgId: string
                    globalOrganizationName: string
                    orgId: 0
                    organizationName: string
                    ucmId: string
                authenticationKey: string
                interface:
                    id: 0
                    type: string
                    uuid: string
                linkProtocol:
                    type: string
                    vlanCTag: 0
                    vlanSTag: 0
                    vlanTag: 0
                location:
                    ibx: string
                    metroCode: string
                    metroName: string
                    region: string
                network:
                    href: string
                    uuid: string
                peeringType: string
                port:
                    href: string
                    name: string
                    redundancy:
                        enabled: false
                        group: string
                        priority: string
                    uuid: string
                profile:
                    accessPointTypeConfigs:
                        - type: string
                          uuid: string
                    description: string
                    href: string
                    name: string
                    type: string
                    uuid: string
                providerConnectionId: string
                router:
                    href: string
                    uuid: string
                sellerRegion: string
                type: string
                virtualDevice:
                    href: string
                    name: string
                    type: string
                    uuid: string
            additionalInfo:
                - key: string
                  value: string
            serviceToken:
                description: string
                href: string
                type: string
                uuid: string
    

    Connection Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Connection resource accepts the following input properties:

    ASide ConnectionASide
    Requester or Customer side connection configuration object of the multi-segment connection
    Bandwidth int
    Connection bandwidth in Mbps
    Notifications List<ConnectionNotification>
    Preferences for notifications on connection configuration or status changes
    Order ConnectionOrder
    Order details
    Type string | Pulumi.Equinix.Fabric.ConnectionType
    Interface type
    ZSide ConnectionZSide
    Destination or Provider side connection configuration object of the multi-segment connection
    AdditionalInfo List<ImmutableDictionary<string, object>>
    Connection side additional information
    Description string
    User-provided service description
    Name string
    Port name
    Project ConnectionProject
    Project information
    Redundancy ConnectionRedundancy
    Redundancy Information
    ASide ConnectionASideArgs
    Requester or Customer side connection configuration object of the multi-segment connection
    Bandwidth int
    Connection bandwidth in Mbps
    Notifications []ConnectionNotificationArgs
    Preferences for notifications on connection configuration or status changes
    Order ConnectionOrderArgs
    Order details
    Type string | ConnectionType
    Interface type
    ZSide ConnectionZSideArgs
    Destination or Provider side connection configuration object of the multi-segment connection
    AdditionalInfo []map[string]interface{}
    Connection side additional information
    Description string
    User-provided service description
    Name string
    Port name
    Project ConnectionProjectArgs
    Project information
    Redundancy ConnectionRedundancyArgs
    Redundancy Information
    aSide ConnectionASide
    Requester or Customer side connection configuration object of the multi-segment connection
    bandwidth Integer
    Connection bandwidth in Mbps
    notifications List<ConnectionNotification>
    Preferences for notifications on connection configuration or status changes
    order ConnectionOrder
    Order details
    type String | ConnectionType
    Interface type
    zSide ConnectionZSide
    Destination or Provider side connection configuration object of the multi-segment connection
    additionalInfo List<Map<String,Object>>
    Connection side additional information
    description String
    User-provided service description
    name String
    Port name
    project ConnectionProject
    Project information
    redundancy ConnectionRedundancy
    Redundancy Information
    aSide ConnectionASide
    Requester or Customer side connection configuration object of the multi-segment connection
    bandwidth number
    Connection bandwidth in Mbps
    notifications ConnectionNotification[]
    Preferences for notifications on connection configuration or status changes
    order ConnectionOrder
    Order details
    type string | ConnectionType
    Interface type
    zSide ConnectionZSide
    Destination or Provider side connection configuration object of the multi-segment connection
    additionalInfo {[key: string]: any}[]
    Connection side additional information
    description string
    User-provided service description
    name string
    Port name
    project ConnectionProject
    Project information
    redundancy ConnectionRedundancy
    Redundancy Information
    a_side ConnectionASideArgs
    Requester or Customer side connection configuration object of the multi-segment connection
    bandwidth int
    Connection bandwidth in Mbps
    notifications Sequence[ConnectionNotificationArgs]
    Preferences for notifications on connection configuration or status changes
    order ConnectionOrderArgs
    Order details
    type str | ConnectionType
    Interface type
    z_side ConnectionZSideArgs
    Destination or Provider side connection configuration object of the multi-segment connection
    additional_info Sequence[Mapping[str, Any]]
    Connection side additional information
    description str
    User-provided service description
    name str
    Port name
    project ConnectionProjectArgs
    Project information
    redundancy ConnectionRedundancyArgs
    Redundancy Information
    aSide Property Map
    Requester or Customer side connection configuration object of the multi-segment connection
    bandwidth Number
    Connection bandwidth in Mbps
    notifications List<Property Map>
    Preferences for notifications on connection configuration or status changes
    order Property Map
    Order details
    type String | "VG_VC" | "EVPL_VC" | "EPL_VC" | "GW_VC" | "ACCESS_EPL_VC"
    Interface type
    zSide Property Map
    Destination or Provider side connection configuration object of the multi-segment connection
    additionalInfo List<Map<Any>>
    Connection side additional information
    description String
    User-provided service description
    name String
    Port name
    project Property Map
    Project information
    redundancy Property Map
    Redundancy Information

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Connection resource produces the following output properties:

    Account ConnectionAccount
    Account
    ChangeLog ConnectionChangeLog
    Captures connection lifecycle change information
    Direction string
    Connection directionality from the requester point of view
    Href string
    Unique Resource Identifier
    Id string
    The provider-assigned unique ID for this managed resource.
    IsRemote bool
    Connection property derived from access point locations
    Operation ConnectionOperation
    Connection type-specific operational data
    State string
    Connection overall state
    Uuid string
    Equinix-assigned virtual gateway identifier
    Account ConnectionAccount
    Account
    ChangeLog ConnectionChangeLog
    Captures connection lifecycle change information
    Direction string
    Connection directionality from the requester point of view
    Href string
    Unique Resource Identifier
    Id string
    The provider-assigned unique ID for this managed resource.
    IsRemote bool
    Connection property derived from access point locations
    Operation ConnectionOperation
    Connection type-specific operational data
    State string
    Connection overall state
    Uuid string
    Equinix-assigned virtual gateway identifier
    account ConnectionAccount
    Account
    changeLog ConnectionChangeLog
    Captures connection lifecycle change information
    direction String
    Connection directionality from the requester point of view
    href String
    Unique Resource Identifier
    id String
    The provider-assigned unique ID for this managed resource.
    isRemote Boolean
    Connection property derived from access point locations
    operation ConnectionOperation
    Connection type-specific operational data
    state String
    Connection overall state
    uuid String
    Equinix-assigned virtual gateway identifier
    account ConnectionAccount
    Account
    changeLog ConnectionChangeLog
    Captures connection lifecycle change information
    direction string
    Connection directionality from the requester point of view
    href string
    Unique Resource Identifier
    id string
    The provider-assigned unique ID for this managed resource.
    isRemote boolean
    Connection property derived from access point locations
    operation ConnectionOperation
    Connection type-specific operational data
    state string
    Connection overall state
    uuid string
    Equinix-assigned virtual gateway identifier
    account ConnectionAccount
    Account
    change_log ConnectionChangeLog
    Captures connection lifecycle change information
    direction str
    Connection directionality from the requester point of view
    href str
    Unique Resource Identifier
    id str
    The provider-assigned unique ID for this managed resource.
    is_remote bool
    Connection property derived from access point locations
    operation ConnectionOperation
    Connection type-specific operational data
    state str
    Connection overall state
    uuid str
    Equinix-assigned virtual gateway identifier
    account Property Map
    Account
    changeLog Property Map
    Captures connection lifecycle change information
    direction String
    Connection directionality from the requester point of view
    href String
    Unique Resource Identifier
    id String
    The provider-assigned unique ID for this managed resource.
    isRemote Boolean
    Connection property derived from access point locations
    operation Property Map
    Connection type-specific operational data
    state String
    Connection overall state
    uuid String
    Equinix-assigned virtual gateway identifier

    Look up Existing Connection Resource

    Get an existing Connection 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?: ConnectionState, opts?: CustomResourceOptions): Connection
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            a_side: Optional[ConnectionASideArgs] = None,
            account: Optional[ConnectionAccountArgs] = None,
            additional_info: Optional[Sequence[Mapping[str, Any]]] = None,
            bandwidth: Optional[int] = None,
            change_log: Optional[ConnectionChangeLogArgs] = None,
            description: Optional[str] = None,
            direction: Optional[str] = None,
            href: Optional[str] = None,
            is_remote: Optional[bool] = None,
            name: Optional[str] = None,
            notifications: Optional[Sequence[ConnectionNotificationArgs]] = None,
            operation: Optional[ConnectionOperationArgs] = None,
            order: Optional[ConnectionOrderArgs] = None,
            project: Optional[ConnectionProjectArgs] = None,
            redundancy: Optional[ConnectionRedundancyArgs] = None,
            state: Optional[str] = None,
            type: Optional[Union[str, ConnectionType]] = None,
            uuid: Optional[str] = None,
            z_side: Optional[ConnectionZSideArgs] = None) -> Connection
    func GetConnection(ctx *Context, name string, id IDInput, state *ConnectionState, opts ...ResourceOption) (*Connection, error)
    public static Connection Get(string name, Input<string> id, ConnectionState? state, CustomResourceOptions? opts = null)
    public static Connection get(String name, Output<String> id, ConnectionState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    ASide ConnectionASide
    Requester or Customer side connection configuration object of the multi-segment connection
    Account ConnectionAccount
    Account
    AdditionalInfo List<ImmutableDictionary<string, object>>
    Connection side additional information
    Bandwidth int
    Connection bandwidth in Mbps
    ChangeLog ConnectionChangeLog
    Captures connection lifecycle change information
    Description string
    User-provided service description
    Direction string
    Connection directionality from the requester point of view
    Href string
    Unique Resource Identifier
    IsRemote bool
    Connection property derived from access point locations
    Name string
    Port name
    Notifications List<ConnectionNotification>
    Preferences for notifications on connection configuration or status changes
    Operation ConnectionOperation
    Connection type-specific operational data
    Order ConnectionOrder
    Order details
    Project ConnectionProject
    Project information
    Redundancy ConnectionRedundancy
    Redundancy Information
    State string
    Connection overall state
    Type string | Pulumi.Equinix.Fabric.ConnectionType
    Interface type
    Uuid string
    Equinix-assigned virtual gateway identifier
    ZSide ConnectionZSide
    Destination or Provider side connection configuration object of the multi-segment connection
    ASide ConnectionASideArgs
    Requester or Customer side connection configuration object of the multi-segment connection
    Account ConnectionAccountArgs
    Account
    AdditionalInfo []map[string]interface{}
    Connection side additional information
    Bandwidth int
    Connection bandwidth in Mbps
    ChangeLog ConnectionChangeLogArgs
    Captures connection lifecycle change information
    Description string
    User-provided service description
    Direction string
    Connection directionality from the requester point of view
    Href string
    Unique Resource Identifier
    IsRemote bool
    Connection property derived from access point locations
    Name string
    Port name
    Notifications []ConnectionNotificationArgs
    Preferences for notifications on connection configuration or status changes
    Operation ConnectionOperationArgs
    Connection type-specific operational data
    Order ConnectionOrderArgs
    Order details
    Project ConnectionProjectArgs
    Project information
    Redundancy ConnectionRedundancyArgs
    Redundancy Information
    State string
    Connection overall state
    Type string | ConnectionType
    Interface type
    Uuid string
    Equinix-assigned virtual gateway identifier
    ZSide ConnectionZSideArgs
    Destination or Provider side connection configuration object of the multi-segment connection
    aSide ConnectionASide
    Requester or Customer side connection configuration object of the multi-segment connection
    account ConnectionAccount
    Account
    additionalInfo List<Map<String,Object>>
    Connection side additional information
    bandwidth Integer
    Connection bandwidth in Mbps
    changeLog ConnectionChangeLog
    Captures connection lifecycle change information
    description String
    User-provided service description
    direction String
    Connection directionality from the requester point of view
    href String
    Unique Resource Identifier
    isRemote Boolean
    Connection property derived from access point locations
    name String
    Port name
    notifications List<ConnectionNotification>
    Preferences for notifications on connection configuration or status changes
    operation ConnectionOperation
    Connection type-specific operational data
    order ConnectionOrder
    Order details
    project ConnectionProject
    Project information
    redundancy ConnectionRedundancy
    Redundancy Information
    state String
    Connection overall state
    type String | ConnectionType
    Interface type
    uuid String
    Equinix-assigned virtual gateway identifier
    zSide ConnectionZSide
    Destination or Provider side connection configuration object of the multi-segment connection
    aSide ConnectionASide
    Requester or Customer side connection configuration object of the multi-segment connection
    account ConnectionAccount
    Account
    additionalInfo {[key: string]: any}[]
    Connection side additional information
    bandwidth number
    Connection bandwidth in Mbps
    changeLog ConnectionChangeLog
    Captures connection lifecycle change information
    description string
    User-provided service description
    direction string
    Connection directionality from the requester point of view
    href string
    Unique Resource Identifier
    isRemote boolean
    Connection property derived from access point locations
    name string
    Port name
    notifications ConnectionNotification[]
    Preferences for notifications on connection configuration or status changes
    operation ConnectionOperation
    Connection type-specific operational data
    order ConnectionOrder
    Order details
    project ConnectionProject
    Project information
    redundancy ConnectionRedundancy
    Redundancy Information
    state string
    Connection overall state
    type string | ConnectionType
    Interface type
    uuid string
    Equinix-assigned virtual gateway identifier
    zSide ConnectionZSide
    Destination or Provider side connection configuration object of the multi-segment connection
    a_side ConnectionASideArgs
    Requester or Customer side connection configuration object of the multi-segment connection
    account ConnectionAccountArgs
    Account
    additional_info Sequence[Mapping[str, Any]]
    Connection side additional information
    bandwidth int
    Connection bandwidth in Mbps
    change_log ConnectionChangeLogArgs
    Captures connection lifecycle change information
    description str
    User-provided service description
    direction str
    Connection directionality from the requester point of view
    href str
    Unique Resource Identifier
    is_remote bool
    Connection property derived from access point locations
    name str
    Port name
    notifications Sequence[ConnectionNotificationArgs]
    Preferences for notifications on connection configuration or status changes
    operation ConnectionOperationArgs
    Connection type-specific operational data
    order ConnectionOrderArgs
    Order details
    project ConnectionProjectArgs
    Project information
    redundancy ConnectionRedundancyArgs
    Redundancy Information
    state str
    Connection overall state
    type str | ConnectionType
    Interface type
    uuid str
    Equinix-assigned virtual gateway identifier
    z_side ConnectionZSideArgs
    Destination or Provider side connection configuration object of the multi-segment connection
    aSide Property Map
    Requester or Customer side connection configuration object of the multi-segment connection
    account Property Map
    Account
    additionalInfo List<Map<Any>>
    Connection side additional information
    bandwidth Number
    Connection bandwidth in Mbps
    changeLog Property Map
    Captures connection lifecycle change information
    description String
    User-provided service description
    direction String
    Connection directionality from the requester point of view
    href String
    Unique Resource Identifier
    isRemote Boolean
    Connection property derived from access point locations
    name String
    Port name
    notifications List<Property Map>
    Preferences for notifications on connection configuration or status changes
    operation Property Map
    Connection type-specific operational data
    order Property Map
    Order details
    project Property Map
    Project information
    redundancy Property Map
    Redundancy Information
    state String
    Connection overall state
    type String | "VG_VC" | "EVPL_VC" | "EPL_VC" | "GW_VC" | "ACCESS_EPL_VC"
    Interface type
    uuid String
    Equinix-assigned virtual gateway identifier
    zSide Property Map
    Destination or Provider side connection configuration object of the multi-segment connection

    Supporting Types

    AccessPointLinkProtocolType, AccessPointLinkProtocolTypeArgs

    Untagged
    UNTAGGED
    Dot1q
    DOT1Q
    QinQ
    QINQ
    EVPN_VXLAN
    EVPN_VXLAN
    AccessPointLinkProtocolTypeUntagged
    UNTAGGED
    AccessPointLinkProtocolTypeDot1q
    DOT1Q
    AccessPointLinkProtocolTypeQinQ
    QINQ
    AccessPointLinkProtocolType_EVPN_VXLAN
    EVPN_VXLAN
    Untagged
    UNTAGGED
    Dot1q
    DOT1Q
    QinQ
    QINQ
    EVPN_VXLAN
    EVPN_VXLAN
    Untagged
    UNTAGGED
    Dot1q
    DOT1Q
    QinQ
    QINQ
    EVPN_VXLAN
    EVPN_VXLAN
    UNTAGGED
    UNTAGGED
    DOT1Q
    DOT1Q
    QIN_Q
    QINQ
    EVP_N_VXLAN
    EVPN_VXLAN
    "UNTAGGED"
    UNTAGGED
    "DOT1Q"
    DOT1Q
    "QINQ"
    QINQ
    "EVPN_VXLAN"
    EVPN_VXLAN

    AccessPointPeeringType, AccessPointPeeringTypeArgs

    Private
    PRIVATE
    Microsoft
    MICROSOFT
    Public
    PUBLIC
    AccessPointPeeringTypePrivate
    PRIVATE
    AccessPointPeeringTypeMicrosoft
    MICROSOFT
    AccessPointPeeringTypePublic
    PUBLIC
    Private
    PRIVATE
    Microsoft
    MICROSOFT
    Public
    PUBLIC
    Private
    PRIVATE
    Microsoft
    MICROSOFT
    Public
    PUBLIC
    PRIVATE
    PRIVATE
    MICROSOFT
    MICROSOFT
    PUBLIC
    PUBLIC
    "PRIVATE"
    PRIVATE
    "MICROSOFT"
    MICROSOFT
    "PUBLIC"
    PUBLIC

    AccessPointType, AccessPointTypeArgs

    Colo
    COLOColocation
    VD
    VDVirtual Device
    SP
    SPService Profile
    IGW
    IGWInternet Gateway
    Subnet
    SUBNETSubnet
    GW
    GWGateway
    Network
    NETWORKNetwork
    AccessPointTypeColo
    COLOColocation
    AccessPointTypeVD
    VDVirtual Device
    AccessPointTypeSP
    SPService Profile
    AccessPointTypeIGW
    IGWInternet Gateway
    AccessPointTypeSubnet
    SUBNETSubnet
    AccessPointTypeGW
    GWGateway
    AccessPointTypeNetwork
    NETWORKNetwork
    Colo
    COLOColocation
    VD
    VDVirtual Device
    SP
    SPService Profile
    IGW
    IGWInternet Gateway
    Subnet
    SUBNETSubnet
    GW
    GWGateway
    Network
    NETWORKNetwork
    Colo
    COLOColocation
    VD
    VDVirtual Device
    SP
    SPService Profile
    IGW
    IGWInternet Gateway
    Subnet
    SUBNETSubnet
    GW
    GWGateway
    Network
    NETWORKNetwork
    COLO
    COLOColocation
    VD
    VDVirtual Device
    SP
    SPService Profile
    IGW
    IGWInternet Gateway
    SUBNET
    SUBNETSubnet
    GW
    GWGateway
    NETWORK
    NETWORKNetwork
    "COLO"
    COLOColocation
    "VD"
    VDVirtual Device
    "SP"
    SPService Profile
    "IGW"
    IGWInternet Gateway
    "SUBNET"
    SUBNETSubnet
    "GW"
    GWGateway
    "NETWORK"
    NETWORKNetwork

    ConnectionASide, ConnectionASideArgs

    AccessPoint ConnectionASideAccessPoint
    Point of access details
    AdditionalInfo List<ConnectionASideAdditionalInfo>
    Connection side additional information
    ServiceToken ConnectionASideServiceToken
    For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
    AccessPoint ConnectionASideAccessPoint
    Point of access details
    AdditionalInfo []ConnectionASideAdditionalInfo
    Connection side additional information
    ServiceToken ConnectionASideServiceToken
    For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
    accessPoint ConnectionASideAccessPoint
    Point of access details
    additionalInfo List<ConnectionASideAdditionalInfo>
    Connection side additional information
    serviceToken ConnectionASideServiceToken
    For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
    accessPoint ConnectionASideAccessPoint
    Point of access details
    additionalInfo ConnectionASideAdditionalInfo[]
    Connection side additional information
    serviceToken ConnectionASideServiceToken
    For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
    access_point ConnectionASideAccessPoint
    Point of access details
    additional_info Sequence[ConnectionASideAdditionalInfo]
    Connection side additional information
    service_token ConnectionASideServiceToken
    For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
    accessPoint Property Map
    Point of access details
    additionalInfo List<Property Map>
    Connection side additional information
    serviceToken Property Map
    For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets

    ConnectionASideAccessPoint, ConnectionASideAccessPointArgs

    Account ConnectionASideAccessPointAccount
    Account
    AuthenticationKey string
    Authentication key for provider based connections
    Gateway ConnectionASideAccessPointGateway
    Deprecated gateway Use router attribute instead

    Deprecated: use router attribute instead; gateway is no longer a part of the supported backend

    Interface ConnectionASideAccessPointInterface
    Virtual device interface
    LinkProtocol ConnectionASideAccessPointLinkProtocol
    Connection link protocol
    Location ConnectionASideAccessPointLocation
    Access point location
    Network ConnectionASideAccessPointNetwork
    network access point information
    PeeringType string | Pulumi.Equinix.Fabric.AccessPointPeeringType
    Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
    Port ConnectionASideAccessPointPort
    Port access point information
    Profile ConnectionASideAccessPointProfile
    Service Profile
    ProviderConnectionId string
    Provider assigned Connection Id
    Router ConnectionASideAccessPointRouter
    Cloud Router access point information that replaces gateway
    SellerRegion string
    Access point seller region
    Type string | Pulumi.Equinix.Fabric.AccessPointType
    Interface type
    VirtualDevice ConnectionASideAccessPointVirtualDevice
    Virtual device
    Account ConnectionASideAccessPointAccount
    Account
    AuthenticationKey string
    Authentication key for provider based connections
    Gateway ConnectionASideAccessPointGateway
    Deprecated gateway Use router attribute instead

    Deprecated: use router attribute instead; gateway is no longer a part of the supported backend

    Interface ConnectionASideAccessPointInterface
    Virtual device interface
    LinkProtocol ConnectionASideAccessPointLinkProtocol
    Connection link protocol
    Location ConnectionASideAccessPointLocation
    Access point location
    Network ConnectionASideAccessPointNetwork
    network access point information
    PeeringType string | AccessPointPeeringType
    Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
    Port ConnectionASideAccessPointPort
    Port access point information
    Profile ConnectionASideAccessPointProfile
    Service Profile
    ProviderConnectionId string
    Provider assigned Connection Id
    Router ConnectionASideAccessPointRouter
    Cloud Router access point information that replaces gateway
    SellerRegion string
    Access point seller region
    Type string | AccessPointType
    Interface type
    VirtualDevice ConnectionASideAccessPointVirtualDevice
    Virtual device
    account ConnectionASideAccessPointAccount
    Account
    authenticationKey String
    Authentication key for provider based connections
    gateway ConnectionASideAccessPointGateway
    Deprecated gateway Use router attribute instead

    Deprecated: use router attribute instead; gateway is no longer a part of the supported backend

    interface_ ConnectionASideAccessPointInterface
    Virtual device interface
    linkProtocol ConnectionASideAccessPointLinkProtocol
    Connection link protocol
    location ConnectionASideAccessPointLocation
    Access point location
    network ConnectionASideAccessPointNetwork
    network access point information
    peeringType String | AccessPointPeeringType
    Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
    port ConnectionASideAccessPointPort
    Port access point information
    profile ConnectionASideAccessPointProfile
    Service Profile
    providerConnectionId String
    Provider assigned Connection Id
    router ConnectionASideAccessPointRouter
    Cloud Router access point information that replaces gateway
    sellerRegion String
    Access point seller region
    type String | AccessPointType
    Interface type
    virtualDevice ConnectionASideAccessPointVirtualDevice
    Virtual device
    account ConnectionASideAccessPointAccount
    Account
    authenticationKey string
    Authentication key for provider based connections
    gateway ConnectionASideAccessPointGateway
    Deprecated gateway Use router attribute instead

    Deprecated: use router attribute instead; gateway is no longer a part of the supported backend

    interface ConnectionASideAccessPointInterface
    Virtual device interface
    linkProtocol ConnectionASideAccessPointLinkProtocol
    Connection link protocol
    location ConnectionASideAccessPointLocation
    Access point location
    network ConnectionASideAccessPointNetwork
    network access point information
    peeringType string | AccessPointPeeringType
    Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
    port ConnectionASideAccessPointPort
    Port access point information
    profile ConnectionASideAccessPointProfile
    Service Profile
    providerConnectionId string
    Provider assigned Connection Id
    router ConnectionASideAccessPointRouter
    Cloud Router access point information that replaces gateway
    sellerRegion string
    Access point seller region
    type string | AccessPointType
    Interface type
    virtualDevice ConnectionASideAccessPointVirtualDevice
    Virtual device
    account ConnectionASideAccessPointAccount
    Account
    authentication_key str
    Authentication key for provider based connections
    gateway ConnectionASideAccessPointGateway
    Deprecated gateway Use router attribute instead

    Deprecated: use router attribute instead; gateway is no longer a part of the supported backend

    interface ConnectionASideAccessPointInterface
    Virtual device interface
    link_protocol ConnectionASideAccessPointLinkProtocol
    Connection link protocol
    location ConnectionASideAccessPointLocation
    Access point location
    network ConnectionASideAccessPointNetwork
    network access point information
    peering_type str | AccessPointPeeringType
    Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
    port ConnectionASideAccessPointPort
    Port access point information
    profile ConnectionASideAccessPointProfile
    Service Profile
    provider_connection_id str
    Provider assigned Connection Id
    router ConnectionASideAccessPointRouter
    Cloud Router access point information that replaces gateway
    seller_region str
    Access point seller region
    type str | AccessPointType
    Interface type
    virtual_device ConnectionASideAccessPointVirtualDevice
    Virtual device
    account Property Map
    Account
    authenticationKey String
    Authentication key for provider based connections
    gateway Property Map
    Deprecated gateway Use router attribute instead

    Deprecated: use router attribute instead; gateway is no longer a part of the supported backend

    interface Property Map
    Virtual device interface
    linkProtocol Property Map
    Connection link protocol
    location Property Map
    Access point location
    network Property Map
    network access point information
    peeringType String | "PRIVATE" | "MICROSOFT" | "PUBLIC"
    Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
    port Property Map
    Port access point information
    profile Property Map
    Service Profile
    providerConnectionId String
    Provider assigned Connection Id
    router Property Map
    Cloud Router access point information that replaces gateway
    sellerRegion String
    Access point seller region
    type String | "COLO" | "VD" | "SP" | "IGW" | "SUBNET" | "GW" | "NETWORK"
    Interface type
    virtualDevice Property Map
    Virtual device

    ConnectionASideAccessPointAccount, ConnectionASideAccessPointAccountArgs

    AccountName string
    Legal name of the accountholder.
    AccountNumber int
    Equinix-assigned account number.
    GlobalCustId string
    Equinix-assigned ID of the subscriber's parent organization.
    GlobalOrgId string
    Equinix-assigned ID of the subscriber's parent organization.
    GlobalOrganizationName string
    Equinix-assigned name of the subscriber's parent organization.
    OrgId int
    Equinix-assigned ID of the subscriber's organization.
    OrganizationName string
    Equinix-assigned name of the subscriber's organization.
    UcmId string
    Enterprise datastore id
    AccountName string
    Legal name of the accountholder.
    AccountNumber int
    Equinix-assigned account number.
    GlobalCustId string
    Equinix-assigned ID of the subscriber's parent organization.
    GlobalOrgId string
    Equinix-assigned ID of the subscriber's parent organization.
    GlobalOrganizationName string
    Equinix-assigned name of the subscriber's parent organization.
    OrgId int
    Equinix-assigned ID of the subscriber's organization.
    OrganizationName string
    Equinix-assigned name of the subscriber's organization.
    UcmId string
    Enterprise datastore id
    accountName String
    Legal name of the accountholder.
    accountNumber Integer
    Equinix-assigned account number.
    globalCustId String
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrgId String
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrganizationName String
    Equinix-assigned name of the subscriber's parent organization.
    orgId Integer
    Equinix-assigned ID of the subscriber's organization.
    organizationName String
    Equinix-assigned name of the subscriber's organization.
    ucmId String
    Enterprise datastore id
    accountName string
    Legal name of the accountholder.
    accountNumber number
    Equinix-assigned account number.
    globalCustId string
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrgId string
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrganizationName string
    Equinix-assigned name of the subscriber's parent organization.
    orgId number
    Equinix-assigned ID of the subscriber's organization.
    organizationName string
    Equinix-assigned name of the subscriber's organization.
    ucmId string
    Enterprise datastore id
    account_name str
    Legal name of the accountholder.
    account_number int
    Equinix-assigned account number.
    global_cust_id str
    Equinix-assigned ID of the subscriber's parent organization.
    global_org_id str
    Equinix-assigned ID of the subscriber's parent organization.
    global_organization_name str
    Equinix-assigned name of the subscriber's parent organization.
    org_id int
    Equinix-assigned ID of the subscriber's organization.
    organization_name str
    Equinix-assigned name of the subscriber's organization.
    ucm_id str
    Enterprise datastore id
    accountName String
    Legal name of the accountholder.
    accountNumber Number
    Equinix-assigned account number.
    globalCustId String
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrgId String
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrganizationName String
    Equinix-assigned name of the subscriber's parent organization.
    orgId Number
    Equinix-assigned ID of the subscriber's organization.
    organizationName String
    Equinix-assigned name of the subscriber's organization.
    ucmId String
    Enterprise datastore id

    ConnectionASideAccessPointGateway, ConnectionASideAccessPointGatewayArgs

    Href string
    Unique Resource Identifier
    Uuid string
    Equinix-assigned virtual gateway identifier
    Href string
    Unique Resource Identifier
    Uuid string
    Equinix-assigned virtual gateway identifier
    href String
    Unique Resource Identifier
    uuid String
    Equinix-assigned virtual gateway identifier
    href string
    Unique Resource Identifier
    uuid string
    Equinix-assigned virtual gateway identifier
    href str
    Unique Resource Identifier
    uuid str
    Equinix-assigned virtual gateway identifier
    href String
    Unique Resource Identifier
    uuid String
    Equinix-assigned virtual gateway identifier

    ConnectionASideAccessPointInterface, ConnectionASideAccessPointInterfaceArgs

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

    ConnectionASideAccessPointLinkProtocol, ConnectionASideAccessPointLinkProtocolArgs

    Type string | Pulumi.Equinix.Fabric.AccessPointLinkProtocolType
    Interface type
    VlanCTag int
    Vlan Customer Tag information, vlanCTag value specified for QINQ connections
    VlanSTag int
    Vlan Provider Tag information, vlanSTag value specified for QINQ connections
    VlanTag int
    Vlan Tag information, vlanTag value specified for DOT1Q connections
    Type string | AccessPointLinkProtocolType
    Interface type
    VlanCTag int
    Vlan Customer Tag information, vlanCTag value specified for QINQ connections
    VlanSTag int
    Vlan Provider Tag information, vlanSTag value specified for QINQ connections
    VlanTag int
    Vlan Tag information, vlanTag value specified for DOT1Q connections
    type String | AccessPointLinkProtocolType
    Interface type
    vlanCTag Integer
    Vlan Customer Tag information, vlanCTag value specified for QINQ connections
    vlanSTag Integer
    Vlan Provider Tag information, vlanSTag value specified for QINQ connections
    vlanTag Integer
    Vlan Tag information, vlanTag value specified for DOT1Q connections
    type string | AccessPointLinkProtocolType
    Interface type
    vlanCTag number
    Vlan Customer Tag information, vlanCTag value specified for QINQ connections
    vlanSTag number
    Vlan Provider Tag information, vlanSTag value specified for QINQ connections
    vlanTag number
    Vlan Tag information, vlanTag value specified for DOT1Q connections
    type str | AccessPointLinkProtocolType
    Interface type
    vlan_c_tag int
    Vlan Customer Tag information, vlanCTag value specified for QINQ connections
    vlan_s_tag int
    Vlan Provider Tag information, vlanSTag value specified for QINQ connections
    vlan_tag int
    Vlan Tag information, vlanTag value specified for DOT1Q connections
    type String | "UNTAGGED" | "DOT1Q" | "QINQ" | "EVPN_VXLAN"
    Interface type
    vlanCTag Number
    Vlan Customer Tag information, vlanCTag value specified for QINQ connections
    vlanSTag Number
    Vlan Provider Tag information, vlanSTag value specified for QINQ connections
    vlanTag Number
    Vlan Tag information, vlanTag value specified for DOT1Q connections

    ConnectionASideAccessPointLocation, ConnectionASideAccessPointLocationArgs

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

    ConnectionASideAccessPointNetwork, ConnectionASideAccessPointNetworkArgs

    Href string
    Unique Resource Identifier
    Uuid string
    Equinix-assigned virtual gateway identifier
    Href string
    Unique Resource Identifier
    Uuid string
    Equinix-assigned virtual gateway identifier
    href String
    Unique Resource Identifier
    uuid String
    Equinix-assigned virtual gateway identifier
    href string
    Unique Resource Identifier
    uuid string
    Equinix-assigned virtual gateway identifier
    href str
    Unique Resource Identifier
    uuid str
    Equinix-assigned virtual gateway identifier
    href String
    Unique Resource Identifier
    uuid String
    Equinix-assigned virtual gateway identifier

    ConnectionASideAccessPointPort, ConnectionASideAccessPointPortArgs

    Href string
    Unique Resource Identifier
    Name string
    Port name
    Redundancy ConnectionASideAccessPointPortRedundancy
    Redundancy Information
    Uuid string
    Equinix-assigned virtual gateway identifier
    Href string
    Unique Resource Identifier
    Name string
    Port name
    Redundancy ConnectionASideAccessPointPortRedundancy
    Redundancy Information
    Uuid string
    Equinix-assigned virtual gateway identifier
    href String
    Unique Resource Identifier
    name String
    Port name
    redundancy ConnectionASideAccessPointPortRedundancy
    Redundancy Information
    uuid String
    Equinix-assigned virtual gateway identifier
    href string
    Unique Resource Identifier
    name string
    Port name
    redundancy ConnectionASideAccessPointPortRedundancy
    Redundancy Information
    uuid string
    Equinix-assigned virtual gateway identifier
    href str
    Unique Resource Identifier
    name str
    Port name
    redundancy ConnectionASideAccessPointPortRedundancy
    Redundancy Information
    uuid str
    Equinix-assigned virtual gateway identifier
    href String
    Unique Resource Identifier
    name String
    Port name
    redundancy Property Map
    Redundancy Information
    uuid String
    Equinix-assigned virtual gateway identifier

    ConnectionASideAccessPointPortRedundancy, ConnectionASideAccessPointPortRedundancyArgs

    Enabled bool
    Access point redundancy
    Group string
    Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinixfabricconnection.primaryportconnection.redundancy).group or equinixfabricconnection.primaryportconnection.redundancy.0.group)
    Priority string
    Connection priority in redundancy group - PRIMARY, SECONDARY
    Enabled bool
    Access point redundancy
    Group string
    Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinixfabricconnection.primaryportconnection.redundancy).group or equinixfabricconnection.primaryportconnection.redundancy.0.group)
    Priority string
    Connection priority in redundancy group - PRIMARY, SECONDARY
    enabled Boolean
    Access point redundancy
    group String
    Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinixfabricconnection.primaryportconnection.redundancy).group or equinixfabricconnection.primaryportconnection.redundancy.0.group)
    priority String
    Connection priority in redundancy group - PRIMARY, SECONDARY
    enabled boolean
    Access point redundancy
    group string
    Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinixfabricconnection.primaryportconnection.redundancy).group or equinixfabricconnection.primaryportconnection.redundancy.0.group)
    priority string
    Connection priority in redundancy group - PRIMARY, SECONDARY
    enabled bool
    Access point redundancy
    group str
    Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinixfabricconnection.primaryportconnection.redundancy).group or equinixfabricconnection.primaryportconnection.redundancy.0.group)
    priority str
    Connection priority in redundancy group - PRIMARY, SECONDARY
    enabled Boolean
    Access point redundancy
    group String
    Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinixfabricconnection.primaryportconnection.redundancy).group or equinixfabricconnection.primaryportconnection.redundancy.0.group)
    priority String
    Connection priority in redundancy group - PRIMARY, SECONDARY

    ConnectionASideAccessPointProfile, ConnectionASideAccessPointProfileArgs

    Type string | Pulumi.Equinix.Fabric.ProfileType
    Interface type
    Uuid string
    Equinix-assigned virtual gateway identifier
    AccessPointTypeConfigs List<ConnectionASideAccessPointProfileAccessPointTypeConfig>
    Access point config information
    Description string
    User-provided service description
    Href string
    Unique Resource Identifier
    Name string
    Port name
    Type string | ProfileType
    Interface type
    Uuid string
    Equinix-assigned virtual gateway identifier
    AccessPointTypeConfigs []ConnectionASideAccessPointProfileAccessPointTypeConfig
    Access point config information
    Description string
    User-provided service description
    Href string
    Unique Resource Identifier
    Name string
    Port name
    type String | ProfileType
    Interface type
    uuid String
    Equinix-assigned virtual gateway identifier
    accessPointTypeConfigs List<ConnectionASideAccessPointProfileAccessPointTypeConfig>
    Access point config information
    description String
    User-provided service description
    href String
    Unique Resource Identifier
    name String
    Port name
    type string | ProfileType
    Interface type
    uuid string
    Equinix-assigned virtual gateway identifier
    accessPointTypeConfigs ConnectionASideAccessPointProfileAccessPointTypeConfig[]
    Access point config information
    description string
    User-provided service description
    href string
    Unique Resource Identifier
    name string
    Port name
    type str | ProfileType
    Interface type
    uuid str
    Equinix-assigned virtual gateway identifier
    access_point_type_configs Sequence[ConnectionASideAccessPointProfileAccessPointTypeConfig]
    Access point config information
    description str
    User-provided service description
    href str
    Unique Resource Identifier
    name str
    Port name
    type String | "L2_PROFILE" | "L3_PROFILE"
    Interface type
    uuid String
    Equinix-assigned virtual gateway identifier
    accessPointTypeConfigs List<Property Map>
    Access point config information
    description String
    User-provided service description
    href String
    Unique Resource Identifier
    name String
    Port name

    ConnectionASideAccessPointProfileAccessPointTypeConfig, ConnectionASideAccessPointProfileAccessPointTypeConfigArgs

    Type string
    Interface type
    Uuid string
    Equinix-assigned virtual gateway identifier
    Type string
    Interface type
    Uuid string
    Equinix-assigned virtual gateway identifier
    type String
    Interface type
    uuid String
    Equinix-assigned virtual gateway identifier
    type string
    Interface type
    uuid string
    Equinix-assigned virtual gateway identifier
    type str
    Interface type
    uuid str
    Equinix-assigned virtual gateway identifier
    type String
    Interface type
    uuid String
    Equinix-assigned virtual gateway identifier

    ConnectionASideAccessPointRouter, ConnectionASideAccessPointRouterArgs

    Href string
    Unique Resource Identifier
    Uuid string
    Equinix-assigned virtual gateway identifier
    Href string
    Unique Resource Identifier
    Uuid string
    Equinix-assigned virtual gateway identifier
    href String
    Unique Resource Identifier
    uuid String
    Equinix-assigned virtual gateway identifier
    href string
    Unique Resource Identifier
    uuid string
    Equinix-assigned virtual gateway identifier
    href str
    Unique Resource Identifier
    uuid str
    Equinix-assigned virtual gateway identifier
    href String
    Unique Resource Identifier
    uuid String
    Equinix-assigned virtual gateway identifier

    ConnectionASideAccessPointVirtualDevice, ConnectionASideAccessPointVirtualDeviceArgs

    Href string
    Unique Resource Identifier
    Name string
    Port name
    Type string
    Interface type
    Uuid string
    Equinix-assigned virtual gateway identifier
    Href string
    Unique Resource Identifier
    Name string
    Port name
    Type string
    Interface type
    Uuid string
    Equinix-assigned virtual gateway identifier
    href String
    Unique Resource Identifier
    name String
    Port name
    type String
    Interface type
    uuid String
    Equinix-assigned virtual gateway identifier
    href string
    Unique Resource Identifier
    name string
    Port name
    type string
    Interface type
    uuid string
    Equinix-assigned virtual gateway identifier
    href str
    Unique Resource Identifier
    name str
    Port name
    type str
    Interface type
    uuid str
    Equinix-assigned virtual gateway identifier
    href String
    Unique Resource Identifier
    name String
    Port name
    type String
    Interface type
    uuid String
    Equinix-assigned virtual gateway identifier

    ConnectionASideAdditionalInfo, ConnectionASideAdditionalInfoArgs

    Key string
    Additional information key
    Value string
    Additional information value
    Key string
    Additional information key
    Value string
    Additional information value
    key String
    Additional information key
    value String
    Additional information value
    key string
    Additional information key
    value string
    Additional information value
    key str
    Additional information key
    value str
    Additional information value
    key String
    Additional information key
    value String
    Additional information value

    ConnectionASideServiceToken, ConnectionASideServiceTokenArgs

    Description string
    User-provided service description
    Href string
    Unique Resource Identifier
    Type string | Pulumi.Equinix.Fabric.ServiceTokenType
    Interface type
    Uuid string
    Equinix-assigned virtual gateway identifier
    Description string
    User-provided service description
    Href string
    Unique Resource Identifier
    Type string | ServiceTokenType
    Interface type
    Uuid string
    Equinix-assigned virtual gateway identifier
    description String
    User-provided service description
    href String
    Unique Resource Identifier
    type String | ServiceTokenType
    Interface type
    uuid String
    Equinix-assigned virtual gateway identifier
    description string
    User-provided service description
    href string
    Unique Resource Identifier
    type string | ServiceTokenType
    Interface type
    uuid string
    Equinix-assigned virtual gateway identifier
    description str
    User-provided service description
    href str
    Unique Resource Identifier
    type str | ServiceTokenType
    Interface type
    uuid str
    Equinix-assigned virtual gateway identifier
    description String
    User-provided service description
    href String
    Unique Resource Identifier
    type String | "VC_TOKEN"
    Interface type
    uuid String
    Equinix-assigned virtual gateway identifier

    ConnectionAccount, ConnectionAccountArgs

    AccountName string
    Legal name of the accountholder.
    AccountNumber int
    Equinix-assigned account number.
    GlobalCustId string
    Equinix-assigned ID of the subscriber's parent organization.
    GlobalOrgId string
    Equinix-assigned ID of the subscriber's parent organization.
    GlobalOrganizationName string
    Equinix-assigned name of the subscriber's parent organization.
    OrgId int
    Equinix-assigned ID of the subscriber's organization.
    OrganizationName string
    Equinix-assigned name of the subscriber's organization.
    UcmId string
    Enterprise datastore id
    AccountName string
    Legal name of the accountholder.
    AccountNumber int
    Equinix-assigned account number.
    GlobalCustId string
    Equinix-assigned ID of the subscriber's parent organization.
    GlobalOrgId string
    Equinix-assigned ID of the subscriber's parent organization.
    GlobalOrganizationName string
    Equinix-assigned name of the subscriber's parent organization.
    OrgId int
    Equinix-assigned ID of the subscriber's organization.
    OrganizationName string
    Equinix-assigned name of the subscriber's organization.
    UcmId string
    Enterprise datastore id
    accountName String
    Legal name of the accountholder.
    accountNumber Integer
    Equinix-assigned account number.
    globalCustId String
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrgId String
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrganizationName String
    Equinix-assigned name of the subscriber's parent organization.
    orgId Integer
    Equinix-assigned ID of the subscriber's organization.
    organizationName String
    Equinix-assigned name of the subscriber's organization.
    ucmId String
    Enterprise datastore id
    accountName string
    Legal name of the accountholder.
    accountNumber number
    Equinix-assigned account number.
    globalCustId string
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrgId string
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrganizationName string
    Equinix-assigned name of the subscriber's parent organization.
    orgId number
    Equinix-assigned ID of the subscriber's organization.
    organizationName string
    Equinix-assigned name of the subscriber's organization.
    ucmId string
    Enterprise datastore id
    account_name str
    Legal name of the accountholder.
    account_number int
    Equinix-assigned account number.
    global_cust_id str
    Equinix-assigned ID of the subscriber's parent organization.
    global_org_id str
    Equinix-assigned ID of the subscriber's parent organization.
    global_organization_name str
    Equinix-assigned name of the subscriber's parent organization.
    org_id int
    Equinix-assigned ID of the subscriber's organization.
    organization_name str
    Equinix-assigned name of the subscriber's organization.
    ucm_id str
    Enterprise datastore id
    accountName String
    Legal name of the accountholder.
    accountNumber Number
    Equinix-assigned account number.
    globalCustId String
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrgId String
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrganizationName String
    Equinix-assigned name of the subscriber's parent organization.
    orgId Number
    Equinix-assigned ID of the subscriber's organization.
    organizationName String
    Equinix-assigned name of the subscriber's organization.
    ucmId String
    Enterprise datastore id

    ConnectionChangeLog, ConnectionChangeLogArgs

    CreatedBy string
    Created by User Key
    CreatedByEmail string
    Created by User Email Address
    CreatedByFullName string
    Created by User Full Name
    CreatedDateTime string
    Created by Date and Time
    DeletedBy string
    Deleted by User Key
    DeletedByEmail string
    Deleted by User Email Address
    DeletedByFullName string
    Deleted by User Full Name
    DeletedDateTime string
    Deleted by Date and Time
    UpdatedBy string
    Updated by User Key
    UpdatedByEmail string
    Updated by User Email Address
    UpdatedByFullName string
    Updated by User Full Name
    UpdatedDateTime string
    Updated by Date and Time
    CreatedBy string
    Created by User Key
    CreatedByEmail string
    Created by User Email Address
    CreatedByFullName string
    Created by User Full Name
    CreatedDateTime string
    Created by Date and Time
    DeletedBy string
    Deleted by User Key
    DeletedByEmail string
    Deleted by User Email Address
    DeletedByFullName string
    Deleted by User Full Name
    DeletedDateTime string
    Deleted by Date and Time
    UpdatedBy string
    Updated by User Key
    UpdatedByEmail string
    Updated by User Email Address
    UpdatedByFullName string
    Updated by User Full Name
    UpdatedDateTime string
    Updated by Date and Time
    createdBy String
    Created by User Key
    createdByEmail String
    Created by User Email Address
    createdByFullName String
    Created by User Full Name
    createdDateTime String
    Created by Date and Time
    deletedBy String
    Deleted by User Key
    deletedByEmail String
    Deleted by User Email Address
    deletedByFullName String
    Deleted by User Full Name
    deletedDateTime String
    Deleted by Date and Time
    updatedBy String
    Updated by User Key
    updatedByEmail String
    Updated by User Email Address
    updatedByFullName String
    Updated by User Full Name
    updatedDateTime String
    Updated by Date and Time
    createdBy string
    Created by User Key
    createdByEmail string
    Created by User Email Address
    createdByFullName string
    Created by User Full Name
    createdDateTime string
    Created by Date and Time
    deletedBy string
    Deleted by User Key
    deletedByEmail string
    Deleted by User Email Address
    deletedByFullName string
    Deleted by User Full Name
    deletedDateTime string
    Deleted by Date and Time
    updatedBy string
    Updated by User Key
    updatedByEmail string
    Updated by User Email Address
    updatedByFullName string
    Updated by User Full Name
    updatedDateTime string
    Updated by Date and Time
    created_by str
    Created by User Key
    created_by_email str
    Created by User Email Address
    created_by_full_name str
    Created by User Full Name
    created_date_time str
    Created by Date and Time
    deleted_by str
    Deleted by User Key
    deleted_by_email str
    Deleted by User Email Address
    deleted_by_full_name str
    Deleted by User Full Name
    deleted_date_time str
    Deleted by Date and Time
    updated_by str
    Updated by User Key
    updated_by_email str
    Updated by User Email Address
    updated_by_full_name str
    Updated by User Full Name
    updated_date_time str
    Updated by Date and Time
    createdBy String
    Created by User Key
    createdByEmail String
    Created by User Email Address
    createdByFullName String
    Created by User Full Name
    createdDateTime String
    Created by Date and Time
    deletedBy String
    Deleted by User Key
    deletedByEmail String
    Deleted by User Email Address
    deletedByFullName String
    Deleted by User Full Name
    deletedDateTime String
    Deleted by Date and Time
    updatedBy String
    Updated by User Key
    updatedByEmail String
    Updated by User Email Address
    updatedByFullName String
    Updated by User Full Name
    updatedDateTime String
    Updated by Date and Time

    ConnectionNotification, ConnectionNotificationArgs

    Emails List<string>
    Array of contact emails
    Type string | Pulumi.Equinix.Fabric.NotificationsType
    Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
    SendInterval string
    Send interval
    Emails []string
    Array of contact emails
    Type string | NotificationsType
    Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
    SendInterval string
    Send interval
    emails List<String>
    Array of contact emails
    type String | NotificationsType
    Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
    sendInterval String
    Send interval
    emails string[]
    Array of contact emails
    type string | NotificationsType
    Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
    sendInterval string
    Send interval
    emails Sequence[str]
    Array of contact emails
    type str | NotificationsType
    Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
    send_interval str
    Send interval
    emails List<String>
    Array of contact emails
    type String | "ALL" | "CONNECTION_APPROVAL" | "SALES_REP_NOTIFICATIONS" | "NOTIFICATIONS"
    Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
    sendInterval String
    Send interval

    ConnectionOperation, ConnectionOperationArgs

    EquinixStatus string
    Connection status
    Errors List<ConnectionOperationError>
    Errors occurred
    ProviderStatus string
    Connection provider readiness status
    EquinixStatus string
    Connection status
    Errors []ConnectionOperationError
    Errors occurred
    ProviderStatus string
    Connection provider readiness status
    equinixStatus String
    Connection status
    errors List<ConnectionOperationError>
    Errors occurred
    providerStatus String
    Connection provider readiness status
    equinixStatus string
    Connection status
    errors ConnectionOperationError[]
    Errors occurred
    providerStatus string
    Connection provider readiness status
    equinix_status str
    Connection status
    errors Sequence[ConnectionOperationError]
    Errors occurred
    provider_status str
    Connection provider readiness status
    equinixStatus String
    Connection status
    errors List<Property Map>
    Errors occurred
    providerStatus String
    Connection provider readiness status

    ConnectionOperationError, ConnectionOperationErrorArgs

    AdditionalInfo List<ConnectionOperationErrorAdditionalInfo>
    Connection side additional information
    CorrelationId string
    CorrelationId
    Details string
    Details
    ErrorCode string
    Error code
    ErrorMessage string
    Error Message
    Help string
    Help
    AdditionalInfo []ConnectionOperationErrorAdditionalInfo
    Connection side additional information
    CorrelationId string
    CorrelationId
    Details string
    Details
    ErrorCode string
    Error code
    ErrorMessage string
    Error Message
    Help string
    Help
    additionalInfo List<ConnectionOperationErrorAdditionalInfo>
    Connection side additional information
    correlationId String
    CorrelationId
    details String
    Details
    errorCode String
    Error code
    errorMessage String
    Error Message
    help String
    Help
    additionalInfo ConnectionOperationErrorAdditionalInfo[]
    Connection side additional information
    correlationId string
    CorrelationId
    details string
    Details
    errorCode string
    Error code
    errorMessage string
    Error Message
    help string
    Help
    additional_info Sequence[ConnectionOperationErrorAdditionalInfo]
    Connection side additional information
    correlation_id str
    CorrelationId
    details str
    Details
    error_code str
    Error code
    error_message str
    Error Message
    help str
    Help
    additionalInfo List<Property Map>
    Connection side additional information
    correlationId String
    CorrelationId
    details String
    Details
    errorCode String
    Error code
    errorMessage String
    Error Message
    help String
    Help

    ConnectionOperationErrorAdditionalInfo, ConnectionOperationErrorAdditionalInfoArgs

    Property string
    Property at which the error potentially occurred
    Reason string
    Reason for the error
    Property string
    Property at which the error potentially occurred
    Reason string
    Reason for the error
    property String
    Property at which the error potentially occurred
    reason String
    Reason for the error
    property string
    Property at which the error potentially occurred
    reason string
    Reason for the error
    property str
    Property at which the error potentially occurred
    reason str
    Reason for the error
    property String
    Property at which the error potentially occurred
    reason String
    Reason for the error

    ConnectionOrder, ConnectionOrderArgs

    BillingTier string
    Billing tier for connection bandwidth
    OrderId string
    Order Identification
    OrderNumber string
    Order Reference Number
    PurchaseOrderNumber string
    Purchase order number
    BillingTier string
    Billing tier for connection bandwidth
    OrderId string
    Order Identification
    OrderNumber string
    Order Reference Number
    PurchaseOrderNumber string
    Purchase order number
    billingTier String
    Billing tier for connection bandwidth
    orderId String
    Order Identification
    orderNumber String
    Order Reference Number
    purchaseOrderNumber String
    Purchase order number
    billingTier string
    Billing tier for connection bandwidth
    orderId string
    Order Identification
    orderNumber string
    Order Reference Number
    purchaseOrderNumber string
    Purchase order number
    billing_tier str
    Billing tier for connection bandwidth
    order_id str
    Order Identification
    order_number str
    Order Reference Number
    purchase_order_number str
    Purchase order number
    billingTier String
    Billing tier for connection bandwidth
    orderId String
    Order Identification
    orderNumber String
    Order Reference Number
    purchaseOrderNumber String
    Purchase order number

    ConnectionProject, ConnectionProjectArgs

    Href string
    Unique Resource URL
    ProjectId string
    Project Id
    Href string
    Unique Resource URL
    ProjectId string
    Project Id
    href String
    Unique Resource URL
    projectId String
    Project Id
    href string
    Unique Resource URL
    projectId string
    Project Id
    href str
    Unique Resource URL
    project_id str
    Project Id
    href String
    Unique Resource URL
    projectId String
    Project Id

    ConnectionRedundancy, ConnectionRedundancyArgs

    Group string
    Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinixfabricconnection.primaryportconnection.redundancy).group or equinixfabricconnection.primaryportconnection.redundancy.0.group)
    Priority string
    Connection priority in redundancy group - PRIMARY, SECONDARY
    Group string
    Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinixfabricconnection.primaryportconnection.redundancy).group or equinixfabricconnection.primaryportconnection.redundancy.0.group)
    Priority string
    Connection priority in redundancy group - PRIMARY, SECONDARY
    group String
    Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinixfabricconnection.primaryportconnection.redundancy).group or equinixfabricconnection.primaryportconnection.redundancy.0.group)
    priority String
    Connection priority in redundancy group - PRIMARY, SECONDARY
    group string
    Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinixfabricconnection.primaryportconnection.redundancy).group or equinixfabricconnection.primaryportconnection.redundancy.0.group)
    priority string
    Connection priority in redundancy group - PRIMARY, SECONDARY
    group str
    Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinixfabricconnection.primaryportconnection.redundancy).group or equinixfabricconnection.primaryportconnection.redundancy.0.group)
    priority str
    Connection priority in redundancy group - PRIMARY, SECONDARY
    group String
    Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinixfabricconnection.primaryportconnection.redundancy).group or equinixfabricconnection.primaryportconnection.redundancy.0.group)
    priority String
    Connection priority in redundancy group - PRIMARY, SECONDARY

    ConnectionType, ConnectionTypeArgs

    VG
    VG_VCVirtual Gateway
    EVPL
    EVPL_VCEthernet Virtual Private Line
    EPL
    EPL_VCEthernet Private Line
    GW
    GW_VCFabric Gateway virtual connection
    AccessEPL
    ACCESS_EPL_VCE-access, layer 2 connection between a QINQ port and an EPL port.
    ConnectionTypeVG
    VG_VCVirtual Gateway
    ConnectionTypeEVPL
    EVPL_VCEthernet Virtual Private Line
    ConnectionTypeEPL
    EPL_VCEthernet Private Line
    ConnectionTypeGW
    GW_VCFabric Gateway virtual connection
    ConnectionTypeAccessEPL
    ACCESS_EPL_VCE-access, layer 2 connection between a QINQ port and an EPL port.
    VG
    VG_VCVirtual Gateway
    EVPL
    EVPL_VCEthernet Virtual Private Line
    EPL
    EPL_VCEthernet Private Line
    GW
    GW_VCFabric Gateway virtual connection
    AccessEPL
    ACCESS_EPL_VCE-access, layer 2 connection between a QINQ port and an EPL port.
    VG
    VG_VCVirtual Gateway
    EVPL
    EVPL_VCEthernet Virtual Private Line
    EPL
    EPL_VCEthernet Private Line
    GW
    GW_VCFabric Gateway virtual connection
    AccessEPL
    ACCESS_EPL_VCE-access, layer 2 connection between a QINQ port and an EPL port.
    VG
    VG_VCVirtual Gateway
    EVPL
    EVPL_VCEthernet Virtual Private Line
    EPL
    EPL_VCEthernet Private Line
    GW
    GW_VCFabric Gateway virtual connection
    ACCESS_EPL
    ACCESS_EPL_VCE-access, layer 2 connection between a QINQ port and an EPL port.
    "VG_VC"
    VG_VCVirtual Gateway
    "EVPL_VC"
    EVPL_VCEthernet Virtual Private Line
    "EPL_VC"
    EPL_VCEthernet Private Line
    "GW_VC"
    GW_VCFabric Gateway virtual connection
    "ACCESS_EPL_VC"
    ACCESS_EPL_VCE-access, layer 2 connection between a QINQ port and an EPL port.

    ConnectionZSide, ConnectionZSideArgs

    AccessPoint ConnectionZSideAccessPoint
    Point of access details
    AdditionalInfo List<ConnectionZSideAdditionalInfo>
    Connection side additional information
    ServiceToken ConnectionZSideServiceToken
    For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
    AccessPoint ConnectionZSideAccessPoint
    Point of access details
    AdditionalInfo []ConnectionZSideAdditionalInfo
    Connection side additional information
    ServiceToken ConnectionZSideServiceToken
    For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
    accessPoint ConnectionZSideAccessPoint
    Point of access details
    additionalInfo List<ConnectionZSideAdditionalInfo>
    Connection side additional information
    serviceToken ConnectionZSideServiceToken
    For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
    accessPoint ConnectionZSideAccessPoint
    Point of access details
    additionalInfo ConnectionZSideAdditionalInfo[]
    Connection side additional information
    serviceToken ConnectionZSideServiceToken
    For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
    access_point ConnectionZSideAccessPoint
    Point of access details
    additional_info Sequence[ConnectionZSideAdditionalInfo]
    Connection side additional information
    service_token ConnectionZSideServiceToken
    For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets
    accessPoint Property Map
    Point of access details
    additionalInfo List<Property Map>
    Connection side additional information
    serviceToken Property Map
    For service token based connections, Service tokens authorize users to access protected resources and services. Resource owners can distribute the tokens to trusted partners and vendors, allowing selected third parties to work directly with Equinix network assets

    ConnectionZSideAccessPoint, ConnectionZSideAccessPointArgs

    Account ConnectionZSideAccessPointAccount
    Account
    AuthenticationKey string
    Authentication key for provider based connections
    Gateway ConnectionZSideAccessPointGateway
    Deprecated gateway Use router attribute instead

    Deprecated: use router attribute instead; gateway is no longer a part of the supported backend

    Interface ConnectionZSideAccessPointInterface
    Virtual device interface
    LinkProtocol ConnectionZSideAccessPointLinkProtocol
    Connection link protocol
    Location ConnectionZSideAccessPointLocation
    Access point location
    Network ConnectionZSideAccessPointNetwork
    network access point information
    PeeringType string | Pulumi.Equinix.Fabric.AccessPointPeeringType
    Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
    Port ConnectionZSideAccessPointPort
    Port access point information
    Profile ConnectionZSideAccessPointProfile
    Service Profile
    ProviderConnectionId string
    Provider assigned Connection Id
    Router ConnectionZSideAccessPointRouter
    Cloud Router access point information that replaces gateway
    SellerRegion string
    Access point seller region
    Type string | Pulumi.Equinix.Fabric.AccessPointType
    Interface type
    VirtualDevice ConnectionZSideAccessPointVirtualDevice
    Virtual device
    Account ConnectionZSideAccessPointAccount
    Account
    AuthenticationKey string
    Authentication key for provider based connections
    Gateway ConnectionZSideAccessPointGateway
    Deprecated gateway Use router attribute instead

    Deprecated: use router attribute instead; gateway is no longer a part of the supported backend

    Interface ConnectionZSideAccessPointInterface
    Virtual device interface
    LinkProtocol ConnectionZSideAccessPointLinkProtocol
    Connection link protocol
    Location ConnectionZSideAccessPointLocation
    Access point location
    Network ConnectionZSideAccessPointNetwork
    network access point information
    PeeringType string | AccessPointPeeringType
    Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
    Port ConnectionZSideAccessPointPort
    Port access point information
    Profile ConnectionZSideAccessPointProfile
    Service Profile
    ProviderConnectionId string
    Provider assigned Connection Id
    Router ConnectionZSideAccessPointRouter
    Cloud Router access point information that replaces gateway
    SellerRegion string
    Access point seller region
    Type string | AccessPointType
    Interface type
    VirtualDevice ConnectionZSideAccessPointVirtualDevice
    Virtual device
    account ConnectionZSideAccessPointAccount
    Account
    authenticationKey String
    Authentication key for provider based connections
    gateway ConnectionZSideAccessPointGateway
    Deprecated gateway Use router attribute instead

    Deprecated: use router attribute instead; gateway is no longer a part of the supported backend

    interface_ ConnectionZSideAccessPointInterface
    Virtual device interface
    linkProtocol ConnectionZSideAccessPointLinkProtocol
    Connection link protocol
    location ConnectionZSideAccessPointLocation
    Access point location
    network ConnectionZSideAccessPointNetwork
    network access point information
    peeringType String | AccessPointPeeringType
    Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
    port ConnectionZSideAccessPointPort
    Port access point information
    profile ConnectionZSideAccessPointProfile
    Service Profile
    providerConnectionId String
    Provider assigned Connection Id
    router ConnectionZSideAccessPointRouter
    Cloud Router access point information that replaces gateway
    sellerRegion String
    Access point seller region
    type String | AccessPointType
    Interface type
    virtualDevice ConnectionZSideAccessPointVirtualDevice
    Virtual device
    account ConnectionZSideAccessPointAccount
    Account
    authenticationKey string
    Authentication key for provider based connections
    gateway ConnectionZSideAccessPointGateway
    Deprecated gateway Use router attribute instead

    Deprecated: use router attribute instead; gateway is no longer a part of the supported backend

    interface ConnectionZSideAccessPointInterface
    Virtual device interface
    linkProtocol ConnectionZSideAccessPointLinkProtocol
    Connection link protocol
    location ConnectionZSideAccessPointLocation
    Access point location
    network ConnectionZSideAccessPointNetwork
    network access point information
    peeringType string | AccessPointPeeringType
    Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
    port ConnectionZSideAccessPointPort
    Port access point information
    profile ConnectionZSideAccessPointProfile
    Service Profile
    providerConnectionId string
    Provider assigned Connection Id
    router ConnectionZSideAccessPointRouter
    Cloud Router access point information that replaces gateway
    sellerRegion string
    Access point seller region
    type string | AccessPointType
    Interface type
    virtualDevice ConnectionZSideAccessPointVirtualDevice
    Virtual device
    account ConnectionZSideAccessPointAccount
    Account
    authentication_key str
    Authentication key for provider based connections
    gateway ConnectionZSideAccessPointGateway
    Deprecated gateway Use router attribute instead

    Deprecated: use router attribute instead; gateway is no longer a part of the supported backend

    interface ConnectionZSideAccessPointInterface
    Virtual device interface
    link_protocol ConnectionZSideAccessPointLinkProtocol
    Connection link protocol
    location ConnectionZSideAccessPointLocation
    Access point location
    network ConnectionZSideAccessPointNetwork
    network access point information
    peering_type str | AccessPointPeeringType
    Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
    port ConnectionZSideAccessPointPort
    Port access point information
    profile ConnectionZSideAccessPointProfile
    Service Profile
    provider_connection_id str
    Provider assigned Connection Id
    router ConnectionZSideAccessPointRouter
    Cloud Router access point information that replaces gateway
    seller_region str
    Access point seller region
    type str | AccessPointType
    Interface type
    virtual_device ConnectionZSideAccessPointVirtualDevice
    Virtual device
    account Property Map
    Account
    authenticationKey String
    Authentication key for provider based connections
    gateway Property Map
    Deprecated gateway Use router attribute instead

    Deprecated: use router attribute instead; gateway is no longer a part of the supported backend

    interface Property Map
    Virtual device interface
    linkProtocol Property Map
    Connection link protocol
    location Property Map
    Access point location
    network Property Map
    network access point information
    peeringType String | "PRIVATE" | "MICROSOFT" | "PUBLIC"
    Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
    port Property Map
    Port access point information
    profile Property Map
    Service Profile
    providerConnectionId String
    Provider assigned Connection Id
    router Property Map
    Cloud Router access point information that replaces gateway
    sellerRegion String
    Access point seller region
    type String | "COLO" | "VD" | "SP" | "IGW" | "SUBNET" | "GW" | "NETWORK"
    Interface type
    virtualDevice Property Map
    Virtual device

    ConnectionZSideAccessPointAccount, ConnectionZSideAccessPointAccountArgs

    AccountName string
    Legal name of the accountholder.
    AccountNumber int
    Equinix-assigned account number.
    GlobalCustId string
    Equinix-assigned ID of the subscriber's parent organization.
    GlobalOrgId string
    Equinix-assigned ID of the subscriber's parent organization.
    GlobalOrganizationName string
    Equinix-assigned name of the subscriber's parent organization.
    OrgId int
    Equinix-assigned ID of the subscriber's organization.
    OrganizationName string
    Equinix-assigned name of the subscriber's organization.
    UcmId string
    Enterprise datastore id
    AccountName string
    Legal name of the accountholder.
    AccountNumber int
    Equinix-assigned account number.
    GlobalCustId string
    Equinix-assigned ID of the subscriber's parent organization.
    GlobalOrgId string
    Equinix-assigned ID of the subscriber's parent organization.
    GlobalOrganizationName string
    Equinix-assigned name of the subscriber's parent organization.
    OrgId int
    Equinix-assigned ID of the subscriber's organization.
    OrganizationName string
    Equinix-assigned name of the subscriber's organization.
    UcmId string
    Enterprise datastore id
    accountName String
    Legal name of the accountholder.
    accountNumber Integer
    Equinix-assigned account number.
    globalCustId String
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrgId String
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrganizationName String
    Equinix-assigned name of the subscriber's parent organization.
    orgId Integer
    Equinix-assigned ID of the subscriber's organization.
    organizationName String
    Equinix-assigned name of the subscriber's organization.
    ucmId String
    Enterprise datastore id
    accountName string
    Legal name of the accountholder.
    accountNumber number
    Equinix-assigned account number.
    globalCustId string
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrgId string
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrganizationName string
    Equinix-assigned name of the subscriber's parent organization.
    orgId number
    Equinix-assigned ID of the subscriber's organization.
    organizationName string
    Equinix-assigned name of the subscriber's organization.
    ucmId string
    Enterprise datastore id
    account_name str
    Legal name of the accountholder.
    account_number int
    Equinix-assigned account number.
    global_cust_id str
    Equinix-assigned ID of the subscriber's parent organization.
    global_org_id str
    Equinix-assigned ID of the subscriber's parent organization.
    global_organization_name str
    Equinix-assigned name of the subscriber's parent organization.
    org_id int
    Equinix-assigned ID of the subscriber's organization.
    organization_name str
    Equinix-assigned name of the subscriber's organization.
    ucm_id str
    Enterprise datastore id
    accountName String
    Legal name of the accountholder.
    accountNumber Number
    Equinix-assigned account number.
    globalCustId String
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrgId String
    Equinix-assigned ID of the subscriber's parent organization.
    globalOrganizationName String
    Equinix-assigned name of the subscriber's parent organization.
    orgId Number
    Equinix-assigned ID of the subscriber's organization.
    organizationName String
    Equinix-assigned name of the subscriber's organization.
    ucmId String
    Enterprise datastore id

    ConnectionZSideAccessPointGateway, ConnectionZSideAccessPointGatewayArgs

    Href string
    Unique Resource Identifier
    Uuid string
    Equinix-assigned virtual gateway identifier
    Href string
    Unique Resource Identifier
    Uuid string
    Equinix-assigned virtual gateway identifier
    href String
    Unique Resource Identifier
    uuid String
    Equinix-assigned virtual gateway identifier
    href string
    Unique Resource Identifier
    uuid string
    Equinix-assigned virtual gateway identifier
    href str
    Unique Resource Identifier
    uuid str
    Equinix-assigned virtual gateway identifier
    href String
    Unique Resource Identifier
    uuid String
    Equinix-assigned virtual gateway identifier

    ConnectionZSideAccessPointInterface, ConnectionZSideAccessPointInterfaceArgs

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

    ConnectionZSideAccessPointLinkProtocol, ConnectionZSideAccessPointLinkProtocolArgs

    Type string | Pulumi.Equinix.Fabric.AccessPointLinkProtocolType
    Interface type
    VlanCTag int
    Vlan Customer Tag information, vlanCTag value specified for QINQ connections
    VlanSTag int
    Vlan Provider Tag information, vlanSTag value specified for QINQ connections
    VlanTag int
    Vlan Tag information, vlanTag value specified for DOT1Q connections
    Type string | AccessPointLinkProtocolType
    Interface type
    VlanCTag int
    Vlan Customer Tag information, vlanCTag value specified for QINQ connections
    VlanSTag int
    Vlan Provider Tag information, vlanSTag value specified for QINQ connections
    VlanTag int
    Vlan Tag information, vlanTag value specified for DOT1Q connections
    type String | AccessPointLinkProtocolType
    Interface type
    vlanCTag Integer
    Vlan Customer Tag information, vlanCTag value specified for QINQ connections
    vlanSTag Integer
    Vlan Provider Tag information, vlanSTag value specified for QINQ connections
    vlanTag Integer
    Vlan Tag information, vlanTag value specified for DOT1Q connections
    type string | AccessPointLinkProtocolType
    Interface type
    vlanCTag number
    Vlan Customer Tag information, vlanCTag value specified for QINQ connections
    vlanSTag number
    Vlan Provider Tag information, vlanSTag value specified for QINQ connections
    vlanTag number
    Vlan Tag information, vlanTag value specified for DOT1Q connections
    type str | AccessPointLinkProtocolType
    Interface type
    vlan_c_tag int
    Vlan Customer Tag information, vlanCTag value specified for QINQ connections
    vlan_s_tag int
    Vlan Provider Tag information, vlanSTag value specified for QINQ connections
    vlan_tag int
    Vlan Tag information, vlanTag value specified for DOT1Q connections
    type String | "UNTAGGED" | "DOT1Q" | "QINQ" | "EVPN_VXLAN"
    Interface type
    vlanCTag Number
    Vlan Customer Tag information, vlanCTag value specified for QINQ connections
    vlanSTag Number
    Vlan Provider Tag information, vlanSTag value specified for QINQ connections
    vlanTag Number
    Vlan Tag information, vlanTag value specified for DOT1Q connections

    ConnectionZSideAccessPointLocation, ConnectionZSideAccessPointLocationArgs

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

    ConnectionZSideAccessPointNetwork, ConnectionZSideAccessPointNetworkArgs

    Href string
    Unique Resource Identifier
    Uuid string
    Equinix-assigned virtual gateway identifier
    Href string
    Unique Resource Identifier
    Uuid string
    Equinix-assigned virtual gateway identifier
    href String
    Unique Resource Identifier
    uuid String
    Equinix-assigned virtual gateway identifier
    href string
    Unique Resource Identifier
    uuid string
    Equinix-assigned virtual gateway identifier
    href str
    Unique Resource Identifier
    uuid str
    Equinix-assigned virtual gateway identifier
    href String
    Unique Resource Identifier
    uuid String
    Equinix-assigned virtual gateway identifier

    ConnectionZSideAccessPointPort, ConnectionZSideAccessPointPortArgs

    Href string
    Unique Resource Identifier
    Name string
    Port name
    Redundancy ConnectionZSideAccessPointPortRedundancy
    Redundancy Information
    Uuid string
    Equinix-assigned virtual gateway identifier
    Href string
    Unique Resource Identifier
    Name string
    Port name
    Redundancy ConnectionZSideAccessPointPortRedundancy
    Redundancy Information
    Uuid string
    Equinix-assigned virtual gateway identifier
    href String
    Unique Resource Identifier
    name String
    Port name
    redundancy ConnectionZSideAccessPointPortRedundancy
    Redundancy Information
    uuid String
    Equinix-assigned virtual gateway identifier
    href string
    Unique Resource Identifier
    name string
    Port name
    redundancy ConnectionZSideAccessPointPortRedundancy
    Redundancy Information
    uuid string
    Equinix-assigned virtual gateway identifier
    href str
    Unique Resource Identifier
    name str
    Port name
    redundancy ConnectionZSideAccessPointPortRedundancy
    Redundancy Information
    uuid str
    Equinix-assigned virtual gateway identifier
    href String
    Unique Resource Identifier
    name String
    Port name
    redundancy Property Map
    Redundancy Information
    uuid String
    Equinix-assigned virtual gateway identifier

    ConnectionZSideAccessPointPortRedundancy, ConnectionZSideAccessPointPortRedundancyArgs

    Enabled bool
    Access point redundancy
    Group string
    Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinixfabricconnection.primaryportconnection.redundancy).group or equinixfabricconnection.primaryportconnection.redundancy.0.group)
    Priority string
    Connection priority in redundancy group - PRIMARY, SECONDARY
    Enabled bool
    Access point redundancy
    Group string
    Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinixfabricconnection.primaryportconnection.redundancy).group or equinixfabricconnection.primaryportconnection.redundancy.0.group)
    Priority string
    Connection priority in redundancy group - PRIMARY, SECONDARY
    enabled Boolean
    Access point redundancy
    group String
    Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinixfabricconnection.primaryportconnection.redundancy).group or equinixfabricconnection.primaryportconnection.redundancy.0.group)
    priority String
    Connection priority in redundancy group - PRIMARY, SECONDARY
    enabled boolean
    Access point redundancy
    group string
    Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinixfabricconnection.primaryportconnection.redundancy).group or equinixfabricconnection.primaryportconnection.redundancy.0.group)
    priority string
    Connection priority in redundancy group - PRIMARY, SECONDARY
    enabled bool
    Access point redundancy
    group str
    Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinixfabricconnection.primaryportconnection.redundancy).group or equinixfabricconnection.primaryportconnection.redundancy.0.group)
    priority str
    Connection priority in redundancy group - PRIMARY, SECONDARY
    enabled Boolean
    Access point redundancy
    group String
    Redundancy group identifier (Use the redundancy.0.group UUID of primary connection; e.g. one(equinixfabricconnection.primaryportconnection.redundancy).group or equinixfabricconnection.primaryportconnection.redundancy.0.group)
    priority String
    Connection priority in redundancy group - PRIMARY, SECONDARY

    ConnectionZSideAccessPointProfile, ConnectionZSideAccessPointProfileArgs

    Type string | Pulumi.Equinix.Fabric.ProfileType
    Interface type
    Uuid string
    Equinix-assigned virtual gateway identifier
    AccessPointTypeConfigs List<ConnectionZSideAccessPointProfileAccessPointTypeConfig>
    Access point config information
    Description string
    User-provided service description
    Href string
    Unique Resource Identifier
    Name string
    Port name
    Type string | ProfileType
    Interface type
    Uuid string
    Equinix-assigned virtual gateway identifier
    AccessPointTypeConfigs []ConnectionZSideAccessPointProfileAccessPointTypeConfig
    Access point config information
    Description string
    User-provided service description
    Href string
    Unique Resource Identifier
    Name string
    Port name
    type String | ProfileType
    Interface type
    uuid String
    Equinix-assigned virtual gateway identifier
    accessPointTypeConfigs List<ConnectionZSideAccessPointProfileAccessPointTypeConfig>
    Access point config information
    description String
    User-provided service description
    href String
    Unique Resource Identifier
    name String
    Port name
    type string | ProfileType
    Interface type
    uuid string
    Equinix-assigned virtual gateway identifier
    accessPointTypeConfigs ConnectionZSideAccessPointProfileAccessPointTypeConfig[]
    Access point config information
    description string
    User-provided service description
    href string
    Unique Resource Identifier
    name string
    Port name
    type str | ProfileType
    Interface type
    uuid str
    Equinix-assigned virtual gateway identifier
    access_point_type_configs Sequence[ConnectionZSideAccessPointProfileAccessPointTypeConfig]
    Access point config information
    description str
    User-provided service description
    href str
    Unique Resource Identifier
    name str
    Port name
    type String | "L2_PROFILE" | "L3_PROFILE"
    Interface type
    uuid String
    Equinix-assigned virtual gateway identifier
    accessPointTypeConfigs List<Property Map>
    Access point config information
    description String
    User-provided service description
    href String
    Unique Resource Identifier
    name String
    Port name

    ConnectionZSideAccessPointProfileAccessPointTypeConfig, ConnectionZSideAccessPointProfileAccessPointTypeConfigArgs

    Type string
    Interface type
    Uuid string
    Equinix-assigned virtual gateway identifier
    Type string
    Interface type
    Uuid string
    Equinix-assigned virtual gateway identifier
    type String
    Interface type
    uuid String
    Equinix-assigned virtual gateway identifier
    type string
    Interface type
    uuid string
    Equinix-assigned virtual gateway identifier
    type str
    Interface type
    uuid str
    Equinix-assigned virtual gateway identifier
    type String
    Interface type
    uuid String
    Equinix-assigned virtual gateway identifier

    ConnectionZSideAccessPointRouter, ConnectionZSideAccessPointRouterArgs

    Href string
    Unique Resource Identifier
    Uuid string
    Equinix-assigned virtual gateway identifier
    Href string
    Unique Resource Identifier
    Uuid string
    Equinix-assigned virtual gateway identifier
    href String
    Unique Resource Identifier
    uuid String
    Equinix-assigned virtual gateway identifier
    href string
    Unique Resource Identifier
    uuid string
    Equinix-assigned virtual gateway identifier
    href str
    Unique Resource Identifier
    uuid str
    Equinix-assigned virtual gateway identifier
    href String
    Unique Resource Identifier
    uuid String
    Equinix-assigned virtual gateway identifier

    ConnectionZSideAccessPointVirtualDevice, ConnectionZSideAccessPointVirtualDeviceArgs

    Href string
    Unique Resource Identifier
    Name string
    Port name
    Type string
    Interface type
    Uuid string
    Equinix-assigned virtual gateway identifier
    Href string
    Unique Resource Identifier
    Name string
    Port name
    Type string
    Interface type
    Uuid string
    Equinix-assigned virtual gateway identifier
    href String
    Unique Resource Identifier
    name String
    Port name
    type String
    Interface type
    uuid String
    Equinix-assigned virtual gateway identifier
    href string
    Unique Resource Identifier
    name string
    Port name
    type string
    Interface type
    uuid string
    Equinix-assigned virtual gateway identifier
    href str
    Unique Resource Identifier
    name str
    Port name
    type str
    Interface type
    uuid str
    Equinix-assigned virtual gateway identifier
    href String
    Unique Resource Identifier
    name String
    Port name
    type String
    Interface type
    uuid String
    Equinix-assigned virtual gateway identifier

    ConnectionZSideAdditionalInfo, ConnectionZSideAdditionalInfoArgs

    Key string
    Additional information key
    Value string
    Additional information value
    Key string
    Additional information key
    Value string
    Additional information value
    key String
    Additional information key
    value String
    Additional information value
    key string
    Additional information key
    value string
    Additional information value
    key str
    Additional information key
    value str
    Additional information value
    key String
    Additional information key
    value String
    Additional information value

    ConnectionZSideServiceToken, ConnectionZSideServiceTokenArgs

    Description string
    User-provided service description
    Href string
    Unique Resource Identifier
    Type string | Pulumi.Equinix.Fabric.ServiceTokenType
    Interface type
    Uuid string
    Equinix-assigned virtual gateway identifier
    Description string
    User-provided service description
    Href string
    Unique Resource Identifier
    Type string | ServiceTokenType
    Interface type
    Uuid string
    Equinix-assigned virtual gateway identifier
    description String
    User-provided service description
    href String
    Unique Resource Identifier
    type String | ServiceTokenType
    Interface type
    uuid String
    Equinix-assigned virtual gateway identifier
    description string
    User-provided service description
    href string
    Unique Resource Identifier
    type string | ServiceTokenType
    Interface type
    uuid string
    Equinix-assigned virtual gateway identifier
    description str
    User-provided service description
    href str
    Unique Resource Identifier
    type str | ServiceTokenType
    Interface type
    uuid str
    Equinix-assigned virtual gateway identifier
    description String
    User-provided service description
    href String
    Unique Resource Identifier
    type String | "VC_TOKEN"
    Interface type
    uuid String
    Equinix-assigned virtual gateway identifier

    Metro, MetroArgs

    Amsterdam
    AM
    Ashburn
    DC
    Atlanta
    AT
    Barcelona
    BA
    Bogota
    BG
    Bordeaux
    BX
    Boston
    BO
    Brussels
    BL
    Calgary
    CL
    Canberra
    CA
    Chicago
    CH
    Dallas
    DA
    Denver
    DE
    Dubai
    DX
    Dublin
    DB
    Frankfurt
    FR
    Geneva
    GV
    Hamburg
    HH
    Helsinki
    HE
    HongKong
    HK
    Istanbul
    IL
    Kamloops
    KA
    Lisbon
    LS
    London
    LD
    LosAngeles
    LA
    Madrid
    MD
    Manchester
    MA
    Melbourne
    ME
    MexicoCity
    MX
    Miami
    MI
    Milan
    ML
    Montreal
    MT
    Mumbai
    MB
    Munich
    MU
    NewYork
    NY
    Osaka
    OS
    Paris
    PA
    Perth
    PE
    Philadelphia
    PH
    RioDeJaneiro
    RJ
    SaoPaulo
    SP
    Seattle
    SE
    Seoul
    SL
    SiliconValley
    SV
    Singapore
    SG
    Sofia
    SO
    Stockholm
    SK
    Sydney
    SY
    Tokyo
    TY
    Toronto
    TR
    Vancouver
    VA
    Warsaw
    WA
    Winnipeg
    WI
    Zurich
    ZH
    MetroAmsterdam
    AM
    MetroAshburn
    DC
    MetroAtlanta
    AT
    MetroBarcelona
    BA
    MetroBogota
    BG
    MetroBordeaux
    BX
    MetroBoston
    BO
    MetroBrussels
    BL
    MetroCalgary
    CL
    MetroCanberra
    CA
    MetroChicago
    CH
    MetroDallas
    DA
    MetroDenver
    DE
    MetroDubai
    DX
    MetroDublin
    DB
    MetroFrankfurt
    FR
    MetroGeneva
    GV
    MetroHamburg
    HH
    MetroHelsinki
    HE
    MetroHongKong
    HK
    MetroIstanbul
    IL
    MetroKamloops
    KA
    MetroLisbon
    LS
    MetroLondon
    LD
    MetroLosAngeles
    LA
    MetroMadrid
    MD
    MetroManchester
    MA
    MetroMelbourne
    ME
    MetroMexicoCity
    MX
    MetroMiami
    MI
    MetroMilan
    ML
    MetroMontreal
    MT
    MetroMumbai
    MB
    MetroMunich
    MU
    MetroNewYork
    NY
    MetroOsaka
    OS
    MetroParis
    PA
    MetroPerth
    PE
    MetroPhiladelphia
    PH
    MetroRioDeJaneiro
    RJ
    MetroSaoPaulo
    SP
    MetroSeattle
    SE
    MetroSeoul
    SL
    MetroSiliconValley
    SV
    MetroSingapore
    SG
    MetroSofia
    SO
    MetroStockholm
    SK
    MetroSydney
    SY
    MetroTokyo
    TY
    MetroToronto
    TR
    MetroVancouver
    VA
    MetroWarsaw
    WA
    MetroWinnipeg
    WI
    MetroZurich
    ZH
    Amsterdam
    AM
    Ashburn
    DC
    Atlanta
    AT
    Barcelona
    BA
    Bogota
    BG
    Bordeaux
    BX
    Boston
    BO
    Brussels
    BL
    Calgary
    CL
    Canberra
    CA
    Chicago
    CH
    Dallas
    DA
    Denver
    DE
    Dubai
    DX
    Dublin
    DB
    Frankfurt
    FR
    Geneva
    GV
    Hamburg
    HH
    Helsinki
    HE
    HongKong
    HK
    Istanbul
    IL
    Kamloops
    KA
    Lisbon
    LS
    London
    LD
    LosAngeles
    LA
    Madrid
    MD
    Manchester
    MA
    Melbourne
    ME
    MexicoCity
    MX
    Miami
    MI
    Milan
    ML
    Montreal
    MT
    Mumbai
    MB
    Munich
    MU
    NewYork
    NY
    Osaka
    OS
    Paris
    PA
    Perth
    PE
    Philadelphia
    PH
    RioDeJaneiro
    RJ
    SaoPaulo
    SP
    Seattle
    SE
    Seoul
    SL
    SiliconValley
    SV
    Singapore
    SG
    Sofia
    SO
    Stockholm
    SK
    Sydney
    SY
    Tokyo
    TY
    Toronto
    TR
    Vancouver
    VA
    Warsaw
    WA
    Winnipeg
    WI
    Zurich
    ZH
    Amsterdam
    AM
    Ashburn
    DC
    Atlanta
    AT
    Barcelona
    BA
    Bogota
    BG
    Bordeaux
    BX
    Boston
    BO
    Brussels
    BL
    Calgary
    CL
    Canberra
    CA
    Chicago
    CH
    Dallas
    DA
    Denver
    DE
    Dubai
    DX
    Dublin
    DB
    Frankfurt
    FR
    Geneva
    GV
    Hamburg
    HH
    Helsinki
    HE
    HongKong
    HK
    Istanbul
    IL
    Kamloops
    KA
    Lisbon
    LS
    London
    LD
    LosAngeles
    LA
    Madrid
    MD
    Manchester
    MA
    Melbourne
    ME
    MexicoCity
    MX
    Miami
    MI
    Milan
    ML
    Montreal
    MT
    Mumbai
    MB
    Munich
    MU
    NewYork
    NY
    Osaka
    OS
    Paris
    PA
    Perth
    PE
    Philadelphia
    PH
    RioDeJaneiro
    RJ
    SaoPaulo
    SP
    Seattle
    SE
    Seoul
    SL
    SiliconValley
    SV
    Singapore
    SG
    Sofia
    SO
    Stockholm
    SK
    Sydney
    SY
    Tokyo
    TY
    Toronto
    TR
    Vancouver
    VA
    Warsaw
    WA
    Winnipeg
    WI
    Zurich
    ZH
    AMSTERDAM
    AM
    ASHBURN
    DC
    ATLANTA
    AT
    BARCELONA
    BA
    BOGOTA
    BG
    BORDEAUX
    BX
    BOSTON
    BO
    BRUSSELS
    BL
    CALGARY
    CL
    CANBERRA
    CA
    CHICAGO
    CH
    DALLAS
    DA
    DENVER
    DE
    DUBAI
    DX
    DUBLIN
    DB
    FRANKFURT
    FR
    GENEVA
    GV
    HAMBURG
    HH
    HELSINKI
    HE
    HONG_KONG
    HK
    ISTANBUL
    IL
    KAMLOOPS
    KA
    LISBON
    LS
    LONDON
    LD
    LOS_ANGELES
    LA
    MADRID
    MD
    MANCHESTER
    MA
    MELBOURNE
    ME
    MEXICO_CITY
    MX
    MIAMI
    MI
    MILAN
    ML
    MONTREAL
    MT
    MUMBAI
    MB
    MUNICH
    MU
    NEW_YORK
    NY
    OSAKA
    OS
    PARIS
    PA
    PERTH
    PE
    PHILADELPHIA
    PH
    RIO_DE_JANEIRO
    RJ
    SAO_PAULO
    SP
    SEATTLE
    SE
    SEOUL
    SL
    SILICON_VALLEY
    SV
    SINGAPORE
    SG
    SOFIA
    SO
    STOCKHOLM
    SK
    SYDNEY
    SY
    TOKYO
    TY
    TORONTO
    TR
    VANCOUVER
    VA
    WARSAW
    WA
    WINNIPEG
    WI
    ZURICH
    ZH
    "AM"
    AM
    "DC"
    DC
    "AT"
    AT
    "BA"
    BA
    "BG"
    BG
    "BX"
    BX
    "BO"
    BO
    "BL"
    BL
    "CL"
    CL
    "CA"
    CA
    "CH"
    CH
    "DA"
    DA
    "DE"
    DE
    "DX"
    DX
    "DB"
    DB
    "FR"
    FR
    "GV"
    GV
    "HH"
    HH
    "HE"
    HE
    "HK"
    HK
    "IL"
    IL
    "KA"
    KA
    "LS"
    LS
    "LD"
    LD
    "LA"
    LA
    "MD"
    MD
    "MA"
    MA
    "ME"
    ME
    "MX"
    MX
    "MI"
    MI
    "ML"
    ML
    "MT"
    MT
    "MB"
    MB
    "MU"
    MU
    "NY"
    NY
    "OS"
    OS
    "PA"
    PA
    "PE"
    PE
    "PH"
    PH
    "RJ"
    RJ
    "SP"
    SP
    "SE"
    SE
    "SL"
    SL
    "SV"
    SV
    "SG"
    SG
    "SO"
    SO
    "SK"
    SK
    "SY"
    SY
    "TY"
    TY
    "TR"
    TR
    "VA"
    VA
    "WA"
    WA
    "WI"
    WI
    "ZH"
    ZH

    NotificationsType, NotificationsTypeArgs

    All
    ALL
    ConnectionApproval
    CONNECTION_APPROVAL
    SalesNotifications
    SALES_REP_NOTIFICATIONS
    Notifications
    NOTIFICATIONS
    NotificationsTypeAll
    ALL
    NotificationsTypeConnectionApproval
    CONNECTION_APPROVAL
    NotificationsTypeSalesNotifications
    SALES_REP_NOTIFICATIONS
    NotificationsTypeNotifications
    NOTIFICATIONS
    All
    ALL
    ConnectionApproval
    CONNECTION_APPROVAL
    SalesNotifications
    SALES_REP_NOTIFICATIONS
    Notifications
    NOTIFICATIONS
    All
    ALL
    ConnectionApproval
    CONNECTION_APPROVAL
    SalesNotifications
    SALES_REP_NOTIFICATIONS
    Notifications
    NOTIFICATIONS
    ALL
    ALL
    CONNECTION_APPROVAL
    CONNECTION_APPROVAL
    SALES_NOTIFICATIONS
    SALES_REP_NOTIFICATIONS
    NOTIFICATIONS
    NOTIFICATIONS
    "ALL"
    ALL
    "CONNECTION_APPROVAL"
    CONNECTION_APPROVAL
    "SALES_REP_NOTIFICATIONS"
    SALES_REP_NOTIFICATIONS
    "NOTIFICATIONS"
    NOTIFICATIONS

    ProfileType, ProfileTypeArgs

    L2Profile
    L2_PROFILE
    L3Profile
    L3_PROFILE
    ProfileTypeL2Profile
    L2_PROFILE
    ProfileTypeL3Profile
    L3_PROFILE
    L2Profile
    L2_PROFILE
    L3Profile
    L3_PROFILE
    L2Profile
    L2_PROFILE
    L3Profile
    L3_PROFILE
    L2_PROFILE
    L2_PROFILE
    L3_PROFILE
    L3_PROFILE
    "L2_PROFILE"
    L2_PROFILE
    "L3_PROFILE"
    L3_PROFILE

    ServiceTokenType, ServiceTokenTypeArgs

    VCToken
    VC_TOKEN
    ServiceTokenTypeVCToken
    VC_TOKEN
    VCToken
    VC_TOKEN
    VCToken
    VC_TOKEN
    VC_TOKEN
    VC_TOKEN
    "VC_TOKEN"
    VC_TOKEN

    Package Details

    Repository
    equinix equinix/pulumi-equinix
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the equinix Terraform Provider.
    equinix logo
    Equinix v0.8.0 published on Tuesday, Apr 2, 2024 by Equinix