equinix.networkedge.Device
Explore with Pulumi AI
Resource equinix.networkedge.Device
allows creation and management of Equinix Network Edge virtual
network devices.
Network Edge virtual network devices can be created in two modes:
- managed - (default) Where Equinix manages connectivity and services in the device and customer gets limited access to the device.
- self-configured - Where customer provisions and manages own services in the device with less restricted access. Some device types are offered only in this mode.
In addition to management modes, there are two software license modes available:
- subscription - Where Equinix provides software license, including end-to-end support, and bills for the service respectively.
- BYOL - [bring your own license] Where customer brings his own, already procured device
software license. There are no charges associated with such license. It is the only licensing mode
for
self-configured
devices.
Example Usage
using System.Collections.Generic;
using Pulumi;
using Equinix = Pulumi.Equinix;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var accountName = config.Require("accountName");
var licenseToken = config.Require("licenseToken");
var sshUserName = config.Require("sshUserName");
var sshKeyName = config.Require("sshKeyName");
var aclTemplateId = config.Require("aclTemplateId");
var metro = config.Get("metro") ?? "SV";
var devicePackageCode = config.Get("devicePackageCode") ?? "network-essentials";
var deviceVersion = config.Get("deviceVersion") ?? "17.06.01a";
var sizeInCores = config.GetNumber("sizeInCores") ?? 2;
var termLength = config.GetNumber("termLength") ?? 6;
var additionalBandwidth = config.GetNumber("additionalBandwidth") ?? 5;
var accountNum = Equinix.NetworkEdge.GetAccount.Invoke(new()
{
Name = accountName,
MetroCode = metro,
}).Apply(invoke => invoke.Number);
var c8KRouter = new Equinix.NetworkEdge.Device("c8kRouter", new()
{
Name = "catalystRouter",
MetroCode = metro,
TypeCode = "C8000V",
SelfManaged = true,
Byol = true,
PackageCode = devicePackageCode,
Notifications = new[]
{
"example@equinix.com",
},
Hostname = "C8KV",
AccountNumber = accountNum,
Version = deviceVersion,
CoreCount = sizeInCores,
TermLength = termLength,
LicenseToken = licenseToken,
AdditionalBandwidth = additionalBandwidth,
SshKey = new Equinix.NetworkEdge.Inputs.DeviceSshKeyArgs
{
Username = sshUserName,
KeyName = sshKeyName,
},
AclTemplateId = aclTemplateId,
});
return new Dictionary<string, object?>
{
["routerId"] = c8KRouter.Id,
["provisionStatus"] = c8KRouter.Status,
["licenseStatus"] = c8KRouter.LicenseStatus,
["sshIpAddress"] = c8KRouter.SshIpAddress,
};
});
package main
import (
"github.com/equinix/pulumi-equinix/sdk/go/equinix/networkedge"
"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, "")
accountName := cfg.Require("accountName")
licenseToken := cfg.Require("licenseToken")
sshUserName := cfg.Require("sshUserName")
sshKeyName := cfg.Require("sshKeyName")
aclTemplateId := cfg.Require("aclTemplateId")
metro := "SV"
if param := cfg.Get("metro"); param != "" {
metro = param
}
devicePackageCode := "network-essentials"
if param := cfg.Get("devicePackageCode"); param != "" {
devicePackageCode = param
}
deviceVersion := "17.06.01a"
if param := cfg.Get("deviceVersion"); param != "" {
deviceVersion = param
}
sizeInCores := 2
if param := cfg.GetInt("sizeInCores"); param != 0 {
sizeInCores = param
}
termLength := 6
if param := cfg.GetInt("termLength"); param != 0 {
termLength = param
}
additionalBandwidth := 5
if param := cfg.GetInt("additionalBandwidth"); param != 0 {
additionalBandwidth = param
}
accountNum := networkedge.GetAccount(ctx, &networkedge.GetAccountArgs{
Name: pulumi.StringRef(accountName),
MetroCode: metro,
}, nil).Number
c8KRouter, err := networkedge.NewDevice(ctx, "c8kRouter", &networkedge.DeviceArgs{
Name: pulumi.String("catalystRouter"),
MetroCode: pulumi.String(metro),
TypeCode: pulumi.String("C8000V"),
SelfManaged: pulumi.Bool(true),
Byol: pulumi.Bool(true),
PackageCode: pulumi.String(devicePackageCode),
Notifications: pulumi.StringArray{
pulumi.String("example@equinix.com"),
},
Hostname: pulumi.String("C8KV"),
AccountNumber: *pulumi.String(accountNum),
Version: pulumi.Any(deviceVersion),
CoreCount: pulumi.Int(sizeInCores),
TermLength: pulumi.Int(termLength),
LicenseToken: pulumi.String(licenseToken),
AdditionalBandwidth: pulumi.Int(additionalBandwidth),
SshKey: &networkedge.DeviceSshKeyArgs{
Username: pulumi.String(sshUserName),
KeyName: pulumi.String(sshKeyName),
},
AclTemplateId: pulumi.String(aclTemplateId),
})
if err != nil {
return err
}
ctx.Export("routerId", c8KRouter.ID())
ctx.Export("provisionStatus", c8KRouter.Status)
ctx.Export("licenseStatus", c8KRouter.LicenseStatus)
ctx.Export("sshIpAddress", c8KRouter.SshIpAddress)
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.equinix.pulumi.networkedge.Device;
import com.equinix.pulumi.networkedge.DeviceArgs;
import com.equinix.pulumi.networkedge.inputs.DeviceSshKeyArgs;
import com.equinix.pulumi.networkedge.inputs.GetAccountArgs;
import com.equinix.pulumi.networkedge.NetworkedgeFunctions;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var config = ctx.config();
final var accountName = config.get("accountName").get();
final var licenseToken = config.get("licenseToken").get();
final var sshUserName = config.get("sshUserName").get();
final var sshKeyName = config.get("sshKeyName").get();
final var aclTemplateId = config.get("aclTemplateId").get();
final var metro = config.get("metro").orElse("SV");
final var devicePackageCode = config.get("devicePackageCode").orElse("network-essentials");
final var deviceVersion = config.get("deviceVersion").orElse("17.06.01a");
final var sizeInCores = Integer.parseInt(config.get("sizeInCores").orElse("2"));
final var termLength = Integer.parseInt(config.get("termLength").orElse("6"));
final var additionalBandwidth = Integer.parseInt(config.get("additionalBandwidth").orElse("5"));
final var accountNum = NetworkedgeFunctions.getAccount(GetAccountArgs.builder()
.name(accountName)
.metroCode(metro)
.build()).applyValue(account -> account.number());
var c8KRouter = new Device("c8KRouter", DeviceArgs.builder()
.name("catalystRouter")
.metroCode(metro)
.typeCode("C8000V")
.selfManaged(true)
.byol(true)
.packageCode(devicePackageCode)
.notifications("example@equinix.com")
.hostname("C8KV")
.accountNumber(accountNum)
.version(deviceVersion)
.coreCount(sizeInCores)
.termLength(termLength)
.licenseToken(licenseToken)
.additionalBandwidth(additionalBandwidth)
.sshKey(DeviceSshKeyArgs.builder()
.username(sshUserName)
.keyName(sshKeyName)
.build())
.aclTemplateId(aclTemplateId)
.build());
ctx.export("routerId", c8KRouter.id());
ctx.export("provisionStatus", c8KRouter.status());
ctx.export("licenseStatus", c8KRouter.licenseStatus());
ctx.export("sshIpAddress", c8KRouter.sshIpAddress());
}
}
import pulumi
import pulumi_equinix as equinix
config = pulumi.Config()
account_name = config.require("accountName")
license_token = config.require("licenseToken")
ssh_user_name = config.require("sshUserName")
ssh_key_name = config.require("sshKeyName")
acl_template_id = config.require("aclTemplateId")
metro = config.get("metro")
if metro is None:
metro = "SV"
device_package_code = config.get("devicePackageCode")
if device_package_code is None:
device_package_code = "network-essentials"
device_version = config.get("deviceVersion")
if device_version is None:
device_version = "17.06.01a"
size_in_cores = config.get_int("sizeInCores")
if size_in_cores is None:
size_in_cores = 2
term_length = config.get_int("termLength")
if term_length is None:
term_length = 6
additional_bandwidth = config.get_int("additionalBandwidth")
if additional_bandwidth is None:
additional_bandwidth = 5
account_num = equinix.networkedge.get_account(name=account_name,
metro_code=metro).number
c8_k_router = equinix.networkedge.Device("c8kRouter",
name="catalystRouter",
metro_code=metro,
type_code="C8000V",
self_managed=True,
byol=True,
package_code=device_package_code,
notifications=["example@equinix.com"],
hostname="C8KV",
account_number=account_num,
version=device_version,
core_count=size_in_cores,
term_length=term_length,
license_token=license_token,
additional_bandwidth=additional_bandwidth,
ssh_key=equinix.networkedge.DeviceSshKeyArgs(
username=ssh_user_name,
key_name=ssh_key_name,
),
acl_template_id=acl_template_id)
pulumi.export("routerId", c8_k_router.id)
pulumi.export("provisionStatus", c8_k_router.status)
pulumi.export("licenseStatus", c8_k_router.license_status)
pulumi.export("sshIpAddress", c8_k_router.ssh_ip_address)
import * as pulumi from "@pulumi/pulumi";
import * as equinix from "@equinix-labs/pulumi-equinix";
const config = new pulumi.Config();
const accountName = config.require("accountName");
const licenseToken = config.require("licenseToken");
const sshUserName = config.require("sshUserName");
const sshKeyName = config.require("sshKeyName");
const aclTemplateId = config.require("aclTemplateId");
const metro = config.get("metro") || "SV";
const devicePackageCode = config.get("devicePackageCode") || "network-essentials";
const deviceVersion = config.get("deviceVersion") || "17.06.01a";
const sizeInCores = config.getNumber("sizeInCores") || 2;
const termLength = config.getNumber("termLength") || 6;
const additionalBandwidth = config.getNumber("additionalBandwidth") || 5;
const accountNum = equinix.networkedge.getAccount({
name: accountName,
metroCode: metro,
}).then(invoke => invoke.number);
const c8KRouter = new equinix.networkedge.Device("c8kRouter", {
name: "catalystRouter",
metroCode: metro,
typeCode: "C8000V",
selfManaged: true,
byol: true,
packageCode: devicePackageCode,
notifications: ["example@equinix.com"],
hostname: "C8KV",
accountNumber: accountNum,
version: deviceVersion,
coreCount: sizeInCores,
termLength: termLength,
licenseToken: licenseToken,
additionalBandwidth: additionalBandwidth,
sshKey: {
username: sshUserName,
keyName: sshKeyName,
},
aclTemplateId: aclTemplateId,
});
export const routerId = c8KRouter.id;
export const provisionStatus = c8KRouter.status;
export const licenseStatus = c8KRouter.licenseStatus;
export const sshIpAddress = c8KRouter.sshIpAddress;
config:
accountName:
type: string
licenseToken:
type: string
sshUserName:
type: string
sshKeyName:
type: string
aclTemplateId:
type: string
metro:
type: string
default: SV
devicePackageCode:
type: string
default: network-essentials
deviceVersion:
type: string
default: 17.06.01a
sizeInCores:
type: integer
default: 2
termLength:
type: integer
default: 6
additionalBandwidth:
type: integer
default: 5
variables:
accountNum:
fn::invoke:
function: equinix:networkedge:getAccount
arguments:
name: ${accountName}
metroCode: ${metro}
return: number
resources:
c8kRouter:
type: equinix:networkedge:Device
properties:
name: catalystRouter
metroCode: ${metro}
typeCode: C8000V
selfManaged: true
byol: true
packageCode: ${devicePackageCode}
notifications:
- "example@equinix.com"
hostname: C8KV
accountNumber: ${accountNum}
version: ${deviceVersion}
coreCount: ${sizeInCores}
termLength: ${termLength}
licenseToken: ${licenseToken}
additionalBandwidth: ${additionalBandwidth}
sshKey:
username: ${sshUserName}
keyName: ${sshKeyName}
aclTemplateId: ${aclTemplateId}
outputs:
routerId: ${c8kRouter.id}
provisionStatus: ${c8kRouter.status}
licenseStatus: ${c8kRouter.licenseStatus}
sshIpAddress: ${c8kRouter.sshIpAddress}
Create Device Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Device(name: string, args: DeviceArgs, opts?: CustomResourceOptions);
@overload
def Device(resource_name: str,
args: DeviceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Device(resource_name: str,
opts: Optional[ResourceOptions] = None,
metro_code: Optional[str] = None,
version: Optional[str] = None,
type_code: Optional[str] = None,
term_length: Optional[int] = None,
package_code: Optional[str] = None,
notifications: Optional[Sequence[str]] = None,
account_number: Optional[str] = None,
core_count: Optional[int] = None,
name: Optional[str] = None,
cloud_init_file_id: Optional[str] = None,
interface_count: Optional[int] = None,
license_file: Optional[str] = None,
license_file_id: Optional[str] = None,
license_token: Optional[str] = None,
diverse_device_id: Optional[str] = None,
mgmt_acl_template_uuid: Optional[str] = None,
connectivity: Optional[str] = None,
cluster_details: Optional[DeviceClusterDetailsArgs] = None,
order_reference: Optional[str] = None,
hostname: Optional[str] = None,
project_id: Optional[str] = None,
purchase_order_number: Optional[str] = None,
secondary_device: Optional[DeviceSecondaryDeviceArgs] = None,
self_managed: Optional[bool] = None,
ssh_key: Optional[DeviceSshKeyArgs] = None,
byol: Optional[bool] = None,
throughput: Optional[int] = None,
throughput_unit: Optional[Union[str, ThroughputUnit]] = None,
additional_bandwidth: Optional[int] = None,
vendor_configuration: Optional[Mapping[str, str]] = None,
acl_template_id: Optional[str] = None,
wan_interface_id: Optional[str] = None)
func NewDevice(ctx *Context, name string, args DeviceArgs, opts ...ResourceOption) (*Device, error)
public Device(string name, DeviceArgs args, CustomResourceOptions? opts = null)
public Device(String name, DeviceArgs args)
public Device(String name, DeviceArgs args, CustomResourceOptions options)
type: equinix:networkedge:Device
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 DeviceArgs
- 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 DeviceArgs
- 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 DeviceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DeviceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DeviceArgs
- 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 equinixDeviceResource = new Equinix.NetworkEdge.Device("equinixDeviceResource", new()
{
MetroCode = "string",
Version = "string",
TypeCode = "string",
TermLength = 0,
PackageCode = "string",
Notifications = new[]
{
"string",
},
AccountNumber = "string",
CoreCount = 0,
Name = "string",
CloudInitFileId = "string",
InterfaceCount = 0,
LicenseFile = "string",
LicenseFileId = "string",
LicenseToken = "string",
DiverseDeviceId = "string",
MgmtAclTemplateUuid = "string",
Connectivity = "string",
ClusterDetails = new Equinix.NetworkEdge.Inputs.DeviceClusterDetailsArgs
{
ClusterName = "string",
Node0 = new Equinix.NetworkEdge.Inputs.DeviceClusterDetailsNode0Args
{
LicenseFileId = "string",
LicenseToken = "string",
Name = "string",
Uuid = "string",
VendorConfiguration = new Equinix.NetworkEdge.Inputs.DeviceClusterDetailsNode0VendorConfigurationArgs
{
ActivationKey = "string",
AdminPassword = "string",
Controller1 = "string",
ControllerFqdn = "string",
Hostname = "string",
LicenseId = "string",
LicenseKey = "string",
PrivateAddress = "string",
PrivateCidrMask = "string",
PrivateGateway = "string",
RootPassword = "string",
},
},
Node1 = new Equinix.NetworkEdge.Inputs.DeviceClusterDetailsNode1Args
{
LicenseFileId = "string",
LicenseToken = "string",
Name = "string",
Uuid = "string",
VendorConfiguration = new Equinix.NetworkEdge.Inputs.DeviceClusterDetailsNode1VendorConfigurationArgs
{
ActivationKey = "string",
AdminPassword = "string",
Controller1 = "string",
ControllerFqdn = "string",
Hostname = "string",
LicenseId = "string",
LicenseKey = "string",
PrivateAddress = "string",
PrivateCidrMask = "string",
PrivateGateway = "string",
RootPassword = "string",
},
},
ClusterId = "string",
NumOfNodes = 0,
},
OrderReference = "string",
Hostname = "string",
ProjectId = "string",
PurchaseOrderNumber = "string",
SecondaryDevice = new Equinix.NetworkEdge.Inputs.DeviceSecondaryDeviceArgs
{
AccountNumber = "string",
Notifications = new[]
{
"string",
},
Name = "string",
MetroCode = "string",
Interfaces = new[]
{
new Equinix.NetworkEdge.Inputs.DeviceSecondaryDeviceInterfaceArgs
{
AssignedType = "string",
Id = 0,
IpAddress = "string",
MacAddress = "string",
Name = "string",
OperationalStatus = "string",
Status = "string",
Type = "string",
},
},
AclTemplateId = "string",
Ibx = "string",
CloudInitFileId = "string",
LicenseFile = "string",
LicenseFileId = "string",
LicenseStatus = "string",
LicenseToken = "string",
Asn = 0,
MgmtAclTemplateUuid = "string",
AdditionalBandwidth = 0,
Hostname = "string",
ProjectId = "string",
RedundancyType = "string",
RedundantId = "string",
Region = "string",
SshIpAddress = "string",
SshIpFqdn = "string",
SshKey = new Equinix.NetworkEdge.Inputs.DeviceSecondaryDeviceSshKeyArgs
{
KeyName = "string",
Username = "string",
},
Status = "string",
Uuid = "string",
VendorConfiguration =
{
{ "string", "string" },
},
WanInterfaceId = "string",
ZoneCode = "string",
},
SelfManaged = false,
SshKey = new Equinix.NetworkEdge.Inputs.DeviceSshKeyArgs
{
KeyName = "string",
Username = "string",
},
Byol = false,
Throughput = 0,
ThroughputUnit = "string",
AdditionalBandwidth = 0,
VendorConfiguration =
{
{ "string", "string" },
},
AclTemplateId = "string",
WanInterfaceId = "string",
});
example, err := networkedge.NewDevice(ctx, "equinixDeviceResource", &networkedge.DeviceArgs{
MetroCode: pulumi.String("string"),
Version: pulumi.String("string"),
TypeCode: pulumi.String("string"),
TermLength: pulumi.Int(0),
PackageCode: pulumi.String("string"),
Notifications: pulumi.StringArray{
pulumi.String("string"),
},
AccountNumber: pulumi.String("string"),
CoreCount: pulumi.Int(0),
Name: pulumi.String("string"),
CloudInitFileId: pulumi.String("string"),
InterfaceCount: pulumi.Int(0),
LicenseFile: pulumi.String("string"),
LicenseFileId: pulumi.String("string"),
LicenseToken: pulumi.String("string"),
DiverseDeviceId: pulumi.String("string"),
MgmtAclTemplateUuid: pulumi.String("string"),
Connectivity: pulumi.String("string"),
ClusterDetails: &networkedge.DeviceClusterDetailsArgs{
ClusterName: pulumi.String("string"),
Node0: &networkedge.DeviceClusterDetailsNode0Args{
LicenseFileId: pulumi.String("string"),
LicenseToken: pulumi.String("string"),
Name: pulumi.String("string"),
Uuid: pulumi.String("string"),
VendorConfiguration: &networkedge.DeviceClusterDetailsNode0VendorConfigurationArgs{
ActivationKey: pulumi.String("string"),
AdminPassword: pulumi.String("string"),
Controller1: pulumi.String("string"),
ControllerFqdn: pulumi.String("string"),
Hostname: pulumi.String("string"),
LicenseId: pulumi.String("string"),
LicenseKey: pulumi.String("string"),
PrivateAddress: pulumi.String("string"),
PrivateCidrMask: pulumi.String("string"),
PrivateGateway: pulumi.String("string"),
RootPassword: pulumi.String("string"),
},
},
Node1: &networkedge.DeviceClusterDetailsNode1Args{
LicenseFileId: pulumi.String("string"),
LicenseToken: pulumi.String("string"),
Name: pulumi.String("string"),
Uuid: pulumi.String("string"),
VendorConfiguration: &networkedge.DeviceClusterDetailsNode1VendorConfigurationArgs{
ActivationKey: pulumi.String("string"),
AdminPassword: pulumi.String("string"),
Controller1: pulumi.String("string"),
ControllerFqdn: pulumi.String("string"),
Hostname: pulumi.String("string"),
LicenseId: pulumi.String("string"),
LicenseKey: pulumi.String("string"),
PrivateAddress: pulumi.String("string"),
PrivateCidrMask: pulumi.String("string"),
PrivateGateway: pulumi.String("string"),
RootPassword: pulumi.String("string"),
},
},
ClusterId: pulumi.String("string"),
NumOfNodes: pulumi.Int(0),
},
OrderReference: pulumi.String("string"),
Hostname: pulumi.String("string"),
ProjectId: pulumi.String("string"),
PurchaseOrderNumber: pulumi.String("string"),
SecondaryDevice: &networkedge.DeviceSecondaryDeviceArgs{
AccountNumber: pulumi.String("string"),
Notifications: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
MetroCode: pulumi.String("string"),
Interfaces: networkedge.DeviceSecondaryDeviceInterfaceArray{
&networkedge.DeviceSecondaryDeviceInterfaceArgs{
AssignedType: pulumi.String("string"),
Id: pulumi.Int(0),
IpAddress: pulumi.String("string"),
MacAddress: pulumi.String("string"),
Name: pulumi.String("string"),
OperationalStatus: pulumi.String("string"),
Status: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
AclTemplateId: pulumi.String("string"),
Ibx: pulumi.String("string"),
CloudInitFileId: pulumi.String("string"),
LicenseFile: pulumi.String("string"),
LicenseFileId: pulumi.String("string"),
LicenseStatus: pulumi.String("string"),
LicenseToken: pulumi.String("string"),
Asn: pulumi.Int(0),
MgmtAclTemplateUuid: pulumi.String("string"),
AdditionalBandwidth: pulumi.Int(0),
Hostname: pulumi.String("string"),
ProjectId: pulumi.String("string"),
RedundancyType: pulumi.String("string"),
RedundantId: pulumi.String("string"),
Region: pulumi.String("string"),
SshIpAddress: pulumi.String("string"),
SshIpFqdn: pulumi.String("string"),
SshKey: &networkedge.DeviceSecondaryDeviceSshKeyArgs{
KeyName: pulumi.String("string"),
Username: pulumi.String("string"),
},
Status: pulumi.String("string"),
Uuid: pulumi.String("string"),
VendorConfiguration: pulumi.StringMap{
"string": pulumi.String("string"),
},
WanInterfaceId: pulumi.String("string"),
ZoneCode: pulumi.String("string"),
},
SelfManaged: pulumi.Bool(false),
SshKey: &networkedge.DeviceSshKeyArgs{
KeyName: pulumi.String("string"),
Username: pulumi.String("string"),
},
Byol: pulumi.Bool(false),
Throughput: pulumi.Int(0),
ThroughputUnit: pulumi.String("string"),
AdditionalBandwidth: pulumi.Int(0),
VendorConfiguration: pulumi.StringMap{
"string": pulumi.String("string"),
},
AclTemplateId: pulumi.String("string"),
WanInterfaceId: pulumi.String("string"),
})
var equinixDeviceResource = new Device("equinixDeviceResource", DeviceArgs.builder()
.metroCode("string")
.version("string")
.typeCode("string")
.termLength(0)
.packageCode("string")
.notifications("string")
.accountNumber("string")
.coreCount(0)
.name("string")
.cloudInitFileId("string")
.interfaceCount(0)
.licenseFile("string")
.licenseFileId("string")
.licenseToken("string")
.diverseDeviceId("string")
.mgmtAclTemplateUuid("string")
.connectivity("string")
.clusterDetails(DeviceClusterDetailsArgs.builder()
.clusterName("string")
.node0(DeviceClusterDetailsNode0Args.builder()
.licenseFileId("string")
.licenseToken("string")
.name("string")
.uuid("string")
.vendorConfiguration(DeviceClusterDetailsNode0VendorConfigurationArgs.builder()
.activationKey("string")
.adminPassword("string")
.controller1("string")
.controllerFqdn("string")
.hostname("string")
.licenseId("string")
.licenseKey("string")
.privateAddress("string")
.privateCidrMask("string")
.privateGateway("string")
.rootPassword("string")
.build())
.build())
.node1(DeviceClusterDetailsNode1Args.builder()
.licenseFileId("string")
.licenseToken("string")
.name("string")
.uuid("string")
.vendorConfiguration(DeviceClusterDetailsNode1VendorConfigurationArgs.builder()
.activationKey("string")
.adminPassword("string")
.controller1("string")
.controllerFqdn("string")
.hostname("string")
.licenseId("string")
.licenseKey("string")
.privateAddress("string")
.privateCidrMask("string")
.privateGateway("string")
.rootPassword("string")
.build())
.build())
.clusterId("string")
.numOfNodes(0)
.build())
.orderReference("string")
.hostname("string")
.projectId("string")
.purchaseOrderNumber("string")
.secondaryDevice(DeviceSecondaryDeviceArgs.builder()
.accountNumber("string")
.notifications("string")
.name("string")
.metroCode("string")
.interfaces(DeviceSecondaryDeviceInterfaceArgs.builder()
.assignedType("string")
.id(0)
.ipAddress("string")
.macAddress("string")
.name("string")
.operationalStatus("string")
.status("string")
.type("string")
.build())
.aclTemplateId("string")
.ibx("string")
.cloudInitFileId("string")
.licenseFile("string")
.licenseFileId("string")
.licenseStatus("string")
.licenseToken("string")
.asn(0)
.mgmtAclTemplateUuid("string")
.additionalBandwidth(0)
.hostname("string")
.projectId("string")
.redundancyType("string")
.redundantId("string")
.region("string")
.sshIpAddress("string")
.sshIpFqdn("string")
.sshKey(DeviceSecondaryDeviceSshKeyArgs.builder()
.keyName("string")
.username("string")
.build())
.status("string")
.uuid("string")
.vendorConfiguration(Map.of("string", "string"))
.wanInterfaceId("string")
.zoneCode("string")
.build())
.selfManaged(false)
.sshKey(DeviceSshKeyArgs.builder()
.keyName("string")
.username("string")
.build())
.byol(false)
.throughput(0)
.throughputUnit("string")
.additionalBandwidth(0)
.vendorConfiguration(Map.of("string", "string"))
.aclTemplateId("string")
.wanInterfaceId("string")
.build());
equinix_device_resource = equinix.networkedge.Device("equinixDeviceResource",
metro_code="string",
version="string",
type_code="string",
term_length=0,
package_code="string",
notifications=["string"],
account_number="string",
core_count=0,
name="string",
cloud_init_file_id="string",
interface_count=0,
license_file="string",
license_file_id="string",
license_token="string",
diverse_device_id="string",
mgmt_acl_template_uuid="string",
connectivity="string",
cluster_details=equinix.networkedge.DeviceClusterDetailsArgs(
cluster_name="string",
node0=equinix.networkedge.DeviceClusterDetailsNode0Args(
license_file_id="string",
license_token="string",
name="string",
uuid="string",
vendor_configuration=equinix.networkedge.DeviceClusterDetailsNode0VendorConfigurationArgs(
activation_key="string",
admin_password="string",
controller1="string",
controller_fqdn="string",
hostname="string",
license_id="string",
license_key="string",
private_address="string",
private_cidr_mask="string",
private_gateway="string",
root_password="string",
),
),
node1=equinix.networkedge.DeviceClusterDetailsNode1Args(
license_file_id="string",
license_token="string",
name="string",
uuid="string",
vendor_configuration=equinix.networkedge.DeviceClusterDetailsNode1VendorConfigurationArgs(
activation_key="string",
admin_password="string",
controller1="string",
controller_fqdn="string",
hostname="string",
license_id="string",
license_key="string",
private_address="string",
private_cidr_mask="string",
private_gateway="string",
root_password="string",
),
),
cluster_id="string",
num_of_nodes=0,
),
order_reference="string",
hostname="string",
project_id="string",
purchase_order_number="string",
secondary_device=equinix.networkedge.DeviceSecondaryDeviceArgs(
account_number="string",
notifications=["string"],
name="string",
metro_code="string",
interfaces=[equinix.networkedge.DeviceSecondaryDeviceInterfaceArgs(
assigned_type="string",
id=0,
ip_address="string",
mac_address="string",
name="string",
operational_status="string",
status="string",
type="string",
)],
acl_template_id="string",
ibx="string",
cloud_init_file_id="string",
license_file="string",
license_file_id="string",
license_status="string",
license_token="string",
asn=0,
mgmt_acl_template_uuid="string",
additional_bandwidth=0,
hostname="string",
project_id="string",
redundancy_type="string",
redundant_id="string",
region="string",
ssh_ip_address="string",
ssh_ip_fqdn="string",
ssh_key=equinix.networkedge.DeviceSecondaryDeviceSshKeyArgs(
key_name="string",
username="string",
),
status="string",
uuid="string",
vendor_configuration={
"string": "string",
},
wan_interface_id="string",
zone_code="string",
),
self_managed=False,
ssh_key=equinix.networkedge.DeviceSshKeyArgs(
key_name="string",
username="string",
),
byol=False,
throughput=0,
throughput_unit="string",
additional_bandwidth=0,
vendor_configuration={
"string": "string",
},
acl_template_id="string",
wan_interface_id="string")
const equinixDeviceResource = new equinix.networkedge.Device("equinixDeviceResource", {
metroCode: "string",
version: "string",
typeCode: "string",
termLength: 0,
packageCode: "string",
notifications: ["string"],
accountNumber: "string",
coreCount: 0,
name: "string",
cloudInitFileId: "string",
interfaceCount: 0,
licenseFile: "string",
licenseFileId: "string",
licenseToken: "string",
diverseDeviceId: "string",
mgmtAclTemplateUuid: "string",
connectivity: "string",
clusterDetails: {
clusterName: "string",
node0: {
licenseFileId: "string",
licenseToken: "string",
name: "string",
uuid: "string",
vendorConfiguration: {
activationKey: "string",
adminPassword: "string",
controller1: "string",
controllerFqdn: "string",
hostname: "string",
licenseId: "string",
licenseKey: "string",
privateAddress: "string",
privateCidrMask: "string",
privateGateway: "string",
rootPassword: "string",
},
},
node1: {
licenseFileId: "string",
licenseToken: "string",
name: "string",
uuid: "string",
vendorConfiguration: {
activationKey: "string",
adminPassword: "string",
controller1: "string",
controllerFqdn: "string",
hostname: "string",
licenseId: "string",
licenseKey: "string",
privateAddress: "string",
privateCidrMask: "string",
privateGateway: "string",
rootPassword: "string",
},
},
clusterId: "string",
numOfNodes: 0,
},
orderReference: "string",
hostname: "string",
projectId: "string",
purchaseOrderNumber: "string",
secondaryDevice: {
accountNumber: "string",
notifications: ["string"],
name: "string",
metroCode: "string",
interfaces: [{
assignedType: "string",
id: 0,
ipAddress: "string",
macAddress: "string",
name: "string",
operationalStatus: "string",
status: "string",
type: "string",
}],
aclTemplateId: "string",
ibx: "string",
cloudInitFileId: "string",
licenseFile: "string",
licenseFileId: "string",
licenseStatus: "string",
licenseToken: "string",
asn: 0,
mgmtAclTemplateUuid: "string",
additionalBandwidth: 0,
hostname: "string",
projectId: "string",
redundancyType: "string",
redundantId: "string",
region: "string",
sshIpAddress: "string",
sshIpFqdn: "string",
sshKey: {
keyName: "string",
username: "string",
},
status: "string",
uuid: "string",
vendorConfiguration: {
string: "string",
},
wanInterfaceId: "string",
zoneCode: "string",
},
selfManaged: false,
sshKey: {
keyName: "string",
username: "string",
},
byol: false,
throughput: 0,
throughputUnit: "string",
additionalBandwidth: 0,
vendorConfiguration: {
string: "string",
},
aclTemplateId: "string",
wanInterfaceId: "string",
});
type: equinix:networkedge:Device
properties:
accountNumber: string
aclTemplateId: string
additionalBandwidth: 0
byol: false
cloudInitFileId: string
clusterDetails:
clusterId: string
clusterName: string
node0:
licenseFileId: string
licenseToken: string
name: string
uuid: string
vendorConfiguration:
activationKey: string
adminPassword: string
controller1: string
controllerFqdn: string
hostname: string
licenseId: string
licenseKey: string
privateAddress: string
privateCidrMask: string
privateGateway: string
rootPassword: string
node1:
licenseFileId: string
licenseToken: string
name: string
uuid: string
vendorConfiguration:
activationKey: string
adminPassword: string
controller1: string
controllerFqdn: string
hostname: string
licenseId: string
licenseKey: string
privateAddress: string
privateCidrMask: string
privateGateway: string
rootPassword: string
numOfNodes: 0
connectivity: string
coreCount: 0
diverseDeviceId: string
hostname: string
interfaceCount: 0
licenseFile: string
licenseFileId: string
licenseToken: string
metroCode: string
mgmtAclTemplateUuid: string
name: string
notifications:
- string
orderReference: string
packageCode: string
projectId: string
purchaseOrderNumber: string
secondaryDevice:
accountNumber: string
aclTemplateId: string
additionalBandwidth: 0
asn: 0
cloudInitFileId: string
hostname: string
ibx: string
interfaces:
- assignedType: string
id: 0
ipAddress: string
macAddress: string
name: string
operationalStatus: string
status: string
type: string
licenseFile: string
licenseFileId: string
licenseStatus: string
licenseToken: string
metroCode: string
mgmtAclTemplateUuid: string
name: string
notifications:
- string
projectId: string
redundancyType: string
redundantId: string
region: string
sshIpAddress: string
sshIpFqdn: string
sshKey:
keyName: string
username: string
status: string
uuid: string
vendorConfiguration:
string: string
wanInterfaceId: string
zoneCode: string
selfManaged: false
sshKey:
keyName: string
username: string
termLength: 0
throughput: 0
throughputUnit: string
typeCode: string
vendorConfiguration:
string: string
version: string
wanInterfaceId: string
Device 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 Device resource accepts the following input properties:
- Account
Number string - Billing account number for a device.
- Core
Count int - Number of CPU cores used by device. (NOTE: Use this field to resize your device. When resizing your HA devices, primary device will be upgraded first. If the upgrade failed, device will be automatically rolled back to the previous state with original core number.)
- Metro
Code string - Device location metro code.
- Notifications List<string>
- List of email addresses that will receive device status notifications.
- Package
Code string - Device software package code.
- Term
Length int - Device term length.
- Type
Code string - Device type code.
- Version string
- Device software software version.
- Acl
Template stringId - Identifier of a WAN interface ACL template that will be applied on the device.
- Additional
Bandwidth int - Additional Internet bandwidth, in Mbps, that will be allocated to the device (in addition to default 15Mbps).
- Byol bool
- Boolean value that determines device licensing mode, i.e.,
bring your own license
orsubscription
(default). - Cloud
Init stringFile Id - Identifier of a cloud init file that will be applied on the device.
- Cluster
Details DeviceCluster Details - An object that has the cluster details. See Cluster Details below for more details.
- Connectivity string
- Device accessibility (INTERNET-ACCESS or PRIVATE or INTERNET-ACCESS-WITH-PRVT-MGMT). If not specified, default will be INTERNET-ACCESS
- Diverse
Device stringId - Unique ID of an existing device. Use this field to let Equinix know if you want your new device to be in a different location from any existing virtual device. This field is only meaningful for single devices.
- Hostname string
- Device hostname prefix.
- Interface
Count int - Number of network interfaces on a device. If not specified, default number for a given device type will be used.
- License
File string - Path to the license file that will be uploaded and applied on a device. Applicable for some device types in BYOL licensing mode.
- License
File stringId - Identifier of a license file that will be applied on the device.
- License
Token string - License Token applicable for some device types in BYOL licensing mode.
- Mgmt
Acl stringTemplate Uuid - Identifier of an MGMT interface ACL template that will be applied on the device.
- Name string
- Device name.
- Order
Reference string - Name/number used to identify device order on the invoice.
- Project
Id string - Unique Identifier for the project resource where the device is scoped to.If you leave it out, the device will be created under the default project id of your organization.
- Purchase
Order stringNumber - Purchase order number associated with a device order.
- Secondary
Device DeviceSecondary Device - Definition of secondary device for redundant device configurations. See Secondary Device below for more details.
- Self
Managed bool - Boolean value that determines device management mode, i.e.,
self-managed
orEquinix-managed
(default). - Ssh
Key DeviceSsh Key - Definition of SSH key that will be provisioned on a device
- Throughput int
- Device license throughput.
- Throughput
Unit string | Pulumi.Equinix. Network Edge. Throughput Unit - License throughput unit. One of
Mbps
orGbps
. - Vendor
Configuration Dictionary<string, string> - Map of vendor specific configuration parameters for a device
(controller1, activationKey, managementType, siteId, systemIpAddress, private_address, private_cidr_mask, private_gateway, license_key, license_id)
ssh-key
- (Optional) Definition of SSH key that will be provisioned on a device (max one key). See SSH Key below for more details.
- Wan
Interface stringId - device interface id picked for WAN
- Account
Number string - Billing account number for a device.
- Core
Count int - Number of CPU cores used by device. (NOTE: Use this field to resize your device. When resizing your HA devices, primary device will be upgraded first. If the upgrade failed, device will be automatically rolled back to the previous state with original core number.)
- Metro
Code string - Device location metro code.
- Notifications []string
- List of email addresses that will receive device status notifications.
- Package
Code string - Device software package code.
- Term
Length int - Device term length.
- Type
Code string - Device type code.
- Version string
- Device software software version.
- Acl
Template stringId - Identifier of a WAN interface ACL template that will be applied on the device.
- Additional
Bandwidth int - Additional Internet bandwidth, in Mbps, that will be allocated to the device (in addition to default 15Mbps).
- Byol bool
- Boolean value that determines device licensing mode, i.e.,
bring your own license
orsubscription
(default). - Cloud
Init stringFile Id - Identifier of a cloud init file that will be applied on the device.
- Cluster
Details DeviceCluster Details Args - An object that has the cluster details. See Cluster Details below for more details.
- Connectivity string
- Device accessibility (INTERNET-ACCESS or PRIVATE or INTERNET-ACCESS-WITH-PRVT-MGMT). If not specified, default will be INTERNET-ACCESS
- Diverse
Device stringId - Unique ID of an existing device. Use this field to let Equinix know if you want your new device to be in a different location from any existing virtual device. This field is only meaningful for single devices.
- Hostname string
- Device hostname prefix.
- Interface
Count int - Number of network interfaces on a device. If not specified, default number for a given device type will be used.
- License
File string - Path to the license file that will be uploaded and applied on a device. Applicable for some device types in BYOL licensing mode.
- License
File stringId - Identifier of a license file that will be applied on the device.
- License
Token string - License Token applicable for some device types in BYOL licensing mode.
- Mgmt
Acl stringTemplate Uuid - Identifier of an MGMT interface ACL template that will be applied on the device.
- Name string
- Device name.
- Order
Reference string - Name/number used to identify device order on the invoice.
- Project
Id string - Unique Identifier for the project resource where the device is scoped to.If you leave it out, the device will be created under the default project id of your organization.
- Purchase
Order stringNumber - Purchase order number associated with a device order.
- Secondary
Device DeviceSecondary Device Args - Definition of secondary device for redundant device configurations. See Secondary Device below for more details.
- Self
Managed bool - Boolean value that determines device management mode, i.e.,
self-managed
orEquinix-managed
(default). - Ssh
Key DeviceSsh Key Args - Definition of SSH key that will be provisioned on a device
- Throughput int
- Device license throughput.
- Throughput
Unit string | ThroughputUnit - License throughput unit. One of
Mbps
orGbps
. - Vendor
Configuration map[string]string - Map of vendor specific configuration parameters for a device
(controller1, activationKey, managementType, siteId, systemIpAddress, private_address, private_cidr_mask, private_gateway, license_key, license_id)
ssh-key
- (Optional) Definition of SSH key that will be provisioned on a device (max one key). See SSH Key below for more details.
- Wan
Interface stringId - device interface id picked for WAN
- account
Number String - Billing account number for a device.
- core
Count Integer - Number of CPU cores used by device. (NOTE: Use this field to resize your device. When resizing your HA devices, primary device will be upgraded first. If the upgrade failed, device will be automatically rolled back to the previous state with original core number.)
- metro
Code String - Device location metro code.
- notifications List<String>
- List of email addresses that will receive device status notifications.
- package
Code String - Device software package code.
- term
Length Integer - Device term length.
- type
Code String - Device type code.
- version String
- Device software software version.
- acl
Template StringId - Identifier of a WAN interface ACL template that will be applied on the device.
- additional
Bandwidth Integer - Additional Internet bandwidth, in Mbps, that will be allocated to the device (in addition to default 15Mbps).
- byol Boolean
- Boolean value that determines device licensing mode, i.e.,
bring your own license
orsubscription
(default). - cloud
Init StringFile Id - Identifier of a cloud init file that will be applied on the device.
- cluster
Details DeviceCluster Details - An object that has the cluster details. See Cluster Details below for more details.
- connectivity String
- Device accessibility (INTERNET-ACCESS or PRIVATE or INTERNET-ACCESS-WITH-PRVT-MGMT). If not specified, default will be INTERNET-ACCESS
- diverse
Device StringId - Unique ID of an existing device. Use this field to let Equinix know if you want your new device to be in a different location from any existing virtual device. This field is only meaningful for single devices.
- hostname String
- Device hostname prefix.
- interface
Count Integer - Number of network interfaces on a device. If not specified, default number for a given device type will be used.
- license
File String - Path to the license file that will be uploaded and applied on a device. Applicable for some device types in BYOL licensing mode.
- license
File StringId - Identifier of a license file that will be applied on the device.
- license
Token String - License Token applicable for some device types in BYOL licensing mode.
- mgmt
Acl StringTemplate Uuid - Identifier of an MGMT interface ACL template that will be applied on the device.
- name String
- Device name.
- order
Reference String - Name/number used to identify device order on the invoice.
- project
Id String - Unique Identifier for the project resource where the device is scoped to.If you leave it out, the device will be created under the default project id of your organization.
- purchase
Order StringNumber - Purchase order number associated with a device order.
- secondary
Device DeviceSecondary Device - Definition of secondary device for redundant device configurations. See Secondary Device below for more details.
- self
Managed Boolean - Boolean value that determines device management mode, i.e.,
self-managed
orEquinix-managed
(default). - ssh
Key DeviceSsh Key - Definition of SSH key that will be provisioned on a device
- throughput Integer
- Device license throughput.
- throughput
Unit String | ThroughputUnit - License throughput unit. One of
Mbps
orGbps
. - vendor
Configuration Map<String,String> - Map of vendor specific configuration parameters for a device
(controller1, activationKey, managementType, siteId, systemIpAddress, private_address, private_cidr_mask, private_gateway, license_key, license_id)
ssh-key
- (Optional) Definition of SSH key that will be provisioned on a device (max one key). See SSH Key below for more details.
- wan
Interface StringId - device interface id picked for WAN
- account
Number string - Billing account number for a device.
- core
Count number - Number of CPU cores used by device. (NOTE: Use this field to resize your device. When resizing your HA devices, primary device will be upgraded first. If the upgrade failed, device will be automatically rolled back to the previous state with original core number.)
- metro
Code string - Device location metro code.
- notifications string[]
- List of email addresses that will receive device status notifications.
- package
Code string - Device software package code.
- term
Length number - Device term length.
- type
Code string - Device type code.
- version string
- Device software software version.
- acl
Template stringId - Identifier of a WAN interface ACL template that will be applied on the device.
- additional
Bandwidth number - Additional Internet bandwidth, in Mbps, that will be allocated to the device (in addition to default 15Mbps).
- byol boolean
- Boolean value that determines device licensing mode, i.e.,
bring your own license
orsubscription
(default). - cloud
Init stringFile Id - Identifier of a cloud init file that will be applied on the device.
- cluster
Details DeviceCluster Details - An object that has the cluster details. See Cluster Details below for more details.
- connectivity string
- Device accessibility (INTERNET-ACCESS or PRIVATE or INTERNET-ACCESS-WITH-PRVT-MGMT). If not specified, default will be INTERNET-ACCESS
- diverse
Device stringId - Unique ID of an existing device. Use this field to let Equinix know if you want your new device to be in a different location from any existing virtual device. This field is only meaningful for single devices.
- hostname string
- Device hostname prefix.
- interface
Count number - Number of network interfaces on a device. If not specified, default number for a given device type will be used.
- license
File string - Path to the license file that will be uploaded and applied on a device. Applicable for some device types in BYOL licensing mode.
- license
File stringId - Identifier of a license file that will be applied on the device.
- license
Token string - License Token applicable for some device types in BYOL licensing mode.
- mgmt
Acl stringTemplate Uuid - Identifier of an MGMT interface ACL template that will be applied on the device.
- name string
- Device name.
- order
Reference string - Name/number used to identify device order on the invoice.
- project
Id string - Unique Identifier for the project resource where the device is scoped to.If you leave it out, the device will be created under the default project id of your organization.
- purchase
Order stringNumber - Purchase order number associated with a device order.
- secondary
Device DeviceSecondary Device - Definition of secondary device for redundant device configurations. See Secondary Device below for more details.
- self
Managed boolean - Boolean value that determines device management mode, i.e.,
self-managed
orEquinix-managed
(default). - ssh
Key DeviceSsh Key - Definition of SSH key that will be provisioned on a device
- throughput number
- Device license throughput.
- throughput
Unit string | ThroughputUnit - License throughput unit. One of
Mbps
orGbps
. - vendor
Configuration {[key: string]: string} - Map of vendor specific configuration parameters for a device
(controller1, activationKey, managementType, siteId, systemIpAddress, private_address, private_cidr_mask, private_gateway, license_key, license_id)
ssh-key
- (Optional) Definition of SSH key that will be provisioned on a device (max one key). See SSH Key below for more details.
- wan
Interface stringId - device interface id picked for WAN
- account_
number str - Billing account number for a device.
- core_
count int - Number of CPU cores used by device. (NOTE: Use this field to resize your device. When resizing your HA devices, primary device will be upgraded first. If the upgrade failed, device will be automatically rolled back to the previous state with original core number.)
- metro_
code str - Device location metro code.
- notifications Sequence[str]
- List of email addresses that will receive device status notifications.
- package_
code str - Device software package code.
- term_
length int - Device term length.
- type_
code str - Device type code.
- version str
- Device software software version.
- acl_
template_ strid - Identifier of a WAN interface ACL template that will be applied on the device.
- additional_
bandwidth int - Additional Internet bandwidth, in Mbps, that will be allocated to the device (in addition to default 15Mbps).
- byol bool
- Boolean value that determines device licensing mode, i.e.,
bring your own license
orsubscription
(default). - cloud_
init_ strfile_ id - Identifier of a cloud init file that will be applied on the device.
- cluster_
details DeviceCluster Details Args - An object that has the cluster details. See Cluster Details below for more details.
- connectivity str
- Device accessibility (INTERNET-ACCESS or PRIVATE or INTERNET-ACCESS-WITH-PRVT-MGMT). If not specified, default will be INTERNET-ACCESS
- diverse_
device_ strid - Unique ID of an existing device. Use this field to let Equinix know if you want your new device to be in a different location from any existing virtual device. This field is only meaningful for single devices.
- hostname str
- Device hostname prefix.
- interface_
count int - Number of network interfaces on a device. If not specified, default number for a given device type will be used.
- license_
file str - Path to the license file that will be uploaded and applied on a device. Applicable for some device types in BYOL licensing mode.
- license_
file_ strid - Identifier of a license file that will be applied on the device.
- license_
token str - License Token applicable for some device types in BYOL licensing mode.
- mgmt_
acl_ strtemplate_ uuid - Identifier of an MGMT interface ACL template that will be applied on the device.
- name str
- Device name.
- order_
reference str - Name/number used to identify device order on the invoice.
- project_
id str - Unique Identifier for the project resource where the device is scoped to.If you leave it out, the device will be created under the default project id of your organization.
- purchase_
order_ strnumber - Purchase order number associated with a device order.
- secondary_
device DeviceSecondary Device Args - Definition of secondary device for redundant device configurations. See Secondary Device below for more details.
- self_
managed bool - Boolean value that determines device management mode, i.e.,
self-managed
orEquinix-managed
(default). - ssh_
key DeviceSsh Key Args - Definition of SSH key that will be provisioned on a device
- throughput int
- Device license throughput.
- throughput_
unit str | ThroughputUnit - License throughput unit. One of
Mbps
orGbps
. - vendor_
configuration Mapping[str, str] - Map of vendor specific configuration parameters for a device
(controller1, activationKey, managementType, siteId, systemIpAddress, private_address, private_cidr_mask, private_gateway, license_key, license_id)
ssh-key
- (Optional) Definition of SSH key that will be provisioned on a device (max one key). See SSH Key below for more details.
- wan_
interface_ strid - device interface id picked for WAN
- account
Number String - Billing account number for a device.
- core
Count Number - Number of CPU cores used by device. (NOTE: Use this field to resize your device. When resizing your HA devices, primary device will be upgraded first. If the upgrade failed, device will be automatically rolled back to the previous state with original core number.)
- metro
Code String - Device location metro code.
- notifications List<String>
- List of email addresses that will receive device status notifications.
- package
Code String - Device software package code.
- term
Length Number - Device term length.
- type
Code String - Device type code.
- version String
- Device software software version.
- acl
Template StringId - Identifier of a WAN interface ACL template that will be applied on the device.
- additional
Bandwidth Number - Additional Internet bandwidth, in Mbps, that will be allocated to the device (in addition to default 15Mbps).
- byol Boolean
- Boolean value that determines device licensing mode, i.e.,
bring your own license
orsubscription
(default). - cloud
Init StringFile Id - Identifier of a cloud init file that will be applied on the device.
- cluster
Details Property Map - An object that has the cluster details. See Cluster Details below for more details.
- connectivity String
- Device accessibility (INTERNET-ACCESS or PRIVATE or INTERNET-ACCESS-WITH-PRVT-MGMT). If not specified, default will be INTERNET-ACCESS
- diverse
Device StringId - Unique ID of an existing device. Use this field to let Equinix know if you want your new device to be in a different location from any existing virtual device. This field is only meaningful for single devices.
- hostname String
- Device hostname prefix.
- interface
Count Number - Number of network interfaces on a device. If not specified, default number for a given device type will be used.
- license
File String - Path to the license file that will be uploaded and applied on a device. Applicable for some device types in BYOL licensing mode.
- license
File StringId - Identifier of a license file that will be applied on the device.
- license
Token String - License Token applicable for some device types in BYOL licensing mode.
- mgmt
Acl StringTemplate Uuid - Identifier of an MGMT interface ACL template that will be applied on the device.
- name String
- Device name.
- order
Reference String - Name/number used to identify device order on the invoice.
- project
Id String - Unique Identifier for the project resource where the device is scoped to.If you leave it out, the device will be created under the default project id of your organization.
- purchase
Order StringNumber - Purchase order number associated with a device order.
- secondary
Device Property Map - Definition of secondary device for redundant device configurations. See Secondary Device below for more details.
- self
Managed Boolean - Boolean value that determines device management mode, i.e.,
self-managed
orEquinix-managed
(default). - ssh
Key Property Map - Definition of SSH key that will be provisioned on a device
- throughput Number
- Device license throughput.
- throughput
Unit String | "Mbps" | "Gbps" - License throughput unit. One of
Mbps
orGbps
. - vendor
Configuration Map<String> - Map of vendor specific configuration parameters for a device
(controller1, activationKey, managementType, siteId, systemIpAddress, private_address, private_cidr_mask, private_gateway, license_key, license_id)
ssh-key
- (Optional) Definition of SSH key that will be provisioned on a device (max one key). See SSH Key below for more details.
- wan
Interface StringId - device interface id picked for WAN
Outputs
All input properties are implicitly available as output properties. Additionally, the Device resource produces the following output properties:
- Asn int
- (Autonomous System Number) Unique identifier for a network on the internet.
- Diverse
Device stringName - Name of the device with diverse device UUID. This field is returned in device details if the device is created by passing diverse_device_id.
- Ibx string
- Device location Equinix Business Exchange name.
- Id string
- The provider-assigned unique ID for this managed resource.
- Interfaces
List<Device
Interface> - List of device interfaces. See Interface Attribute below for more details.
- License
Status string - Device license registration status. Possible values are
APPLYING_LICENSE
,REGISTERED
,APPLIED
,WAITING_FOR_CLUSTER_SETUP
,REGISTRATION_FAILED
. - Redundancy
Type string - Device redundancy type applicable for HA devices, either primary or secondary.
- Redundant
Id string - Unique identifier for a redundant device applicable for HA devices.
- Region string
- Device location region.
- Ssh
Ip stringAddress - IP address of SSH enabled interface on the device.
- Ssh
Ip stringFqdn - FQDN of SSH enabled interface on the device.
- Status string
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - Uuid string
- Device unique identifier.
- Zone
Code string - Device location zone code.
- Asn int
- (Autonomous System Number) Unique identifier for a network on the internet.
- Diverse
Device stringName - Name of the device with diverse device UUID. This field is returned in device details if the device is created by passing diverse_device_id.
- Ibx string
- Device location Equinix Business Exchange name.
- Id string
- The provider-assigned unique ID for this managed resource.
- Interfaces
[]Device
Interface - List of device interfaces. See Interface Attribute below for more details.
- License
Status string - Device license registration status. Possible values are
APPLYING_LICENSE
,REGISTERED
,APPLIED
,WAITING_FOR_CLUSTER_SETUP
,REGISTRATION_FAILED
. - Redundancy
Type string - Device redundancy type applicable for HA devices, either primary or secondary.
- Redundant
Id string - Unique identifier for a redundant device applicable for HA devices.
- Region string
- Device location region.
- Ssh
Ip stringAddress - IP address of SSH enabled interface on the device.
- Ssh
Ip stringFqdn - FQDN of SSH enabled interface on the device.
- Status string
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - Uuid string
- Device unique identifier.
- Zone
Code string - Device location zone code.
- asn Integer
- (Autonomous System Number) Unique identifier for a network on the internet.
- diverse
Device StringName - Name of the device with diverse device UUID. This field is returned in device details if the device is created by passing diverse_device_id.
- ibx String
- Device location Equinix Business Exchange name.
- id String
- The provider-assigned unique ID for this managed resource.
- interfaces
List<Device
Interface> - List of device interfaces. See Interface Attribute below for more details.
- license
Status String - Device license registration status. Possible values are
APPLYING_LICENSE
,REGISTERED
,APPLIED
,WAITING_FOR_CLUSTER_SETUP
,REGISTRATION_FAILED
. - redundancy
Type String - Device redundancy type applicable for HA devices, either primary or secondary.
- redundant
Id String - Unique identifier for a redundant device applicable for HA devices.
- region String
- Device location region.
- ssh
Ip StringAddress - IP address of SSH enabled interface on the device.
- ssh
Ip StringFqdn - FQDN of SSH enabled interface on the device.
- status String
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - uuid String
- Device unique identifier.
- zone
Code String - Device location zone code.
- asn number
- (Autonomous System Number) Unique identifier for a network on the internet.
- diverse
Device stringName - Name of the device with diverse device UUID. This field is returned in device details if the device is created by passing diverse_device_id.
- ibx string
- Device location Equinix Business Exchange name.
- id string
- The provider-assigned unique ID for this managed resource.
- interfaces
Device
Interface[] - List of device interfaces. See Interface Attribute below for more details.
- license
Status string - Device license registration status. Possible values are
APPLYING_LICENSE
,REGISTERED
,APPLIED
,WAITING_FOR_CLUSTER_SETUP
,REGISTRATION_FAILED
. - redundancy
Type string - Device redundancy type applicable for HA devices, either primary or secondary.
- redundant
Id string - Unique identifier for a redundant device applicable for HA devices.
- region string
- Device location region.
- ssh
Ip stringAddress - IP address of SSH enabled interface on the device.
- ssh
Ip stringFqdn - FQDN of SSH enabled interface on the device.
- status string
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - uuid string
- Device unique identifier.
- zone
Code string - Device location zone code.
- asn int
- (Autonomous System Number) Unique identifier for a network on the internet.
- diverse_
device_ strname - Name of the device with diverse device UUID. This field is returned in device details if the device is created by passing diverse_device_id.
- ibx str
- Device location Equinix Business Exchange name.
- id str
- The provider-assigned unique ID for this managed resource.
- interfaces
Sequence[Device
Interface] - List of device interfaces. See Interface Attribute below for more details.
- license_
status str - Device license registration status. Possible values are
APPLYING_LICENSE
,REGISTERED
,APPLIED
,WAITING_FOR_CLUSTER_SETUP
,REGISTRATION_FAILED
. - redundancy_
type str - Device redundancy type applicable for HA devices, either primary or secondary.
- redundant_
id str - Unique identifier for a redundant device applicable for HA devices.
- region str
- Device location region.
- ssh_
ip_ straddress - IP address of SSH enabled interface on the device.
- ssh_
ip_ strfqdn - FQDN of SSH enabled interface on the device.
- status str
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - uuid str
- Device unique identifier.
- zone_
code str - Device location zone code.
- asn Number
- (Autonomous System Number) Unique identifier for a network on the internet.
- diverse
Device StringName - Name of the device with diverse device UUID. This field is returned in device details if the device is created by passing diverse_device_id.
- ibx String
- Device location Equinix Business Exchange name.
- id String
- The provider-assigned unique ID for this managed resource.
- interfaces List<Property Map>
- List of device interfaces. See Interface Attribute below for more details.
- license
Status String - Device license registration status. Possible values are
APPLYING_LICENSE
,REGISTERED
,APPLIED
,WAITING_FOR_CLUSTER_SETUP
,REGISTRATION_FAILED
. - redundancy
Type String - Device redundancy type applicable for HA devices, either primary or secondary.
- redundant
Id String - Unique identifier for a redundant device applicable for HA devices.
- region String
- Device location region.
- ssh
Ip StringAddress - IP address of SSH enabled interface on the device.
- ssh
Ip StringFqdn - FQDN of SSH enabled interface on the device.
- status String
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - uuid String
- Device unique identifier.
- zone
Code String - Device location zone code.
Look up Existing Device Resource
Get an existing Device 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?: DeviceState, opts?: CustomResourceOptions): Device
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_number: Optional[str] = None,
acl_template_id: Optional[str] = None,
additional_bandwidth: Optional[int] = None,
asn: Optional[int] = None,
byol: Optional[bool] = None,
cloud_init_file_id: Optional[str] = None,
cluster_details: Optional[DeviceClusterDetailsArgs] = None,
connectivity: Optional[str] = None,
core_count: Optional[int] = None,
diverse_device_id: Optional[str] = None,
diverse_device_name: Optional[str] = None,
hostname: Optional[str] = None,
ibx: Optional[str] = None,
interface_count: Optional[int] = None,
interfaces: Optional[Sequence[DeviceInterfaceArgs]] = None,
license_file: Optional[str] = None,
license_file_id: Optional[str] = None,
license_status: Optional[str] = None,
license_token: Optional[str] = None,
metro_code: Optional[str] = None,
mgmt_acl_template_uuid: Optional[str] = None,
name: Optional[str] = None,
notifications: Optional[Sequence[str]] = None,
order_reference: Optional[str] = None,
package_code: Optional[str] = None,
project_id: Optional[str] = None,
purchase_order_number: Optional[str] = None,
redundancy_type: Optional[str] = None,
redundant_id: Optional[str] = None,
region: Optional[str] = None,
secondary_device: Optional[DeviceSecondaryDeviceArgs] = None,
self_managed: Optional[bool] = None,
ssh_ip_address: Optional[str] = None,
ssh_ip_fqdn: Optional[str] = None,
ssh_key: Optional[DeviceSshKeyArgs] = None,
status: Optional[str] = None,
term_length: Optional[int] = None,
throughput: Optional[int] = None,
throughput_unit: Optional[Union[str, ThroughputUnit]] = None,
type_code: Optional[str] = None,
uuid: Optional[str] = None,
vendor_configuration: Optional[Mapping[str, str]] = None,
version: Optional[str] = None,
wan_interface_id: Optional[str] = None,
zone_code: Optional[str] = None) -> Device
func GetDevice(ctx *Context, name string, id IDInput, state *DeviceState, opts ...ResourceOption) (*Device, error)
public static Device Get(string name, Input<string> id, DeviceState? state, CustomResourceOptions? opts = null)
public static Device get(String name, Output<String> id, DeviceState 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.
- Account
Number string - Billing account number for a device.
- Acl
Template stringId - Identifier of a WAN interface ACL template that will be applied on the device.
- Additional
Bandwidth int - Additional Internet bandwidth, in Mbps, that will be allocated to the device (in addition to default 15Mbps).
- Asn int
- (Autonomous System Number) Unique identifier for a network on the internet.
- Byol bool
- Boolean value that determines device licensing mode, i.e.,
bring your own license
orsubscription
(default). - Cloud
Init stringFile Id - Identifier of a cloud init file that will be applied on the device.
- Cluster
Details DeviceCluster Details - An object that has the cluster details. See Cluster Details below for more details.
- Connectivity string
- Device accessibility (INTERNET-ACCESS or PRIVATE or INTERNET-ACCESS-WITH-PRVT-MGMT). If not specified, default will be INTERNET-ACCESS
- Core
Count int - Number of CPU cores used by device. (NOTE: Use this field to resize your device. When resizing your HA devices, primary device will be upgraded first. If the upgrade failed, device will be automatically rolled back to the previous state with original core number.)
- Diverse
Device stringId - Unique ID of an existing device. Use this field to let Equinix know if you want your new device to be in a different location from any existing virtual device. This field is only meaningful for single devices.
- Diverse
Device stringName - Name of the device with diverse device UUID. This field is returned in device details if the device is created by passing diverse_device_id.
- Hostname string
- Device hostname prefix.
- Ibx string
- Device location Equinix Business Exchange name.
- Interface
Count int - Number of network interfaces on a device. If not specified, default number for a given device type will be used.
- Interfaces
List<Device
Interface> - List of device interfaces. See Interface Attribute below for more details.
- License
File string - Path to the license file that will be uploaded and applied on a device. Applicable for some device types in BYOL licensing mode.
- License
File stringId - Identifier of a license file that will be applied on the device.
- License
Status string - Device license registration status. Possible values are
APPLYING_LICENSE
,REGISTERED
,APPLIED
,WAITING_FOR_CLUSTER_SETUP
,REGISTRATION_FAILED
. - License
Token string - License Token applicable for some device types in BYOL licensing mode.
- Metro
Code string - Device location metro code.
- Mgmt
Acl stringTemplate Uuid - Identifier of an MGMT interface ACL template that will be applied on the device.
- Name string
- Device name.
- Notifications List<string>
- List of email addresses that will receive device status notifications.
- Order
Reference string - Name/number used to identify device order on the invoice.
- Package
Code string - Device software package code.
- Project
Id string - Unique Identifier for the project resource where the device is scoped to.If you leave it out, the device will be created under the default project id of your organization.
- Purchase
Order stringNumber - Purchase order number associated with a device order.
- Redundancy
Type string - Device redundancy type applicable for HA devices, either primary or secondary.
- Redundant
Id string - Unique identifier for a redundant device applicable for HA devices.
- Region string
- Device location region.
- Secondary
Device DeviceSecondary Device - Definition of secondary device for redundant device configurations. See Secondary Device below for more details.
- Self
Managed bool - Boolean value that determines device management mode, i.e.,
self-managed
orEquinix-managed
(default). - Ssh
Ip stringAddress - IP address of SSH enabled interface on the device.
- Ssh
Ip stringFqdn - FQDN of SSH enabled interface on the device.
- Ssh
Key DeviceSsh Key - Definition of SSH key that will be provisioned on a device
- Status string
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - Term
Length int - Device term length.
- Throughput int
- Device license throughput.
- Throughput
Unit string | Pulumi.Equinix. Network Edge. Throughput Unit - License throughput unit. One of
Mbps
orGbps
. - Type
Code string - Device type code.
- Uuid string
- Device unique identifier.
- Vendor
Configuration Dictionary<string, string> - Map of vendor specific configuration parameters for a device
(controller1, activationKey, managementType, siteId, systemIpAddress, private_address, private_cidr_mask, private_gateway, license_key, license_id)
ssh-key
- (Optional) Definition of SSH key that will be provisioned on a device (max one key). See SSH Key below for more details.
- Version string
- Device software software version.
- Wan
Interface stringId - device interface id picked for WAN
- Zone
Code string - Device location zone code.
- Account
Number string - Billing account number for a device.
- Acl
Template stringId - Identifier of a WAN interface ACL template that will be applied on the device.
- Additional
Bandwidth int - Additional Internet bandwidth, in Mbps, that will be allocated to the device (in addition to default 15Mbps).
- Asn int
- (Autonomous System Number) Unique identifier for a network on the internet.
- Byol bool
- Boolean value that determines device licensing mode, i.e.,
bring your own license
orsubscription
(default). - Cloud
Init stringFile Id - Identifier of a cloud init file that will be applied on the device.
- Cluster
Details DeviceCluster Details Args - An object that has the cluster details. See Cluster Details below for more details.
- Connectivity string
- Device accessibility (INTERNET-ACCESS or PRIVATE or INTERNET-ACCESS-WITH-PRVT-MGMT). If not specified, default will be INTERNET-ACCESS
- Core
Count int - Number of CPU cores used by device. (NOTE: Use this field to resize your device. When resizing your HA devices, primary device will be upgraded first. If the upgrade failed, device will be automatically rolled back to the previous state with original core number.)
- Diverse
Device stringId - Unique ID of an existing device. Use this field to let Equinix know if you want your new device to be in a different location from any existing virtual device. This field is only meaningful for single devices.
- Diverse
Device stringName - Name of the device with diverse device UUID. This field is returned in device details if the device is created by passing diverse_device_id.
- Hostname string
- Device hostname prefix.
- Ibx string
- Device location Equinix Business Exchange name.
- Interface
Count int - Number of network interfaces on a device. If not specified, default number for a given device type will be used.
- Interfaces
[]Device
Interface Args - List of device interfaces. See Interface Attribute below for more details.
- License
File string - Path to the license file that will be uploaded and applied on a device. Applicable for some device types in BYOL licensing mode.
- License
File stringId - Identifier of a license file that will be applied on the device.
- License
Status string - Device license registration status. Possible values are
APPLYING_LICENSE
,REGISTERED
,APPLIED
,WAITING_FOR_CLUSTER_SETUP
,REGISTRATION_FAILED
. - License
Token string - License Token applicable for some device types in BYOL licensing mode.
- Metro
Code string - Device location metro code.
- Mgmt
Acl stringTemplate Uuid - Identifier of an MGMT interface ACL template that will be applied on the device.
- Name string
- Device name.
- Notifications []string
- List of email addresses that will receive device status notifications.
- Order
Reference string - Name/number used to identify device order on the invoice.
- Package
Code string - Device software package code.
- Project
Id string - Unique Identifier for the project resource where the device is scoped to.If you leave it out, the device will be created under the default project id of your organization.
- Purchase
Order stringNumber - Purchase order number associated with a device order.
- Redundancy
Type string - Device redundancy type applicable for HA devices, either primary or secondary.
- Redundant
Id string - Unique identifier for a redundant device applicable for HA devices.
- Region string
- Device location region.
- Secondary
Device DeviceSecondary Device Args - Definition of secondary device for redundant device configurations. See Secondary Device below for more details.
- Self
Managed bool - Boolean value that determines device management mode, i.e.,
self-managed
orEquinix-managed
(default). - Ssh
Ip stringAddress - IP address of SSH enabled interface on the device.
- Ssh
Ip stringFqdn - FQDN of SSH enabled interface on the device.
- Ssh
Key DeviceSsh Key Args - Definition of SSH key that will be provisioned on a device
- Status string
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - Term
Length int - Device term length.
- Throughput int
- Device license throughput.
- Throughput
Unit string | ThroughputUnit - License throughput unit. One of
Mbps
orGbps
. - Type
Code string - Device type code.
- Uuid string
- Device unique identifier.
- Vendor
Configuration map[string]string - Map of vendor specific configuration parameters for a device
(controller1, activationKey, managementType, siteId, systemIpAddress, private_address, private_cidr_mask, private_gateway, license_key, license_id)
ssh-key
- (Optional) Definition of SSH key that will be provisioned on a device (max one key). See SSH Key below for more details.
- Version string
- Device software software version.
- Wan
Interface stringId - device interface id picked for WAN
- Zone
Code string - Device location zone code.
- account
Number String - Billing account number for a device.
- acl
Template StringId - Identifier of a WAN interface ACL template that will be applied on the device.
- additional
Bandwidth Integer - Additional Internet bandwidth, in Mbps, that will be allocated to the device (in addition to default 15Mbps).
- asn Integer
- (Autonomous System Number) Unique identifier for a network on the internet.
- byol Boolean
- Boolean value that determines device licensing mode, i.e.,
bring your own license
orsubscription
(default). - cloud
Init StringFile Id - Identifier of a cloud init file that will be applied on the device.
- cluster
Details DeviceCluster Details - An object that has the cluster details. See Cluster Details below for more details.
- connectivity String
- Device accessibility (INTERNET-ACCESS or PRIVATE or INTERNET-ACCESS-WITH-PRVT-MGMT). If not specified, default will be INTERNET-ACCESS
- core
Count Integer - Number of CPU cores used by device. (NOTE: Use this field to resize your device. When resizing your HA devices, primary device will be upgraded first. If the upgrade failed, device will be automatically rolled back to the previous state with original core number.)
- diverse
Device StringId - Unique ID of an existing device. Use this field to let Equinix know if you want your new device to be in a different location from any existing virtual device. This field is only meaningful for single devices.
- diverse
Device StringName - Name of the device with diverse device UUID. This field is returned in device details if the device is created by passing diverse_device_id.
- hostname String
- Device hostname prefix.
- ibx String
- Device location Equinix Business Exchange name.
- interface
Count Integer - Number of network interfaces on a device. If not specified, default number for a given device type will be used.
- interfaces
List<Device
Interface> - List of device interfaces. See Interface Attribute below for more details.
- license
File String - Path to the license file that will be uploaded and applied on a device. Applicable for some device types in BYOL licensing mode.
- license
File StringId - Identifier of a license file that will be applied on the device.
- license
Status String - Device license registration status. Possible values are
APPLYING_LICENSE
,REGISTERED
,APPLIED
,WAITING_FOR_CLUSTER_SETUP
,REGISTRATION_FAILED
. - license
Token String - License Token applicable for some device types in BYOL licensing mode.
- metro
Code String - Device location metro code.
- mgmt
Acl StringTemplate Uuid - Identifier of an MGMT interface ACL template that will be applied on the device.
- name String
- Device name.
- notifications List<String>
- List of email addresses that will receive device status notifications.
- order
Reference String - Name/number used to identify device order on the invoice.
- package
Code String - Device software package code.
- project
Id String - Unique Identifier for the project resource where the device is scoped to.If you leave it out, the device will be created under the default project id of your organization.
- purchase
Order StringNumber - Purchase order number associated with a device order.
- redundancy
Type String - Device redundancy type applicable for HA devices, either primary or secondary.
- redundant
Id String - Unique identifier for a redundant device applicable for HA devices.
- region String
- Device location region.
- secondary
Device DeviceSecondary Device - Definition of secondary device for redundant device configurations. See Secondary Device below for more details.
- self
Managed Boolean - Boolean value that determines device management mode, i.e.,
self-managed
orEquinix-managed
(default). - ssh
Ip StringAddress - IP address of SSH enabled interface on the device.
- ssh
Ip StringFqdn - FQDN of SSH enabled interface on the device.
- ssh
Key DeviceSsh Key - Definition of SSH key that will be provisioned on a device
- status String
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - term
Length Integer - Device term length.
- throughput Integer
- Device license throughput.
- throughput
Unit String | ThroughputUnit - License throughput unit. One of
Mbps
orGbps
. - type
Code String - Device type code.
- uuid String
- Device unique identifier.
- vendor
Configuration Map<String,String> - Map of vendor specific configuration parameters for a device
(controller1, activationKey, managementType, siteId, systemIpAddress, private_address, private_cidr_mask, private_gateway, license_key, license_id)
ssh-key
- (Optional) Definition of SSH key that will be provisioned on a device (max one key). See SSH Key below for more details.
- version String
- Device software software version.
- wan
Interface StringId - device interface id picked for WAN
- zone
Code String - Device location zone code.
- account
Number string - Billing account number for a device.
- acl
Template stringId - Identifier of a WAN interface ACL template that will be applied on the device.
- additional
Bandwidth number - Additional Internet bandwidth, in Mbps, that will be allocated to the device (in addition to default 15Mbps).
- asn number
- (Autonomous System Number) Unique identifier for a network on the internet.
- byol boolean
- Boolean value that determines device licensing mode, i.e.,
bring your own license
orsubscription
(default). - cloud
Init stringFile Id - Identifier of a cloud init file that will be applied on the device.
- cluster
Details DeviceCluster Details - An object that has the cluster details. See Cluster Details below for more details.
- connectivity string
- Device accessibility (INTERNET-ACCESS or PRIVATE or INTERNET-ACCESS-WITH-PRVT-MGMT). If not specified, default will be INTERNET-ACCESS
- core
Count number - Number of CPU cores used by device. (NOTE: Use this field to resize your device. When resizing your HA devices, primary device will be upgraded first. If the upgrade failed, device will be automatically rolled back to the previous state with original core number.)
- diverse
Device stringId - Unique ID of an existing device. Use this field to let Equinix know if you want your new device to be in a different location from any existing virtual device. This field is only meaningful for single devices.
- diverse
Device stringName - Name of the device with diverse device UUID. This field is returned in device details if the device is created by passing diverse_device_id.
- hostname string
- Device hostname prefix.
- ibx string
- Device location Equinix Business Exchange name.
- interface
Count number - Number of network interfaces on a device. If not specified, default number for a given device type will be used.
- interfaces
Device
Interface[] - List of device interfaces. See Interface Attribute below for more details.
- license
File string - Path to the license file that will be uploaded and applied on a device. Applicable for some device types in BYOL licensing mode.
- license
File stringId - Identifier of a license file that will be applied on the device.
- license
Status string - Device license registration status. Possible values are
APPLYING_LICENSE
,REGISTERED
,APPLIED
,WAITING_FOR_CLUSTER_SETUP
,REGISTRATION_FAILED
. - license
Token string - License Token applicable for some device types in BYOL licensing mode.
- metro
Code string - Device location metro code.
- mgmt
Acl stringTemplate Uuid - Identifier of an MGMT interface ACL template that will be applied on the device.
- name string
- Device name.
- notifications string[]
- List of email addresses that will receive device status notifications.
- order
Reference string - Name/number used to identify device order on the invoice.
- package
Code string - Device software package code.
- project
Id string - Unique Identifier for the project resource where the device is scoped to.If you leave it out, the device will be created under the default project id of your organization.
- purchase
Order stringNumber - Purchase order number associated with a device order.
- redundancy
Type string - Device redundancy type applicable for HA devices, either primary or secondary.
- redundant
Id string - Unique identifier for a redundant device applicable for HA devices.
- region string
- Device location region.
- secondary
Device DeviceSecondary Device - Definition of secondary device for redundant device configurations. See Secondary Device below for more details.
- self
Managed boolean - Boolean value that determines device management mode, i.e.,
self-managed
orEquinix-managed
(default). - ssh
Ip stringAddress - IP address of SSH enabled interface on the device.
- ssh
Ip stringFqdn - FQDN of SSH enabled interface on the device.
- ssh
Key DeviceSsh Key - Definition of SSH key that will be provisioned on a device
- status string
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - term
Length number - Device term length.
- throughput number
- Device license throughput.
- throughput
Unit string | ThroughputUnit - License throughput unit. One of
Mbps
orGbps
. - type
Code string - Device type code.
- uuid string
- Device unique identifier.
- vendor
Configuration {[key: string]: string} - Map of vendor specific configuration parameters for a device
(controller1, activationKey, managementType, siteId, systemIpAddress, private_address, private_cidr_mask, private_gateway, license_key, license_id)
ssh-key
- (Optional) Definition of SSH key that will be provisioned on a device (max one key). See SSH Key below for more details.
- version string
- Device software software version.
- wan
Interface stringId - device interface id picked for WAN
- zone
Code string - Device location zone code.
- account_
number str - Billing account number for a device.
- acl_
template_ strid - Identifier of a WAN interface ACL template that will be applied on the device.
- additional_
bandwidth int - Additional Internet bandwidth, in Mbps, that will be allocated to the device (in addition to default 15Mbps).
- asn int
- (Autonomous System Number) Unique identifier for a network on the internet.
- byol bool
- Boolean value that determines device licensing mode, i.e.,
bring your own license
orsubscription
(default). - cloud_
init_ strfile_ id - Identifier of a cloud init file that will be applied on the device.
- cluster_
details DeviceCluster Details Args - An object that has the cluster details. See Cluster Details below for more details.
- connectivity str
- Device accessibility (INTERNET-ACCESS or PRIVATE or INTERNET-ACCESS-WITH-PRVT-MGMT). If not specified, default will be INTERNET-ACCESS
- core_
count int - Number of CPU cores used by device. (NOTE: Use this field to resize your device. When resizing your HA devices, primary device will be upgraded first. If the upgrade failed, device will be automatically rolled back to the previous state with original core number.)
- diverse_
device_ strid - Unique ID of an existing device. Use this field to let Equinix know if you want your new device to be in a different location from any existing virtual device. This field is only meaningful for single devices.
- diverse_
device_ strname - Name of the device with diverse device UUID. This field is returned in device details if the device is created by passing diverse_device_id.
- hostname str
- Device hostname prefix.
- ibx str
- Device location Equinix Business Exchange name.
- interface_
count int - Number of network interfaces on a device. If not specified, default number for a given device type will be used.
- interfaces
Sequence[Device
Interface Args] - List of device interfaces. See Interface Attribute below for more details.
- license_
file str - Path to the license file that will be uploaded and applied on a device. Applicable for some device types in BYOL licensing mode.
- license_
file_ strid - Identifier of a license file that will be applied on the device.
- license_
status str - Device license registration status. Possible values are
APPLYING_LICENSE
,REGISTERED
,APPLIED
,WAITING_FOR_CLUSTER_SETUP
,REGISTRATION_FAILED
. - license_
token str - License Token applicable for some device types in BYOL licensing mode.
- metro_
code str - Device location metro code.
- mgmt_
acl_ strtemplate_ uuid - Identifier of an MGMT interface ACL template that will be applied on the device.
- name str
- Device name.
- notifications Sequence[str]
- List of email addresses that will receive device status notifications.
- order_
reference str - Name/number used to identify device order on the invoice.
- package_
code str - Device software package code.
- project_
id str - Unique Identifier for the project resource where the device is scoped to.If you leave it out, the device will be created under the default project id of your organization.
- purchase_
order_ strnumber - Purchase order number associated with a device order.
- redundancy_
type str - Device redundancy type applicable for HA devices, either primary or secondary.
- redundant_
id str - Unique identifier for a redundant device applicable for HA devices.
- region str
- Device location region.
- secondary_
device DeviceSecondary Device Args - Definition of secondary device for redundant device configurations. See Secondary Device below for more details.
- self_
managed bool - Boolean value that determines device management mode, i.e.,
self-managed
orEquinix-managed
(default). - ssh_
ip_ straddress - IP address of SSH enabled interface on the device.
- ssh_
ip_ strfqdn - FQDN of SSH enabled interface on the device.
- ssh_
key DeviceSsh Key Args - Definition of SSH key that will be provisioned on a device
- status str
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - term_
length int - Device term length.
- throughput int
- Device license throughput.
- throughput_
unit str | ThroughputUnit - License throughput unit. One of
Mbps
orGbps
. - type_
code str - Device type code.
- uuid str
- Device unique identifier.
- vendor_
configuration Mapping[str, str] - Map of vendor specific configuration parameters for a device
(controller1, activationKey, managementType, siteId, systemIpAddress, private_address, private_cidr_mask, private_gateway, license_key, license_id)
ssh-key
- (Optional) Definition of SSH key that will be provisioned on a device (max one key). See SSH Key below for more details.
- version str
- Device software software version.
- wan_
interface_ strid - device interface id picked for WAN
- zone_
code str - Device location zone code.
- account
Number String - Billing account number for a device.
- acl
Template StringId - Identifier of a WAN interface ACL template that will be applied on the device.
- additional
Bandwidth Number - Additional Internet bandwidth, in Mbps, that will be allocated to the device (in addition to default 15Mbps).
- asn Number
- (Autonomous System Number) Unique identifier for a network on the internet.
- byol Boolean
- Boolean value that determines device licensing mode, i.e.,
bring your own license
orsubscription
(default). - cloud
Init StringFile Id - Identifier of a cloud init file that will be applied on the device.
- cluster
Details Property Map - An object that has the cluster details. See Cluster Details below for more details.
- connectivity String
- Device accessibility (INTERNET-ACCESS or PRIVATE or INTERNET-ACCESS-WITH-PRVT-MGMT). If not specified, default will be INTERNET-ACCESS
- core
Count Number - Number of CPU cores used by device. (NOTE: Use this field to resize your device. When resizing your HA devices, primary device will be upgraded first. If the upgrade failed, device will be automatically rolled back to the previous state with original core number.)
- diverse
Device StringId - Unique ID of an existing device. Use this field to let Equinix know if you want your new device to be in a different location from any existing virtual device. This field is only meaningful for single devices.
- diverse
Device StringName - Name of the device with diverse device UUID. This field is returned in device details if the device is created by passing diverse_device_id.
- hostname String
- Device hostname prefix.
- ibx String
- Device location Equinix Business Exchange name.
- interface
Count Number - Number of network interfaces on a device. If not specified, default number for a given device type will be used.
- interfaces List<Property Map>
- List of device interfaces. See Interface Attribute below for more details.
- license
File String - Path to the license file that will be uploaded and applied on a device. Applicable for some device types in BYOL licensing mode.
- license
File StringId - Identifier of a license file that will be applied on the device.
- license
Status String - Device license registration status. Possible values are
APPLYING_LICENSE
,REGISTERED
,APPLIED
,WAITING_FOR_CLUSTER_SETUP
,REGISTRATION_FAILED
. - license
Token String - License Token applicable for some device types in BYOL licensing mode.
- metro
Code String - Device location metro code.
- mgmt
Acl StringTemplate Uuid - Identifier of an MGMT interface ACL template that will be applied on the device.
- name String
- Device name.
- notifications List<String>
- List of email addresses that will receive device status notifications.
- order
Reference String - Name/number used to identify device order on the invoice.
- package
Code String - Device software package code.
- project
Id String - Unique Identifier for the project resource where the device is scoped to.If you leave it out, the device will be created under the default project id of your organization.
- purchase
Order StringNumber - Purchase order number associated with a device order.
- redundancy
Type String - Device redundancy type applicable for HA devices, either primary or secondary.
- redundant
Id String - Unique identifier for a redundant device applicable for HA devices.
- region String
- Device location region.
- secondary
Device Property Map - Definition of secondary device for redundant device configurations. See Secondary Device below for more details.
- self
Managed Boolean - Boolean value that determines device management mode, i.e.,
self-managed
orEquinix-managed
(default). - ssh
Ip StringAddress - IP address of SSH enabled interface on the device.
- ssh
Ip StringFqdn - FQDN of SSH enabled interface on the device.
- ssh
Key Property Map - Definition of SSH key that will be provisioned on a device
- status String
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - term
Length Number - Device term length.
- throughput Number
- Device license throughput.
- throughput
Unit String | "Mbps" | "Gbps" - License throughput unit. One of
Mbps
orGbps
. - type
Code String - Device type code.
- uuid String
- Device unique identifier.
- vendor
Configuration Map<String> - Map of vendor specific configuration parameters for a device
(controller1, activationKey, managementType, siteId, systemIpAddress, private_address, private_cidr_mask, private_gateway, license_key, license_id)
ssh-key
- (Optional) Definition of SSH key that will be provisioned on a device (max one key). See SSH Key below for more details.
- version String
- Device software software version.
- wan
Interface StringId - device interface id picked for WAN
- zone
Code String - Device location zone code.
Supporting Types
DeviceClusterDetails, DeviceClusterDetailsArgs
- Cluster
Name string - The name of the cluster device
- Node0
Device
Cluster Details Node0 - An object that has
node0
configuration. See Cluster Details - Nodes below for more details. - Node1
Device
Cluster Details Node1 - An object that has
node1
configuration. See Cluster Details - Nodes below for more details. - Cluster
Id string - The ID of the cluster.
- Num
Of intNodes - The number of nodes in the cluster.
- Cluster
Name string - The name of the cluster device
- Node0
Device
Cluster Details Node0 - An object that has
node0
configuration. See Cluster Details - Nodes below for more details. - Node1
Device
Cluster Details Node1 - An object that has
node1
configuration. See Cluster Details - Nodes below for more details. - Cluster
Id string - The ID of the cluster.
- Num
Of intNodes - The number of nodes in the cluster.
- cluster
Name String - The name of the cluster device
- node0
Device
Cluster Details Node0 - An object that has
node0
configuration. See Cluster Details - Nodes below for more details. - node1
Device
Cluster Details Node1 - An object that has
node1
configuration. See Cluster Details - Nodes below for more details. - cluster
Id String - The ID of the cluster.
- num
Of IntegerNodes - The number of nodes in the cluster.
- cluster
Name string - The name of the cluster device
- node0
Device
Cluster Details Node0 - An object that has
node0
configuration. See Cluster Details - Nodes below for more details. - node1
Device
Cluster Details Node1 - An object that has
node1
configuration. See Cluster Details - Nodes below for more details. - cluster
Id string - The ID of the cluster.
- num
Of numberNodes - The number of nodes in the cluster.
- cluster_
name str - The name of the cluster device
- node0
Device
Cluster Details Node0 - An object that has
node0
configuration. See Cluster Details - Nodes below for more details. - node1
Device
Cluster Details Node1 - An object that has
node1
configuration. See Cluster Details - Nodes below for more details. - cluster_
id str - The ID of the cluster.
- num_
of_ intnodes - The number of nodes in the cluster.
- cluster
Name String - The name of the cluster device
- node0 Property Map
- An object that has
node0
configuration. See Cluster Details - Nodes below for more details. - node1 Property Map
- An object that has
node1
configuration. See Cluster Details - Nodes below for more details. - cluster
Id String - The ID of the cluster.
- num
Of NumberNodes - The number of nodes in the cluster.
DeviceClusterDetailsNode0, DeviceClusterDetailsNode0Args
- License
File stringId - License file id. This is necessary for Fortinet and Juniper clusters.
- License
Token string - License token. This is necessary for Palo Alto clusters.
- Name string
- Device name.
- Uuid string
- Device unique identifier.
- Vendor
Configuration DeviceCluster Details Node0Vendor Configuration - An object that has fields relevant to the vendor of the cluster device. See Cluster Details - Nodes - Vendor Configuration below for more details.
- License
File stringId - License file id. This is necessary for Fortinet and Juniper clusters.
- License
Token string - License token. This is necessary for Palo Alto clusters.
- Name string
- Device name.
- Uuid string
- Device unique identifier.
- Vendor
Configuration DeviceCluster Details Node0Vendor Configuration - An object that has fields relevant to the vendor of the cluster device. See Cluster Details - Nodes - Vendor Configuration below for more details.
- license
File StringId - License file id. This is necessary for Fortinet and Juniper clusters.
- license
Token String - License token. This is necessary for Palo Alto clusters.
- name String
- Device name.
- uuid String
- Device unique identifier.
- vendor
Configuration DeviceCluster Details Node0Vendor Configuration - An object that has fields relevant to the vendor of the cluster device. See Cluster Details - Nodes - Vendor Configuration below for more details.
- license
File stringId - License file id. This is necessary for Fortinet and Juniper clusters.
- license
Token string - License token. This is necessary for Palo Alto clusters.
- name string
- Device name.
- uuid string
- Device unique identifier.
- vendor
Configuration DeviceCluster Details Node0Vendor Configuration - An object that has fields relevant to the vendor of the cluster device. See Cluster Details - Nodes - Vendor Configuration below for more details.
- license_
file_ strid - License file id. This is necessary for Fortinet and Juniper clusters.
- license_
token str - License token. This is necessary for Palo Alto clusters.
- name str
- Device name.
- uuid str
- Device unique identifier.
- vendor_
configuration DeviceCluster Details Node0Vendor Configuration - An object that has fields relevant to the vendor of the cluster device. See Cluster Details - Nodes - Vendor Configuration below for more details.
- license
File StringId - License file id. This is necessary for Fortinet and Juniper clusters.
- license
Token String - License token. This is necessary for Palo Alto clusters.
- name String
- Device name.
- uuid String
- Device unique identifier.
- vendor
Configuration Property Map - An object that has fields relevant to the vendor of the cluster device. See Cluster Details - Nodes - Vendor Configuration below for more details.
DeviceClusterDetailsNode0VendorConfiguration, DeviceClusterDetailsNode0VendorConfigurationArgs
- Activation
Key string - Activation key. This is required for Velocloud clusters.
- Admin
Password string - The administrative password of the device. You can use it to log in to the console. This field is not available for all device types.
- Controller1 string
- System IP Address. Mandatory for the Fortinet SDWAN cluster device.
- Controller
Fqdn string - Controller fqdn. This is required for Velocloud clusters.
- Hostname string
- Hostname. This is necessary for Palo Alto, Juniper, and Fortinet clusters.
- License
Id string - License id. This field is relevant only for the BlueCat DNS and DHCP Server
- License
Key string - License key. This field is relevant only for the BlueCat DNS and DHCP Server
- Private
Address string - Private address. This field is relevant only for the BlueCat DNS and DHCP Server
- Private
Cidr stringMask - Private CIDR Mask. This field is relevant only for the BlueCat DNS and DHCP Server
- Private
Gateway string - Private gateway. This field is relevant only for the BlueCat DNS and DHCP Server
- Root
Password string - The CLI password of the device. This field is relevant only for the Velocloud SDWAN cluster.
- Activation
Key string - Activation key. This is required for Velocloud clusters.
- Admin
Password string - The administrative password of the device. You can use it to log in to the console. This field is not available for all device types.
- Controller1 string
- System IP Address. Mandatory for the Fortinet SDWAN cluster device.
- Controller
Fqdn string - Controller fqdn. This is required for Velocloud clusters.
- Hostname string
- Hostname. This is necessary for Palo Alto, Juniper, and Fortinet clusters.
- License
Id string - License id. This field is relevant only for the BlueCat DNS and DHCP Server
- License
Key string - License key. This field is relevant only for the BlueCat DNS and DHCP Server
- Private
Address string - Private address. This field is relevant only for the BlueCat DNS and DHCP Server
- Private
Cidr stringMask - Private CIDR Mask. This field is relevant only for the BlueCat DNS and DHCP Server
- Private
Gateway string - Private gateway. This field is relevant only for the BlueCat DNS and DHCP Server
- Root
Password string - The CLI password of the device. This field is relevant only for the Velocloud SDWAN cluster.
- activation
Key String - Activation key. This is required for Velocloud clusters.
- admin
Password String - The administrative password of the device. You can use it to log in to the console. This field is not available for all device types.
- controller1 String
- System IP Address. Mandatory for the Fortinet SDWAN cluster device.
- controller
Fqdn String - Controller fqdn. This is required for Velocloud clusters.
- hostname String
- Hostname. This is necessary for Palo Alto, Juniper, and Fortinet clusters.
- license
Id String - License id. This field is relevant only for the BlueCat DNS and DHCP Server
- license
Key String - License key. This field is relevant only for the BlueCat DNS and DHCP Server
- private
Address String - Private address. This field is relevant only for the BlueCat DNS and DHCP Server
- private
Cidr StringMask - Private CIDR Mask. This field is relevant only for the BlueCat DNS and DHCP Server
- private
Gateway String - Private gateway. This field is relevant only for the BlueCat DNS and DHCP Server
- root
Password String - The CLI password of the device. This field is relevant only for the Velocloud SDWAN cluster.
- activation
Key string - Activation key. This is required for Velocloud clusters.
- admin
Password string - The administrative password of the device. You can use it to log in to the console. This field is not available for all device types.
- controller1 string
- System IP Address. Mandatory for the Fortinet SDWAN cluster device.
- controller
Fqdn string - Controller fqdn. This is required for Velocloud clusters.
- hostname string
- Hostname. This is necessary for Palo Alto, Juniper, and Fortinet clusters.
- license
Id string - License id. This field is relevant only for the BlueCat DNS and DHCP Server
- license
Key string - License key. This field is relevant only for the BlueCat DNS and DHCP Server
- private
Address string - Private address. This field is relevant only for the BlueCat DNS and DHCP Server
- private
Cidr stringMask - Private CIDR Mask. This field is relevant only for the BlueCat DNS and DHCP Server
- private
Gateway string - Private gateway. This field is relevant only for the BlueCat DNS and DHCP Server
- root
Password string - The CLI password of the device. This field is relevant only for the Velocloud SDWAN cluster.
- activation_
key str - Activation key. This is required for Velocloud clusters.
- admin_
password str - The administrative password of the device. You can use it to log in to the console. This field is not available for all device types.
- controller1 str
- System IP Address. Mandatory for the Fortinet SDWAN cluster device.
- controller_
fqdn str - Controller fqdn. This is required for Velocloud clusters.
- hostname str
- Hostname. This is necessary for Palo Alto, Juniper, and Fortinet clusters.
- license_
id str - License id. This field is relevant only for the BlueCat DNS and DHCP Server
- license_
key str - License key. This field is relevant only for the BlueCat DNS and DHCP Server
- private_
address str - Private address. This field is relevant only for the BlueCat DNS and DHCP Server
- private_
cidr_ strmask - Private CIDR Mask. This field is relevant only for the BlueCat DNS and DHCP Server
- private_
gateway str - Private gateway. This field is relevant only for the BlueCat DNS and DHCP Server
- root_
password str - The CLI password of the device. This field is relevant only for the Velocloud SDWAN cluster.
- activation
Key String - Activation key. This is required for Velocloud clusters.
- admin
Password String - The administrative password of the device. You can use it to log in to the console. This field is not available for all device types.
- controller1 String
- System IP Address. Mandatory for the Fortinet SDWAN cluster device.
- controller
Fqdn String - Controller fqdn. This is required for Velocloud clusters.
- hostname String
- Hostname. This is necessary for Palo Alto, Juniper, and Fortinet clusters.
- license
Id String - License id. This field is relevant only for the BlueCat DNS and DHCP Server
- license
Key String - License key. This field is relevant only for the BlueCat DNS and DHCP Server
- private
Address String - Private address. This field is relevant only for the BlueCat DNS and DHCP Server
- private
Cidr StringMask - Private CIDR Mask. This field is relevant only for the BlueCat DNS and DHCP Server
- private
Gateway String - Private gateway. This field is relevant only for the BlueCat DNS and DHCP Server
- root
Password String - The CLI password of the device. This field is relevant only for the Velocloud SDWAN cluster.
DeviceClusterDetailsNode1, DeviceClusterDetailsNode1Args
- License
File stringId - License file id. This is necessary for Fortinet and Juniper clusters.
- License
Token string - License token. This is necessary for Palo Alto clusters.
- Name string
- Device name.
- Uuid string
- Device unique identifier.
- Vendor
Configuration DeviceCluster Details Node1Vendor Configuration - An object that has fields relevant to the vendor of the cluster device. See Cluster Details - Nodes - Vendor Configuration below for more details.
- License
File stringId - License file id. This is necessary for Fortinet and Juniper clusters.
- License
Token string - License token. This is necessary for Palo Alto clusters.
- Name string
- Device name.
- Uuid string
- Device unique identifier.
- Vendor
Configuration DeviceCluster Details Node1Vendor Configuration - An object that has fields relevant to the vendor of the cluster device. See Cluster Details - Nodes - Vendor Configuration below for more details.
- license
File StringId - License file id. This is necessary for Fortinet and Juniper clusters.
- license
Token String - License token. This is necessary for Palo Alto clusters.
- name String
- Device name.
- uuid String
- Device unique identifier.
- vendor
Configuration DeviceCluster Details Node1Vendor Configuration - An object that has fields relevant to the vendor of the cluster device. See Cluster Details - Nodes - Vendor Configuration below for more details.
- license
File stringId - License file id. This is necessary for Fortinet and Juniper clusters.
- license
Token string - License token. This is necessary for Palo Alto clusters.
- name string
- Device name.
- uuid string
- Device unique identifier.
- vendor
Configuration DeviceCluster Details Node1Vendor Configuration - An object that has fields relevant to the vendor of the cluster device. See Cluster Details - Nodes - Vendor Configuration below for more details.
- license_
file_ strid - License file id. This is necessary for Fortinet and Juniper clusters.
- license_
token str - License token. This is necessary for Palo Alto clusters.
- name str
- Device name.
- uuid str
- Device unique identifier.
- vendor_
configuration DeviceCluster Details Node1Vendor Configuration - An object that has fields relevant to the vendor of the cluster device. See Cluster Details - Nodes - Vendor Configuration below for more details.
- license
File StringId - License file id. This is necessary for Fortinet and Juniper clusters.
- license
Token String - License token. This is necessary for Palo Alto clusters.
- name String
- Device name.
- uuid String
- Device unique identifier.
- vendor
Configuration Property Map - An object that has fields relevant to the vendor of the cluster device. See Cluster Details - Nodes - Vendor Configuration below for more details.
DeviceClusterDetailsNode1VendorConfiguration, DeviceClusterDetailsNode1VendorConfigurationArgs
- Activation
Key string - Activation key. This is required for Velocloud clusters.
- Admin
Password string - The administrative password of the device. You can use it to log in to the console. This field is not available for all device types.
- Controller1 string
- System IP Address. Mandatory for the Fortinet SDWAN cluster device.
- Controller
Fqdn string - Controller fqdn. This is required for Velocloud clusters.
- Hostname string
- Hostname. This is necessary for Palo Alto, Juniper, and Fortinet clusters.
- License
Id string - License id. This field is relevant only for the BlueCat DNS and DHCP Server
- License
Key string - License key. This field is relevant only for the BlueCat DNS and DHCP Server
- Private
Address string - Private address. This field is relevant only for the BlueCat DNS and DHCP Server
- Private
Cidr stringMask - Private CIDR Mask. This field is relevant only for the BlueCat DNS and DHCP Server
- Private
Gateway string - Private gateway. This field is relevant only for the BlueCat DNS and DHCP Server
- Root
Password string - The CLI password of the device. This field is relevant only for the Velocloud SDWAN cluster.
- Activation
Key string - Activation key. This is required for Velocloud clusters.
- Admin
Password string - The administrative password of the device. You can use it to log in to the console. This field is not available for all device types.
- Controller1 string
- System IP Address. Mandatory for the Fortinet SDWAN cluster device.
- Controller
Fqdn string - Controller fqdn. This is required for Velocloud clusters.
- Hostname string
- Hostname. This is necessary for Palo Alto, Juniper, and Fortinet clusters.
- License
Id string - License id. This field is relevant only for the BlueCat DNS and DHCP Server
- License
Key string - License key. This field is relevant only for the BlueCat DNS and DHCP Server
- Private
Address string - Private address. This field is relevant only for the BlueCat DNS and DHCP Server
- Private
Cidr stringMask - Private CIDR Mask. This field is relevant only for the BlueCat DNS and DHCP Server
- Private
Gateway string - Private gateway. This field is relevant only for the BlueCat DNS and DHCP Server
- Root
Password string - The CLI password of the device. This field is relevant only for the Velocloud SDWAN cluster.
- activation
Key String - Activation key. This is required for Velocloud clusters.
- admin
Password String - The administrative password of the device. You can use it to log in to the console. This field is not available for all device types.
- controller1 String
- System IP Address. Mandatory for the Fortinet SDWAN cluster device.
- controller
Fqdn String - Controller fqdn. This is required for Velocloud clusters.
- hostname String
- Hostname. This is necessary for Palo Alto, Juniper, and Fortinet clusters.
- license
Id String - License id. This field is relevant only for the BlueCat DNS and DHCP Server
- license
Key String - License key. This field is relevant only for the BlueCat DNS and DHCP Server
- private
Address String - Private address. This field is relevant only for the BlueCat DNS and DHCP Server
- private
Cidr StringMask - Private CIDR Mask. This field is relevant only for the BlueCat DNS and DHCP Server
- private
Gateway String - Private gateway. This field is relevant only for the BlueCat DNS and DHCP Server
- root
Password String - The CLI password of the device. This field is relevant only for the Velocloud SDWAN cluster.
- activation
Key string - Activation key. This is required for Velocloud clusters.
- admin
Password string - The administrative password of the device. You can use it to log in to the console. This field is not available for all device types.
- controller1 string
- System IP Address. Mandatory for the Fortinet SDWAN cluster device.
- controller
Fqdn string - Controller fqdn. This is required for Velocloud clusters.
- hostname string
- Hostname. This is necessary for Palo Alto, Juniper, and Fortinet clusters.
- license
Id string - License id. This field is relevant only for the BlueCat DNS and DHCP Server
- license
Key string - License key. This field is relevant only for the BlueCat DNS and DHCP Server
- private
Address string - Private address. This field is relevant only for the BlueCat DNS and DHCP Server
- private
Cidr stringMask - Private CIDR Mask. This field is relevant only for the BlueCat DNS and DHCP Server
- private
Gateway string - Private gateway. This field is relevant only for the BlueCat DNS and DHCP Server
- root
Password string - The CLI password of the device. This field is relevant only for the Velocloud SDWAN cluster.
- activation_
key str - Activation key. This is required for Velocloud clusters.
- admin_
password str - The administrative password of the device. You can use it to log in to the console. This field is not available for all device types.
- controller1 str
- System IP Address. Mandatory for the Fortinet SDWAN cluster device.
- controller_
fqdn str - Controller fqdn. This is required for Velocloud clusters.
- hostname str
- Hostname. This is necessary for Palo Alto, Juniper, and Fortinet clusters.
- license_
id str - License id. This field is relevant only for the BlueCat DNS and DHCP Server
- license_
key str - License key. This field is relevant only for the BlueCat DNS and DHCP Server
- private_
address str - Private address. This field is relevant only for the BlueCat DNS and DHCP Server
- private_
cidr_ strmask - Private CIDR Mask. This field is relevant only for the BlueCat DNS and DHCP Server
- private_
gateway str - Private gateway. This field is relevant only for the BlueCat DNS and DHCP Server
- root_
password str - The CLI password of the device. This field is relevant only for the Velocloud SDWAN cluster.
- activation
Key String - Activation key. This is required for Velocloud clusters.
- admin
Password String - The administrative password of the device. You can use it to log in to the console. This field is not available for all device types.
- controller1 String
- System IP Address. Mandatory for the Fortinet SDWAN cluster device.
- controller
Fqdn String - Controller fqdn. This is required for Velocloud clusters.
- hostname String
- Hostname. This is necessary for Palo Alto, Juniper, and Fortinet clusters.
- license
Id String - License id. This field is relevant only for the BlueCat DNS and DHCP Server
- license
Key String - License key. This field is relevant only for the BlueCat DNS and DHCP Server
- private
Address String - Private address. This field is relevant only for the BlueCat DNS and DHCP Server
- private
Cidr StringMask - Private CIDR Mask. This field is relevant only for the BlueCat DNS and DHCP Server
- private
Gateway String - Private gateway. This field is relevant only for the BlueCat DNS and DHCP Server
- root
Password String - The CLI password of the device. This field is relevant only for the Velocloud SDWAN cluster.
DeviceInterface, DeviceInterfaceArgs
- Assigned
Type string - interface management type (Equinix Managed or empty).
- Id int
- interface identifier.
- Ip
Address string - interface IP address.
- Mac
Address string - interface MAC address.
- Name string
- Device name.
- Operational
Status string - interface operational status. One of
up
,down
. - Status string
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - Type string
- interface type.
- Assigned
Type string - interface management type (Equinix Managed or empty).
- Id int
- interface identifier.
- Ip
Address string - interface IP address.
- Mac
Address string - interface MAC address.
- Name string
- Device name.
- Operational
Status string - interface operational status. One of
up
,down
. - Status string
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - Type string
- interface type.
- assigned
Type String - interface management type (Equinix Managed or empty).
- id Integer
- interface identifier.
- ip
Address String - interface IP address.
- mac
Address String - interface MAC address.
- name String
- Device name.
- operational
Status String - interface operational status. One of
up
,down
. - status String
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - type String
- interface type.
- assigned
Type string - interface management type (Equinix Managed or empty).
- id number
- interface identifier.
- ip
Address string - interface IP address.
- mac
Address string - interface MAC address.
- name string
- Device name.
- operational
Status string - interface operational status. One of
up
,down
. - status string
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - type string
- interface type.
- assigned_
type str - interface management type (Equinix Managed or empty).
- id int
- interface identifier.
- ip_
address str - interface IP address.
- mac_
address str - interface MAC address.
- name str
- Device name.
- operational_
status str - interface operational status. One of
up
,down
. - status str
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - type str
- interface type.
- assigned
Type String - interface management type (Equinix Managed or empty).
- id Number
- interface identifier.
- ip
Address String - interface IP address.
- mac
Address String - interface MAC address.
- name String
- Device name.
- operational
Status String - interface operational status. One of
up
,down
. - status String
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - type String
- interface type.
DeviceSecondaryDevice, DeviceSecondaryDeviceArgs
- Account
Number string - Billing account number for secondary device.
- Metro
Code string - Metro location of a secondary device.
- Name string
- Secondary device name.
- Notifications List<string>
- List of email addresses that will receive notifications about secondary device.
- Acl
Template stringId - Identifier of a WAN interface ACL template that will be applied on a secondary device.
- Additional
Bandwidth int - Additional Internet bandwidth, in Mbps, for a secondary device.
- Asn int
- (Autonomous System Number) Unique identifier for a network on the internet.
- Cloud
Init stringFile Id - Identifier of a cloud init file that will be applied on a secondary device.
- Hostname string
- Secondary device hostname.
- Ibx string
- Device location Equinix Business Exchange name.
- Interfaces
List<Device
Secondary Device Interface> - List of device interfaces. See Interface Attribute below for more details.
- License
File string - Path to the license file that will be uploaded and applied on a secondary device. Applicable for some device types in BYOL licensing mode.
- License
File stringId - Identifier of a license file that will be applied on a secondary device.
- License
Status string - Device license registration status. Possible values are
APPLYING_LICENSE
,REGISTERED
,APPLIED
,WAITING_FOR_CLUSTER_SETUP
,REGISTRATION_FAILED
. - License
Token string - License Token can be provided for some device types o the device.
- Mgmt
Acl stringTemplate Uuid - Identifier of an MGMT interface ACL template that will be
applied on a secondary device.
ssh-key
- (Optional) Up to one definition of SSH key that will be provisioned on a secondary device.
- Project
Id string - Unique Identifier for the project resource where the device is scoped to.If you leave it out, the device will be created under the default project id of your organization.
- Redundancy
Type string - Device redundancy type applicable for HA devices, either primary or secondary.
- Redundant
Id string - Unique identifier for a redundant device applicable for HA devices.
- Region string
- Device location region.
- Ssh
Ip stringAddress - IP address of SSH enabled interface on the device.
- Ssh
Ip stringFqdn - FQDN of SSH enabled interface on the device.
- Ssh
Key DeviceSecondary Device Ssh Key - Definition of SSH key that will be provisioned on a device
- Status string
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - Uuid string
- Device unique identifier.
- Vendor
Configuration Dictionary<string, string> - Key/Value pairs of vendor specific configuration parameters
for a secondary device. Key values are
controller1
,activationKey
,managementType
,siteId
,systemIpAddress
,private_address
,private_cidr_mask
,private_gateway
,license_key
,license_id
. - Wan
Interface stringId - device interface id picked for WAN
- Zone
Code string - Device location zone code.
- Account
Number string - Billing account number for secondary device.
- Metro
Code string - Metro location of a secondary device.
- Name string
- Secondary device name.
- Notifications []string
- List of email addresses that will receive notifications about secondary device.
- Acl
Template stringId - Identifier of a WAN interface ACL template that will be applied on a secondary device.
- Additional
Bandwidth int - Additional Internet bandwidth, in Mbps, for a secondary device.
- Asn int
- (Autonomous System Number) Unique identifier for a network on the internet.
- Cloud
Init stringFile Id - Identifier of a cloud init file that will be applied on a secondary device.
- Hostname string
- Secondary device hostname.
- Ibx string
- Device location Equinix Business Exchange name.
- Interfaces
[]Device
Secondary Device Interface - List of device interfaces. See Interface Attribute below for more details.
- License
File string - Path to the license file that will be uploaded and applied on a secondary device. Applicable for some device types in BYOL licensing mode.
- License
File stringId - Identifier of a license file that will be applied on a secondary device.
- License
Status string - Device license registration status. Possible values are
APPLYING_LICENSE
,REGISTERED
,APPLIED
,WAITING_FOR_CLUSTER_SETUP
,REGISTRATION_FAILED
. - License
Token string - License Token can be provided for some device types o the device.
- Mgmt
Acl stringTemplate Uuid - Identifier of an MGMT interface ACL template that will be
applied on a secondary device.
ssh-key
- (Optional) Up to one definition of SSH key that will be provisioned on a secondary device.
- Project
Id string - Unique Identifier for the project resource where the device is scoped to.If you leave it out, the device will be created under the default project id of your organization.
- Redundancy
Type string - Device redundancy type applicable for HA devices, either primary or secondary.
- Redundant
Id string - Unique identifier for a redundant device applicable for HA devices.
- Region string
- Device location region.
- Ssh
Ip stringAddress - IP address of SSH enabled interface on the device.
- Ssh
Ip stringFqdn - FQDN of SSH enabled interface on the device.
- Ssh
Key DeviceSecondary Device Ssh Key - Definition of SSH key that will be provisioned on a device
- Status string
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - Uuid string
- Device unique identifier.
- Vendor
Configuration map[string]string - Key/Value pairs of vendor specific configuration parameters
for a secondary device. Key values are
controller1
,activationKey
,managementType
,siteId
,systemIpAddress
,private_address
,private_cidr_mask
,private_gateway
,license_key
,license_id
. - Wan
Interface stringId - device interface id picked for WAN
- Zone
Code string - Device location zone code.
- account
Number String - Billing account number for secondary device.
- metro
Code String - Metro location of a secondary device.
- name String
- Secondary device name.
- notifications List<String>
- List of email addresses that will receive notifications about secondary device.
- acl
Template StringId - Identifier of a WAN interface ACL template that will be applied on a secondary device.
- additional
Bandwidth Integer - Additional Internet bandwidth, in Mbps, for a secondary device.
- asn Integer
- (Autonomous System Number) Unique identifier for a network on the internet.
- cloud
Init StringFile Id - Identifier of a cloud init file that will be applied on a secondary device.
- hostname String
- Secondary device hostname.
- ibx String
- Device location Equinix Business Exchange name.
- interfaces
List<Device
Secondary Device Interface> - List of device interfaces. See Interface Attribute below for more details.
- license
File String - Path to the license file that will be uploaded and applied on a secondary device. Applicable for some device types in BYOL licensing mode.
- license
File StringId - Identifier of a license file that will be applied on a secondary device.
- license
Status String - Device license registration status. Possible values are
APPLYING_LICENSE
,REGISTERED
,APPLIED
,WAITING_FOR_CLUSTER_SETUP
,REGISTRATION_FAILED
. - license
Token String - License Token can be provided for some device types o the device.
- mgmt
Acl StringTemplate Uuid - Identifier of an MGMT interface ACL template that will be
applied on a secondary device.
ssh-key
- (Optional) Up to one definition of SSH key that will be provisioned on a secondary device.
- project
Id String - Unique Identifier for the project resource where the device is scoped to.If you leave it out, the device will be created under the default project id of your organization.
- redundancy
Type String - Device redundancy type applicable for HA devices, either primary or secondary.
- redundant
Id String - Unique identifier for a redundant device applicable for HA devices.
- region String
- Device location region.
- ssh
Ip StringAddress - IP address of SSH enabled interface on the device.
- ssh
Ip StringFqdn - FQDN of SSH enabled interface on the device.
- ssh
Key DeviceSecondary Device Ssh Key - Definition of SSH key that will be provisioned on a device
- status String
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - uuid String
- Device unique identifier.
- vendor
Configuration Map<String,String> - Key/Value pairs of vendor specific configuration parameters
for a secondary device. Key values are
controller1
,activationKey
,managementType
,siteId
,systemIpAddress
,private_address
,private_cidr_mask
,private_gateway
,license_key
,license_id
. - wan
Interface StringId - device interface id picked for WAN
- zone
Code String - Device location zone code.
- account
Number string - Billing account number for secondary device.
- metro
Code string - Metro location of a secondary device.
- name string
- Secondary device name.
- notifications string[]
- List of email addresses that will receive notifications about secondary device.
- acl
Template stringId - Identifier of a WAN interface ACL template that will be applied on a secondary device.
- additional
Bandwidth number - Additional Internet bandwidth, in Mbps, for a secondary device.
- asn number
- (Autonomous System Number) Unique identifier for a network on the internet.
- cloud
Init stringFile Id - Identifier of a cloud init file that will be applied on a secondary device.
- hostname string
- Secondary device hostname.
- ibx string
- Device location Equinix Business Exchange name.
- interfaces
Device
Secondary Device Interface[] - List of device interfaces. See Interface Attribute below for more details.
- license
File string - Path to the license file that will be uploaded and applied on a secondary device. Applicable for some device types in BYOL licensing mode.
- license
File stringId - Identifier of a license file that will be applied on a secondary device.
- license
Status string - Device license registration status. Possible values are
APPLYING_LICENSE
,REGISTERED
,APPLIED
,WAITING_FOR_CLUSTER_SETUP
,REGISTRATION_FAILED
. - license
Token string - License Token can be provided for some device types o the device.
- mgmt
Acl stringTemplate Uuid - Identifier of an MGMT interface ACL template that will be
applied on a secondary device.
ssh-key
- (Optional) Up to one definition of SSH key that will be provisioned on a secondary device.
- project
Id string - Unique Identifier for the project resource where the device is scoped to.If you leave it out, the device will be created under the default project id of your organization.
- redundancy
Type string - Device redundancy type applicable for HA devices, either primary or secondary.
- redundant
Id string - Unique identifier for a redundant device applicable for HA devices.
- region string
- Device location region.
- ssh
Ip stringAddress - IP address of SSH enabled interface on the device.
- ssh
Ip stringFqdn - FQDN of SSH enabled interface on the device.
- ssh
Key DeviceSecondary Device Ssh Key - Definition of SSH key that will be provisioned on a device
- status string
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - uuid string
- Device unique identifier.
- vendor
Configuration {[key: string]: string} - Key/Value pairs of vendor specific configuration parameters
for a secondary device. Key values are
controller1
,activationKey
,managementType
,siteId
,systemIpAddress
,private_address
,private_cidr_mask
,private_gateway
,license_key
,license_id
. - wan
Interface stringId - device interface id picked for WAN
- zone
Code string - Device location zone code.
- account_
number str - Billing account number for secondary device.
- metro_
code str - Metro location of a secondary device.
- name str
- Secondary device name.
- notifications Sequence[str]
- List of email addresses that will receive notifications about secondary device.
- acl_
template_ strid - Identifier of a WAN interface ACL template that will be applied on a secondary device.
- additional_
bandwidth int - Additional Internet bandwidth, in Mbps, for a secondary device.
- asn int
- (Autonomous System Number) Unique identifier for a network on the internet.
- cloud_
init_ strfile_ id - Identifier of a cloud init file that will be applied on a secondary device.
- hostname str
- Secondary device hostname.
- ibx str
- Device location Equinix Business Exchange name.
- interfaces
Sequence[Device
Secondary Device Interface] - List of device interfaces. See Interface Attribute below for more details.
- license_
file str - Path to the license file that will be uploaded and applied on a secondary device. Applicable for some device types in BYOL licensing mode.
- license_
file_ strid - Identifier of a license file that will be applied on a secondary device.
- license_
status str - Device license registration status. Possible values are
APPLYING_LICENSE
,REGISTERED
,APPLIED
,WAITING_FOR_CLUSTER_SETUP
,REGISTRATION_FAILED
. - license_
token str - License Token can be provided for some device types o the device.
- mgmt_
acl_ strtemplate_ uuid - Identifier of an MGMT interface ACL template that will be
applied on a secondary device.
ssh-key
- (Optional) Up to one definition of SSH key that will be provisioned on a secondary device.
- project_
id str - Unique Identifier for the project resource where the device is scoped to.If you leave it out, the device will be created under the default project id of your organization.
- redundancy_
type str - Device redundancy type applicable for HA devices, either primary or secondary.
- redundant_
id str - Unique identifier for a redundant device applicable for HA devices.
- region str
- Device location region.
- ssh_
ip_ straddress - IP address of SSH enabled interface on the device.
- ssh_
ip_ strfqdn - FQDN of SSH enabled interface on the device.
- ssh_
key DeviceSecondary Device Ssh Key - Definition of SSH key that will be provisioned on a device
- status str
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - uuid str
- Device unique identifier.
- vendor_
configuration Mapping[str, str] - Key/Value pairs of vendor specific configuration parameters
for a secondary device. Key values are
controller1
,activationKey
,managementType
,siteId
,systemIpAddress
,private_address
,private_cidr_mask
,private_gateway
,license_key
,license_id
. - wan_
interface_ strid - device interface id picked for WAN
- zone_
code str - Device location zone code.
- account
Number String - Billing account number for secondary device.
- metro
Code String - Metro location of a secondary device.
- name String
- Secondary device name.
- notifications List<String>
- List of email addresses that will receive notifications about secondary device.
- acl
Template StringId - Identifier of a WAN interface ACL template that will be applied on a secondary device.
- additional
Bandwidth Number - Additional Internet bandwidth, in Mbps, for a secondary device.
- asn Number
- (Autonomous System Number) Unique identifier for a network on the internet.
- cloud
Init StringFile Id - Identifier of a cloud init file that will be applied on a secondary device.
- hostname String
- Secondary device hostname.
- ibx String
- Device location Equinix Business Exchange name.
- interfaces List<Property Map>
- List of device interfaces. See Interface Attribute below for more details.
- license
File String - Path to the license file that will be uploaded and applied on a secondary device. Applicable for some device types in BYOL licensing mode.
- license
File StringId - Identifier of a license file that will be applied on a secondary device.
- license
Status String - Device license registration status. Possible values are
APPLYING_LICENSE
,REGISTERED
,APPLIED
,WAITING_FOR_CLUSTER_SETUP
,REGISTRATION_FAILED
. - license
Token String - License Token can be provided for some device types o the device.
- mgmt
Acl StringTemplate Uuid - Identifier of an MGMT interface ACL template that will be
applied on a secondary device.
ssh-key
- (Optional) Up to one definition of SSH key that will be provisioned on a secondary device.
- project
Id String - Unique Identifier for the project resource where the device is scoped to.If you leave it out, the device will be created under the default project id of your organization.
- redundancy
Type String - Device redundancy type applicable for HA devices, either primary or secondary.
- redundant
Id String - Unique identifier for a redundant device applicable for HA devices.
- region String
- Device location region.
- ssh
Ip StringAddress - IP address of SSH enabled interface on the device.
- ssh
Ip StringFqdn - FQDN of SSH enabled interface on the device.
- ssh
Key Property Map - Definition of SSH key that will be provisioned on a device
- status String
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - uuid String
- Device unique identifier.
- vendor
Configuration Map<String> - Key/Value pairs of vendor specific configuration parameters
for a secondary device. Key values are
controller1
,activationKey
,managementType
,siteId
,systemIpAddress
,private_address
,private_cidr_mask
,private_gateway
,license_key
,license_id
. - wan
Interface StringId - device interface id picked for WAN
- zone
Code String - Device location zone code.
DeviceSecondaryDeviceInterface, DeviceSecondaryDeviceInterfaceArgs
- Assigned
Type string - interface management type (Equinix Managed or empty).
- Id int
- interface identifier.
- Ip
Address string - interface IP address.
- Mac
Address string - interface MAC address.
- Name string
- Device name.
- Operational
Status string - interface operational status. One of
up
,down
. - Status string
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - Type string
- interface type.
- Assigned
Type string - interface management type (Equinix Managed or empty).
- Id int
- interface identifier.
- Ip
Address string - interface IP address.
- Mac
Address string - interface MAC address.
- Name string
- Device name.
- Operational
Status string - interface operational status. One of
up
,down
. - Status string
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - Type string
- interface type.
- assigned
Type String - interface management type (Equinix Managed or empty).
- id Integer
- interface identifier.
- ip
Address String - interface IP address.
- mac
Address String - interface MAC address.
- name String
- Device name.
- operational
Status String - interface operational status. One of
up
,down
. - status String
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - type String
- interface type.
- assigned
Type string - interface management type (Equinix Managed or empty).
- id number
- interface identifier.
- ip
Address string - interface IP address.
- mac
Address string - interface MAC address.
- name string
- Device name.
- operational
Status string - interface operational status. One of
up
,down
. - status string
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - type string
- interface type.
- assigned_
type str - interface management type (Equinix Managed or empty).
- id int
- interface identifier.
- ip_
address str - interface IP address.
- mac_
address str - interface MAC address.
- name str
- Device name.
- operational_
status str - interface operational status. One of
up
,down
. - status str
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - type str
- interface type.
- assigned
Type String - interface management type (Equinix Managed or empty).
- id Number
- interface identifier.
- ip
Address String - interface IP address.
- mac
Address String - interface MAC address.
- name String
- Device name.
- operational
Status String - interface operational status. One of
up
,down
. - status String
- interface status. One of
AVAILABLE
,RESERVED
,ASSIGNED
. - type String
- interface type.
DeviceSecondaryDeviceSshKey, DeviceSecondaryDeviceSshKeyArgs
DeviceSshKey, DeviceSshKeyArgs
ThroughputUnit, ThroughputUnitArgs
- Mbps
- Mbps
- Gbps
- Gbps
- Throughput
Unit Mbps - Mbps
- Throughput
Unit Gbps - Gbps
- Mbps
- Mbps
- Gbps
- Gbps
- Mbps
- Mbps
- Gbps
- Gbps
- MBPS
- Mbps
- GBPS
- Gbps
- "Mbps"
- Mbps
- "Gbps"
- Gbps
Package Details
- Repository
- equinix equinix/pulumi-equinix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
equinix
Terraform Provider.