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

equinix.networkedge.NetworkFile

Explore with Pulumi AI

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

    Resource equinix.networkedge.NetworkFile allows creation and management of Equinix Network Edge files.

    Example Usage

    using System.Collections.Generic;
    using System.IO;
    using Pulumi;
    using Equinix = Pulumi.Equinix;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var metro = config.Get("metro") ?? "SV";
        var networkFile = new Equinix.NetworkEdge.NetworkFile("networkFile", new()
        {
            FileName = "Aviatrix-ZTP-file",
            Content = File.ReadAllText("./../assets/aviatrix-cloud-init.txt"),
            MetroCode = metro,
            DeviceTypeCode = "AVIATRIX_EDGE",
            ProcessType = "CLOUD_INIT",
            SelfManaged = true,
            Byol = true,
        });
    
        return new Dictionary<string, object?>
        {
            ["networkFileId"] = networkFile.Id,
            ["networkFileStatus"] = networkFile.Status,
        };
    });
    
    package main
    
    import (
    	"os"
    
    	"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 readFileOrPanic(path string) pulumi.StringPtrInput {
    	data, err := os.ReadFile(path)
    	if err != nil {
    		panic(err.Error())
    	}
    	return pulumi.String(string(data))
    }
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		metro := "SV"
    		if param := cfg.Get("metro"); param != "" {
    			metro = param
    		}
    		networkFile, err := networkedge.NewNetworkFile(ctx, "networkFile", &networkedge.NetworkFileArgs{
    			FileName:       pulumi.String("Aviatrix-ZTP-file"),
    			Content:        readFileOrPanic("./../assets/aviatrix-cloud-init.txt"),
    			MetroCode:      pulumi.String(metro),
    			DeviceTypeCode: pulumi.String("AVIATRIX_EDGE"),
    			ProcessType:    pulumi.String("CLOUD_INIT"),
    			SelfManaged:    pulumi.Bool(true),
    			Byol:           pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		ctx.Export("networkFileId", networkFile.ID())
    		ctx.Export("networkFileStatus", networkFile.Status)
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.equinix.pulumi.networkedge.NetworkFile;
    import com.equinix.pulumi.networkedge.NetworkFileArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.IOException;
    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 metro = config.get("metro").orElse("SV");
    
            String content = null;
            try {
                content = Files.readString(Paths.get("./../assets/aviatrix-cloud-init.txt"));
            } catch (IOException e) {
                e.printStackTrace();
            }
    
            var networkFile = new NetworkFile("networkFile", NetworkFileArgs.builder()        
                .fileName("Aviatrix-ZTP-file")
                .content(content)
                .metroCode(metro)
                .deviceTypeCode("AVIATRIX_EDGE")
                .processType("CLOUD_INIT")
                .selfManaged(true)
                .byol(true)
                .build());
    
            ctx.export("networkFileId", networkFile.id());
            ctx.export("networkFileStatus", networkFile.status());
        }
    }
    
    import pulumi
    import pulumi_equinix as equinix
    
    config = pulumi.Config()
    metro = config.get("metro")
    if metro is None:
        metro = "SV"
    network_file = equinix.networkedge.NetworkFile("networkFile",
        file_name="Aviatrix-ZTP-file",
        content=(lambda path: open(path).read())("./../assets/aviatrix-cloud-init.txt"),
        metro_code=metro,
        device_type_code="AVIATRIX_EDGE",
        process_type="CLOUD_INIT",
        self_managed=True,
        byol=True)
    pulumi.export("networkFileId", network_file.id)
    pulumi.export("networkFileStatus", network_file.status)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as equinix from "@equinix-labs/pulumi-equinix";
    import * as fs from "fs";
    
    const config = new pulumi.Config();
    const metro = config.get("metro") || "SV";
    const networkFile = new equinix.networkedge.NetworkFile("networkFile", {
        fileName: "Aviatrix-ZTP-file",
        content: fs.readFileSync("./../assets/aviatrix-cloud-init.txt"),
        metroCode: metro,
        deviceTypeCode: "AVIATRIX_EDGE",
        processType: "CLOUD_INIT",
        selfManaged: true,
        byol: true,
    });
    export const networkFileId = networkFile.id;
    export const networkFileStatus = networkFile.status;
    
    config:
      metro:
        type: string
        default: SV
    resources:
      networkFile:
        type: equinix:networkedge:NetworkFile
        properties:
          fileName: Aviatrix-ZTP-file
          content:
            fn::readFile: ./../assets/aviatrix-cloud-init.txt
          metroCode: ${metro}
          deviceTypeCode: AVIATRIX_EDGE
          processType: CLOUD_INIT
          selfManaged: true
          byol: true
    outputs:
      networkFileId: ${networkFile.id}
      networkFileStatus: ${networkFile.status}
    

    Create NetworkFile Resource

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

    Constructor syntax

    new NetworkFile(name: string, args: NetworkFileArgs, opts?: CustomResourceOptions);
    @overload
    def NetworkFile(resource_name: str,
                    args: NetworkFileArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def NetworkFile(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    byol: Optional[bool] = None,
                    content: Optional[str] = None,
                    device_type_code: Optional[str] = None,
                    file_name: Optional[str] = None,
                    metro_code: Optional[Union[str, _root_enums.Metro]] = None,
                    process_type: Optional[Union[str, FileType]] = None,
                    self_managed: Optional[bool] = None)
    func NewNetworkFile(ctx *Context, name string, args NetworkFileArgs, opts ...ResourceOption) (*NetworkFile, error)
    public NetworkFile(string name, NetworkFileArgs args, CustomResourceOptions? opts = null)
    public NetworkFile(String name, NetworkFileArgs args)
    public NetworkFile(String name, NetworkFileArgs args, CustomResourceOptions options)
    
    type: equinix:networkedge:NetworkFile
    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 NetworkFileArgs
    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 NetworkFileArgs
    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 NetworkFileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkFileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkFileArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var networkFileResource = new Equinix.NetworkEdge.NetworkFile("networkFileResource", new()
    {
        Byol = false,
        Content = "string",
        DeviceTypeCode = "string",
        FileName = "string",
        MetroCode = "string",
        ProcessType = "string",
        SelfManaged = false,
    });
    
    example, err := networkedge.NewNetworkFile(ctx, "networkFileResource", &networkedge.NetworkFileArgs{
    	Byol:           pulumi.Bool(false),
    	Content:        pulumi.String("string"),
    	DeviceTypeCode: pulumi.String("string"),
    	FileName:       pulumi.String("string"),
    	MetroCode:      pulumi.String("string"),
    	ProcessType:    pulumi.String("string"),
    	SelfManaged:    pulumi.Bool(false),
    })
    
    var networkFileResource = new NetworkFile("networkFileResource", NetworkFileArgs.builder()        
        .byol(false)
        .content("string")
        .deviceTypeCode("string")
        .fileName("string")
        .metroCode("string")
        .processType("string")
        .selfManaged(false)
        .build());
    
    network_file_resource = equinix.networkedge.NetworkFile("networkFileResource",
        byol=False,
        content="string",
        device_type_code="string",
        file_name="string",
        metro_code="string",
        process_type="string",
        self_managed=False)
    
    const networkFileResource = new equinix.networkedge.NetworkFile("networkFileResource", {
        byol: false,
        content: "string",
        deviceTypeCode: "string",
        fileName: "string",
        metroCode: "string",
        processType: "string",
        selfManaged: false,
    });
    
    type: equinix:networkedge:NetworkFile
    properties:
        byol: false
        content: string
        deviceTypeCode: string
        fileName: string
        metroCode: string
        processType: string
        selfManaged: false
    

    NetworkFile 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 NetworkFile resource accepts the following input properties:

    Byol bool
    Boolean value that determines device licensing mode, i.e., bring your own license or subscription.
    Content string
    Uploaded file content, expected to be a UTF-8 encoded string.
    DeviceTypeCode string
    Device type code
    FileName string
    File name.
    MetroCode string | Pulumi.Equinix.Metro
    File upload location metro code. It should match the device location metro code.
    ProcessType string | Pulumi.Equinix.NetworkEdge.FileType
    File process type (LICENSE or CLOUD_INIT).
    SelfManaged bool
    Boolean value that determines device management mode, i.e., self-managed or Equinix-managed.
    Byol bool
    Boolean value that determines device licensing mode, i.e., bring your own license or subscription.
    Content string
    Uploaded file content, expected to be a UTF-8 encoded string.
    DeviceTypeCode string
    Device type code
    FileName string
    File name.
    MetroCode string | Metro
    File upload location metro code. It should match the device location metro code.
    ProcessType string | FileType
    File process type (LICENSE or CLOUD_INIT).
    SelfManaged bool
    Boolean value that determines device management mode, i.e., self-managed or Equinix-managed.
    byol Boolean
    Boolean value that determines device licensing mode, i.e., bring your own license or subscription.
    content String
    Uploaded file content, expected to be a UTF-8 encoded string.
    deviceTypeCode String
    Device type code
    fileName String
    File name.
    metroCode String | Metro
    File upload location metro code. It should match the device location metro code.
    processType String | FileType
    File process type (LICENSE or CLOUD_INIT).
    selfManaged Boolean
    Boolean value that determines device management mode, i.e., self-managed or Equinix-managed.
    byol boolean
    Boolean value that determines device licensing mode, i.e., bring your own license or subscription.
    content string
    Uploaded file content, expected to be a UTF-8 encoded string.
    deviceTypeCode string
    Device type code
    fileName string
    File name.
    metroCode string | Metro
    File upload location metro code. It should match the device location metro code.
    processType string | FileType
    File process type (LICENSE or CLOUD_INIT).
    selfManaged boolean
    Boolean value that determines device management mode, i.e., self-managed or Equinix-managed.
    byol bool
    Boolean value that determines device licensing mode, i.e., bring your own license or subscription.
    content str
    Uploaded file content, expected to be a UTF-8 encoded string.
    device_type_code str
    Device type code
    file_name str
    File name.
    metro_code str | Metro
    File upload location metro code. It should match the device location metro code.
    process_type str | FileType
    File process type (LICENSE or CLOUD_INIT).
    self_managed bool
    Boolean value that determines device management mode, i.e., self-managed or Equinix-managed.
    byol Boolean
    Boolean value that determines device licensing mode, i.e., bring your own license or subscription.
    content String
    Uploaded file content, expected to be a UTF-8 encoded string.
    deviceTypeCode String
    Device type code
    fileName String
    File name.
    metroCode String | "AM" | "DC" | "AT" | "BA" | "BG" | "BX" | "BO" | "BL" | "CL" | "CA" | "CH" | "DA" | "DE" | "DX" | "DB" | "FR" | "GV" | "HH" | "HE" | "HK" | "IL" | "KA" | "LS" | "LD" | "LA" | "MD" | "MA" | "ME" | "MX" | "MI" | "ML" | "MT" | "MB" | "MU" | "NY" | "OS" | "PA" | "PE" | "PH" | "RJ" | "SP" | "SE" | "SL" | "SV" | "SG" | "SO" | "SK" | "SY" | "TY" | "TR" | "VA" | "WA" | "WI" | "ZH"
    File upload location metro code. It should match the device location metro code.
    processType String | "LICENSE" | "CLOUD_INIT"
    File process type (LICENSE or CLOUD_INIT).
    selfManaged Boolean
    Boolean value that determines device management mode, i.e., self-managed or Equinix-managed.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    File upload status.
    Uuid string
    Unique identifier of file resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    File upload status.
    Uuid string
    Unique identifier of file resource.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    File upload status.
    uuid String
    Unique identifier of file resource.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    File upload status.
    uuid string
    Unique identifier of file resource.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    File upload status.
    uuid str
    Unique identifier of file resource.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    File upload status.
    uuid String
    Unique identifier of file resource.

    Look up Existing NetworkFile Resource

    Get an existing NetworkFile 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?: NetworkFileState, opts?: CustomResourceOptions): NetworkFile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            byol: Optional[bool] = None,
            content: Optional[str] = None,
            device_type_code: Optional[str] = None,
            file_name: Optional[str] = None,
            metro_code: Optional[Union[str, _root_enums.Metro]] = None,
            process_type: Optional[Union[str, FileType]] = None,
            self_managed: Optional[bool] = None,
            status: Optional[str] = None,
            uuid: Optional[str] = None) -> NetworkFile
    func GetNetworkFile(ctx *Context, name string, id IDInput, state *NetworkFileState, opts ...ResourceOption) (*NetworkFile, error)
    public static NetworkFile Get(string name, Input<string> id, NetworkFileState? state, CustomResourceOptions? opts = null)
    public static NetworkFile get(String name, Output<String> id, NetworkFileState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Byol bool
    Boolean value that determines device licensing mode, i.e., bring your own license or subscription.
    Content string
    Uploaded file content, expected to be a UTF-8 encoded string.
    DeviceTypeCode string
    Device type code
    FileName string
    File name.
    MetroCode string | Pulumi.Equinix.Metro
    File upload location metro code. It should match the device location metro code.
    ProcessType string | Pulumi.Equinix.NetworkEdge.FileType
    File process type (LICENSE or CLOUD_INIT).
    SelfManaged bool
    Boolean value that determines device management mode, i.e., self-managed or Equinix-managed.
    Status string
    File upload status.
    Uuid string
    Unique identifier of file resource.
    Byol bool
    Boolean value that determines device licensing mode, i.e., bring your own license or subscription.
    Content string
    Uploaded file content, expected to be a UTF-8 encoded string.
    DeviceTypeCode string
    Device type code
    FileName string
    File name.
    MetroCode string | Metro
    File upload location metro code. It should match the device location metro code.
    ProcessType string | FileType
    File process type (LICENSE or CLOUD_INIT).
    SelfManaged bool
    Boolean value that determines device management mode, i.e., self-managed or Equinix-managed.
    Status string
    File upload status.
    Uuid string
    Unique identifier of file resource.
    byol Boolean
    Boolean value that determines device licensing mode, i.e., bring your own license or subscription.
    content String
    Uploaded file content, expected to be a UTF-8 encoded string.
    deviceTypeCode String
    Device type code
    fileName String
    File name.
    metroCode String | Metro
    File upload location metro code. It should match the device location metro code.
    processType String | FileType
    File process type (LICENSE or CLOUD_INIT).
    selfManaged Boolean
    Boolean value that determines device management mode, i.e., self-managed or Equinix-managed.
    status String
    File upload status.
    uuid String
    Unique identifier of file resource.
    byol boolean
    Boolean value that determines device licensing mode, i.e., bring your own license or subscription.
    content string
    Uploaded file content, expected to be a UTF-8 encoded string.
    deviceTypeCode string
    Device type code
    fileName string
    File name.
    metroCode string | Metro
    File upload location metro code. It should match the device location metro code.
    processType string | FileType
    File process type (LICENSE or CLOUD_INIT).
    selfManaged boolean
    Boolean value that determines device management mode, i.e., self-managed or Equinix-managed.
    status string
    File upload status.
    uuid string
    Unique identifier of file resource.
    byol bool
    Boolean value that determines device licensing mode, i.e., bring your own license or subscription.
    content str
    Uploaded file content, expected to be a UTF-8 encoded string.
    device_type_code str
    Device type code
    file_name str
    File name.
    metro_code str | Metro
    File upload location metro code. It should match the device location metro code.
    process_type str | FileType
    File process type (LICENSE or CLOUD_INIT).
    self_managed bool
    Boolean value that determines device management mode, i.e., self-managed or Equinix-managed.
    status str
    File upload status.
    uuid str
    Unique identifier of file resource.
    byol Boolean
    Boolean value that determines device licensing mode, i.e., bring your own license or subscription.
    content String
    Uploaded file content, expected to be a UTF-8 encoded string.
    deviceTypeCode String
    Device type code
    fileName String
    File name.
    metroCode String | "AM" | "DC" | "AT" | "BA" | "BG" | "BX" | "BO" | "BL" | "CL" | "CA" | "CH" | "DA" | "DE" | "DX" | "DB" | "FR" | "GV" | "HH" | "HE" | "HK" | "IL" | "KA" | "LS" | "LD" | "LA" | "MD" | "MA" | "ME" | "MX" | "MI" | "ML" | "MT" | "MB" | "MU" | "NY" | "OS" | "PA" | "PE" | "PH" | "RJ" | "SP" | "SE" | "SL" | "SV" | "SG" | "SO" | "SK" | "SY" | "TY" | "TR" | "VA" | "WA" | "WI" | "ZH"
    File upload location metro code. It should match the device location metro code.
    processType String | "LICENSE" | "CLOUD_INIT"
    File process type (LICENSE or CLOUD_INIT).
    selfManaged Boolean
    Boolean value that determines device management mode, i.e., self-managed or Equinix-managed.
    status String
    File upload status.
    uuid String
    Unique identifier of file resource.

    Supporting Types

    FileType, FileTypeArgs

    License
    LICENSE
    CloudInit
    CLOUD_INIT
    FileTypeLicense
    LICENSE
    FileTypeCloudInit
    CLOUD_INIT
    License
    LICENSE
    CloudInit
    CLOUD_INIT
    License
    LICENSE
    CloudInit
    CLOUD_INIT
    LICENSE
    LICENSE
    CLOUD_INIT
    CLOUD_INIT
    "LICENSE"
    LICENSE
    "CLOUD_INIT"
    CLOUD_INIT

    Metro, MetroArgs

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

    Package Details

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