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

equinix.networkedge.DeviceLink

Explore with Pulumi AI

Resource equinix.networkedge.DeviceLink allows creation and management of Equinix Network Edge virtual network device links.

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Equinix = Pulumi.Equinix;

return await Deployment.RunAsync(() => 
{
    var test = new Equinix.NetworkEdge.DeviceLink("test", new()
    {
        Name = "test-link",
        Subnet = "192.168.40.64/27",
        ProjectId = "a86d7112-d740-4758-9c9c-31e66373746b",
        Devices = new[]
        {
            new Equinix.NetworkEdge.Inputs.DeviceLinkDeviceArgs
            {
                Id = testEquinixNetworkDevice.Uuid,
                Asn = 22111,
                InterfaceId = 6,
            },
            new Equinix.NetworkEdge.Inputs.DeviceLinkDeviceArgs
            {
                Id = testEquinixNetworkDevice.SecondaryDevice[0].Uuid,
                Asn = 22333,
                InterfaceId = 7,
            },
        },
        Links = new[]
        {
            new Equinix.NetworkEdge.Inputs.DeviceLinkLinkArgs
            {
                AccountNumber = testEquinixNetworkDevice.AccountNumber,
                SrcMetroCode = testEquinixNetworkDevice.MetroCode,
                DstMetroCode = testEquinixNetworkDevice.SecondaryDevice[0].MetroCode,
                Throughput = "50",
                ThroughputUnit = "Mbps",
            },
        },
    });

});
Copy
package main

import (
	"github.com/equinix/pulumi-equinix/sdk/go/equinix/networkedge"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := networkedge.NewDeviceLink(ctx, "test", &networkedge.DeviceLinkArgs{
			Name:      pulumi.String("test-link"),
			Subnet:    pulumi.String("192.168.40.64/27"),
			ProjectId: pulumi.String("a86d7112-d740-4758-9c9c-31e66373746b"),
			Devices: networkedge.DeviceLinkDeviceArray{
				&networkedge.DeviceLinkDeviceArgs{
					Id:          pulumi.Any(testEquinixNetworkDevice.Uuid),
					Asn:         pulumi.Int(22111),
					InterfaceId: pulumi.Int(6),
				},
				&networkedge.DeviceLinkDeviceArgs{
					Id:          pulumi.Any(testEquinixNetworkDevice.SecondaryDevice[0].Uuid),
					Asn:         pulumi.Int(22333),
					InterfaceId: pulumi.Int(7),
				},
			},
			Links: networkedge.DeviceLinkLinkArray{
				&networkedge.DeviceLinkLinkArgs{
					AccountNumber:  pulumi.Any(testEquinixNetworkDevice.AccountNumber),
					SrcMetroCode:   pulumi.Any(testEquinixNetworkDevice.MetroCode),
					DstMetroCode:   pulumi.Any(testEquinixNetworkDevice.SecondaryDevice[0].MetroCode),
					Throughput:     pulumi.String("50"),
					ThroughputUnit: pulumi.String("Mbps"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.equinix.networkedge.DeviceLink;
import com.pulumi.equinix.networkedge.DeviceLinkArgs;
import com.pulumi.equinix.networkedge.inputs.DeviceLinkDeviceArgs;
import com.pulumi.equinix.networkedge.inputs.DeviceLinkLinkArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var test = new DeviceLink("test", DeviceLinkArgs.builder()
            .name("test-link")
            .subnet("192.168.40.64/27")
            .projectId("a86d7112-d740-4758-9c9c-31e66373746b")
            .devices(            
                DeviceLinkDeviceArgs.builder()
                    .id(testEquinixNetworkDevice.uuid())
                    .asn(22111)
                    .interfaceId(6)
                    .build(),
                DeviceLinkDeviceArgs.builder()
                    .id(testEquinixNetworkDevice.secondaryDevice()[0].uuid())
                    .asn(22333)
                    .interfaceId(7)
                    .build())
            .links(DeviceLinkLinkArgs.builder()
                .accountNumber(testEquinixNetworkDevice.accountNumber())
                .srcMetroCode(testEquinixNetworkDevice.metroCode())
                .dstMetroCode(testEquinixNetworkDevice.secondaryDevice()[0].metroCode())
                .throughput("50")
                .throughputUnit("Mbps")
                .build())
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as equinix from "@equinix-labs/pulumi-equinix";

const test = new equinix.networkedge.DeviceLink("test", {
    name: "test-link",
    subnet: "192.168.40.64/27",
    projectId: "a86d7112-d740-4758-9c9c-31e66373746b",
    devices: [
        {
            id: testEquinixNetworkDevice.uuid,
            asn: 22111,
            interfaceId: 6,
        },
        {
            id: testEquinixNetworkDevice.secondaryDevice[0].uuid,
            asn: 22333,
            interfaceId: 7,
        },
    ],
    links: [{
        accountNumber: testEquinixNetworkDevice.accountNumber,
        srcMetroCode: testEquinixNetworkDevice.metroCode,
        dstMetroCode: testEquinixNetworkDevice.secondaryDevice[0].metroCode,
        throughput: "50",
        throughputUnit: "Mbps",
    }],
});
Copy
import pulumi
import pulumi_equinix as equinix

test = equinix.networkedge.DeviceLink("test",
    name="test-link",
    subnet="192.168.40.64/27",
    project_id="a86d7112-d740-4758-9c9c-31e66373746b",
    devices=[
        {
            "id": test_equinix_network_device["uuid"],
            "asn": 22111,
            "interface_id": 6,
        },
        {
            "id": test_equinix_network_device["secondaryDevice"][0]["uuid"],
            "asn": 22333,
            "interface_id": 7,
        },
    ],
    links=[{
        "account_number": test_equinix_network_device["accountNumber"],
        "src_metro_code": test_equinix_network_device["metroCode"],
        "dst_metro_code": test_equinix_network_device["secondaryDevice"][0]["metroCode"],
        "throughput": "50",
        "throughput_unit": "Mbps",
    }])
Copy
resources:
  # Example of device link with HA device pair
  # where each device is in different metro
  test:
    type: equinix:networkedge:DeviceLink
    properties:
      name: test-link
      subnet: 192.168.40.64/27
      projectId: a86d7112-d740-4758-9c9c-31e66373746b
      devices:
        - id: ${testEquinixNetworkDevice.uuid}
          asn: 22111
          interfaceId: 6
        - id: ${testEquinixNetworkDevice.secondaryDevice[0].uuid}
          asn: 22333
          interfaceId: 7
      links:
        - accountNumber: ${testEquinixNetworkDevice.accountNumber}
          srcMetroCode: ${testEquinixNetworkDevice.metroCode}
          dstMetroCode: ${testEquinixNetworkDevice.secondaryDevice[0].metroCode}
          throughput: '50'
          throughputUnit: Mbps
Copy

Create DeviceLink Resource

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

Constructor syntax

new DeviceLink(name: string, args: DeviceLinkArgs, opts?: CustomResourceOptions);
@overload
def DeviceLink(resource_name: str,
               args: DeviceLinkArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def DeviceLink(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               devices: Optional[Sequence[DeviceLinkDeviceArgs]] = None,
               links: Optional[Sequence[DeviceLinkLinkArgs]] = None,
               metro_links: Optional[Sequence[DeviceLinkMetroLinkArgs]] = None,
               name: Optional[str] = None,
               project_id: Optional[str] = None,
               redundancy_type: Optional[str] = None,
               subnet: Optional[str] = None)
func NewDeviceLink(ctx *Context, name string, args DeviceLinkArgs, opts ...ResourceOption) (*DeviceLink, error)
public DeviceLink(string name, DeviceLinkArgs args, CustomResourceOptions? opts = null)
public DeviceLink(String name, DeviceLinkArgs args)
public DeviceLink(String name, DeviceLinkArgs args, CustomResourceOptions options)
type: equinix:networkedge:DeviceLink
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DeviceLinkArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DeviceLinkArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DeviceLinkArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DeviceLinkArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DeviceLinkArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

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

var deviceLinkResource = new Equinix.NetworkEdge.DeviceLink("deviceLinkResource", new()
{
    Devices = new[]
    {
        new Equinix.NetworkEdge.Inputs.DeviceLinkDeviceArgs
        {
            Id = "string",
            Asn = 0,
            InterfaceId = 0,
            IpAddress = "string",
            Status = "string",
        },
    },
    MetroLinks = new[]
    {
        new Equinix.NetworkEdge.Inputs.DeviceLinkMetroLinkArgs
        {
            AccountNumber = "string",
            MetroCode = "string",
            Throughput = "string",
            ThroughputUnit = "string",
        },
    },
    Name = "string",
    ProjectId = "string",
    RedundancyType = "string",
    Subnet = "string",
});
Copy
example, err := networkedge.NewDeviceLink(ctx, "deviceLinkResource", &networkedge.DeviceLinkArgs{
	Devices: networkedge.DeviceLinkDeviceArray{
		&networkedge.DeviceLinkDeviceArgs{
			Id:          pulumi.String("string"),
			Asn:         pulumi.Int(0),
			InterfaceId: pulumi.Int(0),
			IpAddress:   pulumi.String("string"),
			Status:      pulumi.String("string"),
		},
	},
	MetroLinks: networkedge.DeviceLinkMetroLinkArray{
		&networkedge.DeviceLinkMetroLinkArgs{
			AccountNumber:  pulumi.String("string"),
			MetroCode:      pulumi.String("string"),
			Throughput:     pulumi.String("string"),
			ThroughputUnit: pulumi.String("string"),
		},
	},
	Name:           pulumi.String("string"),
	ProjectId:      pulumi.String("string"),
	RedundancyType: pulumi.String("string"),
	Subnet:         pulumi.String("string"),
})
Copy
var deviceLinkResource = new DeviceLink("deviceLinkResource", DeviceLinkArgs.builder()
    .devices(DeviceLinkDeviceArgs.builder()
        .id("string")
        .asn(0)
        .interfaceId(0)
        .ipAddress("string")
        .status("string")
        .build())
    .metroLinks(DeviceLinkMetroLinkArgs.builder()
        .accountNumber("string")
        .metroCode("string")
        .throughput("string")
        .throughputUnit("string")
        .build())
    .name("string")
    .projectId("string")
    .redundancyType("string")
    .subnet("string")
    .build());
Copy
device_link_resource = equinix.networkedge.DeviceLink("deviceLinkResource",
    devices=[{
        "id": "string",
        "asn": 0,
        "interface_id": 0,
        "ip_address": "string",
        "status": "string",
    }],
    metro_links=[{
        "account_number": "string",
        "metro_code": "string",
        "throughput": "string",
        "throughput_unit": "string",
    }],
    name="string",
    project_id="string",
    redundancy_type="string",
    subnet="string")
Copy
const deviceLinkResource = new equinix.networkedge.DeviceLink("deviceLinkResource", {
    devices: [{
        id: "string",
        asn: 0,
        interfaceId: 0,
        ipAddress: "string",
        status: "string",
    }],
    metroLinks: [{
        accountNumber: "string",
        metroCode: "string",
        throughput: "string",
        throughputUnit: "string",
    }],
    name: "string",
    projectId: "string",
    redundancyType: "string",
    subnet: "string",
});
Copy
type: equinix:networkedge:DeviceLink
properties:
    devices:
        - asn: 0
          id: string
          interfaceId: 0
          ipAddress: string
          status: string
    metroLinks:
        - accountNumber: string
          metroCode: string
          throughput: string
          throughputUnit: string
    name: string
    projectId: string
    redundancyType: string
    subnet: string
Copy

DeviceLink Resource Properties

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

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The DeviceLink resource accepts the following input properties:

Devices This property is required. List<DeviceLinkDevice>
definition of one or more devices belonging to the device link. See Device section below for more details.
Links List<DeviceLinkLink>
definition of one or more, inter metro, connections belonging to the device link. See Link section below for more details.

Deprecated: Links is deprecated. Please use metro links instead.

MetroLinks List<DeviceLinkMetroLink>
definition of one or more, inter metro, connections belonging to the device link. See Metro Link section below for more details.
Name string
device link name.
ProjectId Changes to this property will trigger replacement. string
Unique Identifier for the project resource where the device link is scoped to.If you leave it out, the device link will be created under the default project id of your organization.
RedundancyType Changes to this property will trigger replacement. string
Whether the connection should be created through Fabric's primary or secondary port. Supported values: PRIMARY (Default), SECONDARY, HYBRID
Subnet string
device link subnet in CIDR format. Not required for link between self configured devices.
Devices This property is required. []DeviceLinkDeviceArgs
definition of one or more devices belonging to the device link. See Device section below for more details.
Links []DeviceLinkLinkArgs
definition of one or more, inter metro, connections belonging to the device link. See Link section below for more details.

Deprecated: Links is deprecated. Please use metro links instead.

MetroLinks []DeviceLinkMetroLinkArgs
definition of one or more, inter metro, connections belonging to the device link. See Metro Link section below for more details.
Name string
device link name.
ProjectId Changes to this property will trigger replacement. string
Unique Identifier for the project resource where the device link is scoped to.If you leave it out, the device link will be created under the default project id of your organization.
RedundancyType Changes to this property will trigger replacement. string
Whether the connection should be created through Fabric's primary or secondary port. Supported values: PRIMARY (Default), SECONDARY, HYBRID
Subnet string
device link subnet in CIDR format. Not required for link between self configured devices.
devices This property is required. List<DeviceLinkDevice>
definition of one or more devices belonging to the device link. See Device section below for more details.
links List<DeviceLinkLink>
definition of one or more, inter metro, connections belonging to the device link. See Link section below for more details.

Deprecated: Links is deprecated. Please use metro links instead.

metroLinks List<DeviceLinkMetroLink>
definition of one or more, inter metro, connections belonging to the device link. See Metro Link section below for more details.
name String
device link name.
projectId Changes to this property will trigger replacement. String
Unique Identifier for the project resource where the device link is scoped to.If you leave it out, the device link will be created under the default project id of your organization.
redundancyType Changes to this property will trigger replacement. String
Whether the connection should be created through Fabric's primary or secondary port. Supported values: PRIMARY (Default), SECONDARY, HYBRID
subnet String
device link subnet in CIDR format. Not required for link between self configured devices.
devices This property is required. DeviceLinkDevice[]
definition of one or more devices belonging to the device link. See Device section below for more details.
links DeviceLinkLink[]
definition of one or more, inter metro, connections belonging to the device link. See Link section below for more details.

Deprecated: Links is deprecated. Please use metro links instead.

metroLinks DeviceLinkMetroLink[]
definition of one or more, inter metro, connections belonging to the device link. See Metro Link section below for more details.
name string
device link name.
projectId Changes to this property will trigger replacement. string
Unique Identifier for the project resource where the device link is scoped to.If you leave it out, the device link will be created under the default project id of your organization.
redundancyType Changes to this property will trigger replacement. string
Whether the connection should be created through Fabric's primary or secondary port. Supported values: PRIMARY (Default), SECONDARY, HYBRID
subnet string
device link subnet in CIDR format. Not required for link between self configured devices.
devices This property is required. Sequence[DeviceLinkDeviceArgs]
definition of one or more devices belonging to the device link. See Device section below for more details.
links Sequence[DeviceLinkLinkArgs]
definition of one or more, inter metro, connections belonging to the device link. See Link section below for more details.

Deprecated: Links is deprecated. Please use metro links instead.

metro_links Sequence[DeviceLinkMetroLinkArgs]
definition of one or more, inter metro, connections belonging to the device link. See Metro Link section below for more details.
name str
device link name.
project_id Changes to this property will trigger replacement. str
Unique Identifier for the project resource where the device link is scoped to.If you leave it out, the device link will be created under the default project id of your organization.
redundancy_type Changes to this property will trigger replacement. str
Whether the connection should be created through Fabric's primary or secondary port. Supported values: PRIMARY (Default), SECONDARY, HYBRID
subnet str
device link subnet in CIDR format. Not required for link between self configured devices.
devices This property is required. List<Property Map>
definition of one or more devices belonging to the device link. See Device section below for more details.
links List<Property Map>
definition of one or more, inter metro, connections belonging to the device link. See Link section below for more details.

Deprecated: Links is deprecated. Please use metro links instead.

metroLinks List<Property Map>
definition of one or more, inter metro, connections belonging to the device link. See Metro Link section below for more details.
name String
device link name.
projectId Changes to this property will trigger replacement. String
Unique Identifier for the project resource where the device link is scoped to.If you leave it out, the device link will be created under the default project id of your organization.
redundancyType Changes to this property will trigger replacement. String
Whether the connection should be created through Fabric's primary or secondary port. Supported values: PRIMARY (Default), SECONDARY, HYBRID
subnet String
device link subnet in CIDR format. Not required for link between self configured devices.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Status string
device link provisioning status on a given device. One of PROVISIONING, PROVISIONED, DEPROVISIONING, DEPROVISIONED, FAILED.
Uuid string
Device link unique identifier.
Id string
The provider-assigned unique ID for this managed resource.
Status string
device link provisioning status on a given device. One of PROVISIONING, PROVISIONED, DEPROVISIONING, DEPROVISIONED, FAILED.
Uuid string
Device link unique identifier.
id String
The provider-assigned unique ID for this managed resource.
status String
device link provisioning status on a given device. One of PROVISIONING, PROVISIONED, DEPROVISIONING, DEPROVISIONED, FAILED.
uuid String
Device link unique identifier.
id string
The provider-assigned unique ID for this managed resource.
status string
device link provisioning status on a given device. One of PROVISIONING, PROVISIONED, DEPROVISIONING, DEPROVISIONED, FAILED.
uuid string
Device link unique identifier.
id str
The provider-assigned unique ID for this managed resource.
status str
device link provisioning status on a given device. One of PROVISIONING, PROVISIONED, DEPROVISIONING, DEPROVISIONED, FAILED.
uuid str
Device link unique identifier.
id String
The provider-assigned unique ID for this managed resource.
status String
device link provisioning status on a given device. One of PROVISIONING, PROVISIONED, DEPROVISIONING, DEPROVISIONED, FAILED.
uuid String
Device link unique identifier.

Look up Existing DeviceLink Resource

Get an existing DeviceLink 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?: DeviceLinkState, opts?: CustomResourceOptions): DeviceLink
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        devices: Optional[Sequence[DeviceLinkDeviceArgs]] = None,
        links: Optional[Sequence[DeviceLinkLinkArgs]] = None,
        metro_links: Optional[Sequence[DeviceLinkMetroLinkArgs]] = None,
        name: Optional[str] = None,
        project_id: Optional[str] = None,
        redundancy_type: Optional[str] = None,
        status: Optional[str] = None,
        subnet: Optional[str] = None,
        uuid: Optional[str] = None) -> DeviceLink
func GetDeviceLink(ctx *Context, name string, id IDInput, state *DeviceLinkState, opts ...ResourceOption) (*DeviceLink, error)
public static DeviceLink Get(string name, Input<string> id, DeviceLinkState? state, CustomResourceOptions? opts = null)
public static DeviceLink get(String name, Output<String> id, DeviceLinkState state, CustomResourceOptions options)
resources:  _:    type: equinix:networkedge:DeviceLink    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Devices List<DeviceLinkDevice>
definition of one or more devices belonging to the device link. See Device section below for more details.
Links List<DeviceLinkLink>
definition of one or more, inter metro, connections belonging to the device link. See Link section below for more details.

Deprecated: Links is deprecated. Please use metro links instead.

MetroLinks List<DeviceLinkMetroLink>
definition of one or more, inter metro, connections belonging to the device link. See Metro Link section below for more details.
Name string
device link name.
ProjectId Changes to this property will trigger replacement. string
Unique Identifier for the project resource where the device link is scoped to.If you leave it out, the device link will be created under the default project id of your organization.
RedundancyType Changes to this property will trigger replacement. string
Whether the connection should be created through Fabric's primary or secondary port. Supported values: PRIMARY (Default), SECONDARY, HYBRID
Status string
device link provisioning status on a given device. One of PROVISIONING, PROVISIONED, DEPROVISIONING, DEPROVISIONED, FAILED.
Subnet string
device link subnet in CIDR format. Not required for link between self configured devices.
Uuid string
Device link unique identifier.
Devices []DeviceLinkDeviceArgs
definition of one or more devices belonging to the device link. See Device section below for more details.
Links []DeviceLinkLinkArgs
definition of one or more, inter metro, connections belonging to the device link. See Link section below for more details.

Deprecated: Links is deprecated. Please use metro links instead.

MetroLinks []DeviceLinkMetroLinkArgs
definition of one or more, inter metro, connections belonging to the device link. See Metro Link section below for more details.
Name string
device link name.
ProjectId Changes to this property will trigger replacement. string
Unique Identifier for the project resource where the device link is scoped to.If you leave it out, the device link will be created under the default project id of your organization.
RedundancyType Changes to this property will trigger replacement. string
Whether the connection should be created through Fabric's primary or secondary port. Supported values: PRIMARY (Default), SECONDARY, HYBRID
Status string
device link provisioning status on a given device. One of PROVISIONING, PROVISIONED, DEPROVISIONING, DEPROVISIONED, FAILED.
Subnet string
device link subnet in CIDR format. Not required for link between self configured devices.
Uuid string
Device link unique identifier.
devices List<DeviceLinkDevice>
definition of one or more devices belonging to the device link. See Device section below for more details.
links List<DeviceLinkLink>
definition of one or more, inter metro, connections belonging to the device link. See Link section below for more details.

Deprecated: Links is deprecated. Please use metro links instead.

metroLinks List<DeviceLinkMetroLink>
definition of one or more, inter metro, connections belonging to the device link. See Metro Link section below for more details.
name String
device link name.
projectId Changes to this property will trigger replacement. String
Unique Identifier for the project resource where the device link is scoped to.If you leave it out, the device link will be created under the default project id of your organization.
redundancyType Changes to this property will trigger replacement. String
Whether the connection should be created through Fabric's primary or secondary port. Supported values: PRIMARY (Default), SECONDARY, HYBRID
status String
device link provisioning status on a given device. One of PROVISIONING, PROVISIONED, DEPROVISIONING, DEPROVISIONED, FAILED.
subnet String
device link subnet in CIDR format. Not required for link between self configured devices.
uuid String
Device link unique identifier.
devices DeviceLinkDevice[]
definition of one or more devices belonging to the device link. See Device section below for more details.
links DeviceLinkLink[]
definition of one or more, inter metro, connections belonging to the device link. See Link section below for more details.

Deprecated: Links is deprecated. Please use metro links instead.

metroLinks DeviceLinkMetroLink[]
definition of one or more, inter metro, connections belonging to the device link. See Metro Link section below for more details.
name string
device link name.
projectId Changes to this property will trigger replacement. string
Unique Identifier for the project resource where the device link is scoped to.If you leave it out, the device link will be created under the default project id of your organization.
redundancyType Changes to this property will trigger replacement. string
Whether the connection should be created through Fabric's primary or secondary port. Supported values: PRIMARY (Default), SECONDARY, HYBRID
status string
device link provisioning status on a given device. One of PROVISIONING, PROVISIONED, DEPROVISIONING, DEPROVISIONED, FAILED.
subnet string
device link subnet in CIDR format. Not required for link between self configured devices.
uuid string
Device link unique identifier.
devices Sequence[DeviceLinkDeviceArgs]
definition of one or more devices belonging to the device link. See Device section below for more details.
links Sequence[DeviceLinkLinkArgs]
definition of one or more, inter metro, connections belonging to the device link. See Link section below for more details.

Deprecated: Links is deprecated. Please use metro links instead.

metro_links Sequence[DeviceLinkMetroLinkArgs]
definition of one or more, inter metro, connections belonging to the device link. See Metro Link section below for more details.
name str
device link name.
project_id Changes to this property will trigger replacement. str
Unique Identifier for the project resource where the device link is scoped to.If you leave it out, the device link will be created under the default project id of your organization.
redundancy_type Changes to this property will trigger replacement. str
Whether the connection should be created through Fabric's primary or secondary port. Supported values: PRIMARY (Default), SECONDARY, HYBRID
status str
device link provisioning status on a given device. One of PROVISIONING, PROVISIONED, DEPROVISIONING, DEPROVISIONED, FAILED.
subnet str
device link subnet in CIDR format. Not required for link between self configured devices.
uuid str
Device link unique identifier.
devices List<Property Map>
definition of one or more devices belonging to the device link. See Device section below for more details.
links List<Property Map>
definition of one or more, inter metro, connections belonging to the device link. See Link section below for more details.

Deprecated: Links is deprecated. Please use metro links instead.

metroLinks List<Property Map>
definition of one or more, inter metro, connections belonging to the device link. See Metro Link section below for more details.
name String
device link name.
projectId Changes to this property will trigger replacement. String
Unique Identifier for the project resource where the device link is scoped to.If you leave it out, the device link will be created under the default project id of your organization.
redundancyType Changes to this property will trigger replacement. String
Whether the connection should be created through Fabric's primary or secondary port. Supported values: PRIMARY (Default), SECONDARY, HYBRID
status String
device link provisioning status on a given device. One of PROVISIONING, PROVISIONED, DEPROVISIONING, DEPROVISIONED, FAILED.
subnet String
device link subnet in CIDR format. Not required for link between self configured devices.
uuid String
Device link unique identifier.

Supporting Types

DeviceLinkDevice
, DeviceLinkDeviceArgs

Id This property is required. string
Device identifier.
Asn int
Device ASN number. Not required for self configured devices.
InterfaceId Changes to this property will trigger replacement. int
Device network interface identifier to use for device link connection.
IpAddress string
IP address from device link subnet that was assigned to the device
Status string
device link provisioning status on a given device. One of PROVISIONING, PROVISIONED, DEPROVISIONING, DEPROVISIONED, FAILED.
Id This property is required. string
Device identifier.
Asn int
Device ASN number. Not required for self configured devices.
InterfaceId Changes to this property will trigger replacement. int
Device network interface identifier to use for device link connection.
IpAddress string
IP address from device link subnet that was assigned to the device
Status string
device link provisioning status on a given device. One of PROVISIONING, PROVISIONED, DEPROVISIONING, DEPROVISIONED, FAILED.
id This property is required. String
Device identifier.
asn Integer
Device ASN number. Not required for self configured devices.
interfaceId Changes to this property will trigger replacement. Integer
Device network interface identifier to use for device link connection.
ipAddress String
IP address from device link subnet that was assigned to the device
status String
device link provisioning status on a given device. One of PROVISIONING, PROVISIONED, DEPROVISIONING, DEPROVISIONED, FAILED.
id This property is required. string
Device identifier.
asn number
Device ASN number. Not required for self configured devices.
interfaceId Changes to this property will trigger replacement. number
Device network interface identifier to use for device link connection.
ipAddress string
IP address from device link subnet that was assigned to the device
status string
device link provisioning status on a given device. One of PROVISIONING, PROVISIONED, DEPROVISIONING, DEPROVISIONED, FAILED.
id This property is required. str
Device identifier.
asn int
Device ASN number. Not required for self configured devices.
interface_id Changes to this property will trigger replacement. int
Device network interface identifier to use for device link connection.
ip_address str
IP address from device link subnet that was assigned to the device
status str
device link provisioning status on a given device. One of PROVISIONING, PROVISIONED, DEPROVISIONING, DEPROVISIONED, FAILED.
id This property is required. String
Device identifier.
asn Number
Device ASN number. Not required for self configured devices.
interfaceId Changes to this property will trigger replacement. Number
Device network interface identifier to use for device link connection.
ipAddress String
IP address from device link subnet that was assigned to the device
status String
device link provisioning status on a given device. One of PROVISIONING, PROVISIONED, DEPROVISIONING, DEPROVISIONED, FAILED.
AccountNumber This property is required. string
billing account number to be used for connection charges
DstMetroCode This property is required. string
connection destination metro code.
SrcMetroCode This property is required. string
connection source metro code.
Throughput This property is required. string
connection throughput.
ThroughputUnit This property is required. string
connection throughput unit (Mbps or Gbps).
DstZoneCode string
connection destination zone code is not required.

Deprecated: DestinationZoneCode is not required

SrcZoneCode string
connection source zone code is not required.

Deprecated: SourceZoneCode is not required

AccountNumber This property is required. string
billing account number to be used for connection charges
DstMetroCode This property is required. string
connection destination metro code.
SrcMetroCode This property is required. string
connection source metro code.
Throughput This property is required. string
connection throughput.
ThroughputUnit This property is required. string
connection throughput unit (Mbps or Gbps).
DstZoneCode string
connection destination zone code is not required.

Deprecated: DestinationZoneCode is not required

SrcZoneCode string
connection source zone code is not required.

Deprecated: SourceZoneCode is not required

accountNumber This property is required. String
billing account number to be used for connection charges
dstMetroCode This property is required. String
connection destination metro code.
srcMetroCode This property is required. String
connection source metro code.
throughput This property is required. String
connection throughput.
throughputUnit This property is required. String
connection throughput unit (Mbps or Gbps).
dstZoneCode String
connection destination zone code is not required.

Deprecated: DestinationZoneCode is not required

srcZoneCode String
connection source zone code is not required.

Deprecated: SourceZoneCode is not required

accountNumber This property is required. string
billing account number to be used for connection charges
dstMetroCode This property is required. string
connection destination metro code.
srcMetroCode This property is required. string
connection source metro code.
throughput This property is required. string
connection throughput.
throughputUnit This property is required. string
connection throughput unit (Mbps or Gbps).
dstZoneCode string
connection destination zone code is not required.

Deprecated: DestinationZoneCode is not required

srcZoneCode string
connection source zone code is not required.

Deprecated: SourceZoneCode is not required

account_number This property is required. str
billing account number to be used for connection charges
dst_metro_code This property is required. str
connection destination metro code.
src_metro_code This property is required. str
connection source metro code.
throughput This property is required. str
connection throughput.
throughput_unit This property is required. str
connection throughput unit (Mbps or Gbps).
dst_zone_code str
connection destination zone code is not required.

Deprecated: DestinationZoneCode is not required

src_zone_code str
connection source zone code is not required.

Deprecated: SourceZoneCode is not required

accountNumber This property is required. String
billing account number to be used for connection charges
dstMetroCode This property is required. String
connection destination metro code.
srcMetroCode This property is required. String
connection source metro code.
throughput This property is required. String
connection throughput.
throughputUnit This property is required. String
connection throughput unit (Mbps or Gbps).
dstZoneCode String
connection destination zone code is not required.

Deprecated: DestinationZoneCode is not required

srcZoneCode String
connection source zone code is not required.

Deprecated: SourceZoneCode is not required

AccountNumber This property is required. string
billing account number to be used for connection charges
MetroCode This property is required. string
connection metro code.
Throughput This property is required. string
connection throughput.
ThroughputUnit This property is required. string
connection throughput unit (Mbps or Gbps).
AccountNumber This property is required. string
billing account number to be used for connection charges
MetroCode This property is required. string
connection metro code.
Throughput This property is required. string
connection throughput.
ThroughputUnit This property is required. string
connection throughput unit (Mbps or Gbps).
accountNumber This property is required. String
billing account number to be used for connection charges
metroCode This property is required. String
connection metro code.
throughput This property is required. String
connection throughput.
throughputUnit This property is required. String
connection throughput unit (Mbps or Gbps).
accountNumber This property is required. string
billing account number to be used for connection charges
metroCode This property is required. string
connection metro code.
throughput This property is required. string
connection throughput.
throughputUnit This property is required. string
connection throughput unit (Mbps or Gbps).
account_number This property is required. str
billing account number to be used for connection charges
metro_code This property is required. str
connection metro code.
throughput This property is required. str
connection throughput.
throughput_unit This property is required. str
connection throughput unit (Mbps or Gbps).
accountNumber This property is required. String
billing account number to be used for connection charges
metroCode This property is required. String
connection metro code.
throughput This property is required. String
connection throughput.
throughputUnit This property is required. String
connection throughput unit (Mbps or Gbps).

Package Details

Repository
equinix equinix/pulumi-equinix
License
Apache-2.0
Notes
This Pulumi package is based on the equinix Terraform Provider.