1. Packages
  2. Equinix
  3. API Docs
  4. fabric
  5. Network
Equinix v0.17.1 published on Wednesday, Aug 28, 2024 by Equinix

equinix.fabric.Network

Explore with Pulumi AI

equinix logo
Equinix v0.17.1 published on Wednesday, Aug 28, 2024 by Equinix

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

    Additional documentation:

    • Getting Started: https://docs.equinix.com/en-us/Content/Interconnection/Fabric/IMPLEMENTATION/fabric-networks-implement.htm
    • API: https://developer.equinix.com/dev-docs/fabric/api-reference/fabric-v4-apis#fabric-networks

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as equinix from "@equinix-labs/pulumi-equinix";
    
    const newNetwork = new equinix.fabric.Network("newNetwork", {
        notifications: [{
            emails: [
                "example@equinix.com",
                "test1@equinix.com",
            ],
            type: "ALL",
        }],
        project: {
            projectId: "776847000642406",
        },
        scope: "GLOBAL",
        type: "EVPLAN",
    });
    
    import pulumi
    import pulumi_equinix as equinix
    
    new_network = equinix.fabric.Network("newNetwork",
        notifications=[{
            "emails": [
                "example@equinix.com",
                "test1@equinix.com",
            ],
            "type": "ALL",
        }],
        project={
            "project_id": "776847000642406",
        },
        scope="GLOBAL",
        type="EVPLAN")
    
    package main
    
    import (
    	"github.com/equinix/pulumi-equinix/sdk/go/equinix/fabric"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fabric.NewNetwork(ctx, "newNetwork", &fabric.NetworkArgs{
    			Notifications: fabric.NetworkNotificationArray{
    				&fabric.NetworkNotificationArgs{
    					Emails: pulumi.StringArray{
    						pulumi.String("example@equinix.com"),
    						pulumi.String("test1@equinix.com"),
    					},
    					Type: pulumi.String("ALL"),
    				},
    			},
    			Project: &fabric.NetworkProjectArgs{
    				ProjectId: pulumi.String("776847000642406"),
    			},
    			Scope: pulumi.String("GLOBAL"),
    			Type:  pulumi.String("EVPLAN"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Equinix = Pulumi.Equinix;
    
    return await Deployment.RunAsync(() => 
    {
        var newNetwork = new Equinix.Fabric.Network("newNetwork", new()
        {
            Notifications = new[]
            {
                new Equinix.Fabric.Inputs.NetworkNotificationArgs
                {
                    Emails = new[]
                    {
                        "example@equinix.com",
                        "test1@equinix.com",
                    },
                    Type = "ALL",
                },
            },
            Project = new Equinix.Fabric.Inputs.NetworkProjectArgs
            {
                ProjectId = "776847000642406",
            },
            Scope = "GLOBAL",
            Type = "EVPLAN",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.equinix.fabric.Network;
    import com.pulumi.equinix.fabric.NetworkArgs;
    import com.pulumi.equinix.fabric.inputs.NetworkNotificationArgs;
    import com.pulumi.equinix.fabric.inputs.NetworkProjectArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var newNetwork = new Network("newNetwork", NetworkArgs.builder()
                .notifications(NetworkNotificationArgs.builder()
                    .emails(                
                        "example@equinix.com",
                        "test1@equinix.com")
                    .type("ALL")
                    .build())
                .project(NetworkProjectArgs.builder()
                    .projectId("776847000642406")
                    .build())
                .scope("GLOBAL")
                .type("EVPLAN")
                .build());
    
        }
    }
    
    resources:
      newNetwork:
        type: equinix:fabric:Network
        properties:
          notifications:
            - emails:
                - example@equinix.com
                - test1@equinix.com
              type: ALL
          project:
            projectId: '776847000642406'
          scope: GLOBAL
          type: EVPLAN
    

    Create Network Resource

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

    Constructor syntax

    new Network(name: string, args: NetworkArgs, opts?: CustomResourceOptions);
    @overload
    def Network(resource_name: str,
                args: NetworkArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Network(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                notifications: Optional[Sequence[NetworkNotificationArgs]] = None,
                project: Optional[NetworkProjectArgs] = None,
                scope: Optional[str] = None,
                type: Optional[str] = None,
                location: Optional[NetworkLocationArgs] = None,
                name: Optional[str] = None)
    func NewNetwork(ctx *Context, name string, args NetworkArgs, opts ...ResourceOption) (*Network, error)
    public Network(string name, NetworkArgs args, CustomResourceOptions? opts = null)
    public Network(String name, NetworkArgs args)
    public Network(String name, NetworkArgs args, CustomResourceOptions options)
    
    type: equinix:fabric:Network
    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 NetworkArgs
    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 NetworkArgs
    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 NetworkArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkArgs
    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 networkResource = new Equinix.Fabric.Network("networkResource", new()
    {
        Notifications = new[]
        {
            new Equinix.Fabric.Inputs.NetworkNotificationArgs
            {
                Emails = new[]
                {
                    "string",
                },
                Type = "string",
                SendInterval = "string",
            },
        },
        Project = new Equinix.Fabric.Inputs.NetworkProjectArgs
        {
            ProjectId = "string",
        },
        Scope = "string",
        Type = "string",
        Location = new Equinix.Fabric.Inputs.NetworkLocationArgs
        {
            Ibx = "string",
            MetroCode = "string",
            MetroName = "string",
            Region = "string",
        },
        Name = "string",
    });
    
    example, err := fabric.NewNetwork(ctx, "networkResource", &fabric.NetworkArgs{
    	Notifications: fabric.NetworkNotificationArray{
    		&fabric.NetworkNotificationArgs{
    			Emails: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			Type:         pulumi.String("string"),
    			SendInterval: pulumi.String("string"),
    		},
    	},
    	Project: &fabric.NetworkProjectArgs{
    		ProjectId: pulumi.String("string"),
    	},
    	Scope: pulumi.String("string"),
    	Type:  pulumi.String("string"),
    	Location: &fabric.NetworkLocationArgs{
    		Ibx:       pulumi.String("string"),
    		MetroCode: pulumi.String("string"),
    		MetroName: pulumi.String("string"),
    		Region:    pulumi.String("string"),
    	},
    	Name: pulumi.String("string"),
    })
    
    var networkResource = new Network("networkResource", NetworkArgs.builder()
        .notifications(NetworkNotificationArgs.builder()
            .emails("string")
            .type("string")
            .sendInterval("string")
            .build())
        .project(NetworkProjectArgs.builder()
            .projectId("string")
            .build())
        .scope("string")
        .type("string")
        .location(NetworkLocationArgs.builder()
            .ibx("string")
            .metroCode("string")
            .metroName("string")
            .region("string")
            .build())
        .name("string")
        .build());
    
    network_resource = equinix.fabric.Network("networkResource",
        notifications=[equinix.fabric.NetworkNotificationArgs(
            emails=["string"],
            type="string",
            send_interval="string",
        )],
        project=equinix.fabric.NetworkProjectArgs(
            project_id="string",
        ),
        scope="string",
        type="string",
        location=equinix.fabric.NetworkLocationArgs(
            ibx="string",
            metro_code="string",
            metro_name="string",
            region="string",
        ),
        name="string")
    
    const networkResource = new equinix.fabric.Network("networkResource", {
        notifications: [{
            emails: ["string"],
            type: "string",
            sendInterval: "string",
        }],
        project: {
            projectId: "string",
        },
        scope: "string",
        type: "string",
        location: {
            ibx: "string",
            metroCode: "string",
            metroName: "string",
            region: "string",
        },
        name: "string",
    });
    
    type: equinix:fabric:Network
    properties:
        location:
            ibx: string
            metroCode: string
            metroName: string
            region: string
        name: string
        notifications:
            - emails:
                - string
              sendInterval: string
              type: string
        project:
            projectId: string
        scope: string
        type: string
    

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

    Notifications List<NetworkNotification>
    Preferences for notifications on Fabric Network configuration or status changes
    Project NetworkProject
    Fabric Network project
    Scope string
    Fabric Network scope
    Type string
    Supported Network types - EVPLAN, EPLAN, IPWAN
    Location NetworkLocation
    Fabric Network location
    Name string
    Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
    Notifications []NetworkNotificationArgs
    Preferences for notifications on Fabric Network configuration or status changes
    Project NetworkProjectArgs
    Fabric Network project
    Scope string
    Fabric Network scope
    Type string
    Supported Network types - EVPLAN, EPLAN, IPWAN
    Location NetworkLocationArgs
    Fabric Network location
    Name string
    Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
    notifications List<NetworkNotification>
    Preferences for notifications on Fabric Network configuration or status changes
    project NetworkProject
    Fabric Network project
    scope String
    Fabric Network scope
    type String
    Supported Network types - EVPLAN, EPLAN, IPWAN
    location NetworkLocation
    Fabric Network location
    name String
    Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
    notifications NetworkNotification[]
    Preferences for notifications on Fabric Network configuration or status changes
    project NetworkProject
    Fabric Network project
    scope string
    Fabric Network scope
    type string
    Supported Network types - EVPLAN, EPLAN, IPWAN
    location NetworkLocation
    Fabric Network location
    name string
    Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
    notifications Sequence[NetworkNotificationArgs]
    Preferences for notifications on Fabric Network configuration or status changes
    project NetworkProjectArgs
    Fabric Network project
    scope str
    Fabric Network scope
    type str
    Supported Network types - EVPLAN, EPLAN, IPWAN
    location NetworkLocationArgs
    Fabric Network location
    name str
    Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
    notifications List<Property Map>
    Preferences for notifications on Fabric Network configuration or status changes
    project Property Map
    Fabric Network project
    scope String
    Fabric Network scope
    type String
    Supported Network types - EVPLAN, EPLAN, IPWAN
    location Property Map
    Fabric Network location
    name String
    Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores

    Outputs

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

    Change NetworkChange
    Information on asset change operation
    ChangeLog NetworkChangeLog
    A permanent record of asset creation, modification, or deletion
    ConnectionsCount int
    Number of connections associated with this network
    Href string
    Fabric Network URI information
    Id string
    The provider-assigned unique ID for this managed resource.
    Operation NetworkOperation
    Network operation information that is associated with this Fabric Network
    State string
    Fabric Network overall state
    Uuid string
    Equinix-assigned network identifier
    Change NetworkChange
    Information on asset change operation
    ChangeLog NetworkChangeLog
    A permanent record of asset creation, modification, or deletion
    ConnectionsCount int
    Number of connections associated with this network
    Href string
    Fabric Network URI information
    Id string
    The provider-assigned unique ID for this managed resource.
    Operation NetworkOperation
    Network operation information that is associated with this Fabric Network
    State string
    Fabric Network overall state
    Uuid string
    Equinix-assigned network identifier
    change NetworkChange
    Information on asset change operation
    changeLog NetworkChangeLog
    A permanent record of asset creation, modification, or deletion
    connectionsCount Integer
    Number of connections associated with this network
    href String
    Fabric Network URI information
    id String
    The provider-assigned unique ID for this managed resource.
    operation NetworkOperation
    Network operation information that is associated with this Fabric Network
    state String
    Fabric Network overall state
    uuid String
    Equinix-assigned network identifier
    change NetworkChange
    Information on asset change operation
    changeLog NetworkChangeLog
    A permanent record of asset creation, modification, or deletion
    connectionsCount number
    Number of connections associated with this network
    href string
    Fabric Network URI information
    id string
    The provider-assigned unique ID for this managed resource.
    operation NetworkOperation
    Network operation information that is associated with this Fabric Network
    state string
    Fabric Network overall state
    uuid string
    Equinix-assigned network identifier
    change NetworkChange
    Information on asset change operation
    change_log NetworkChangeLog
    A permanent record of asset creation, modification, or deletion
    connections_count int
    Number of connections associated with this network
    href str
    Fabric Network URI information
    id str
    The provider-assigned unique ID for this managed resource.
    operation NetworkOperation
    Network operation information that is associated with this Fabric Network
    state str
    Fabric Network overall state
    uuid str
    Equinix-assigned network identifier
    change Property Map
    Information on asset change operation
    changeLog Property Map
    A permanent record of asset creation, modification, or deletion
    connectionsCount Number
    Number of connections associated with this network
    href String
    Fabric Network URI information
    id String
    The provider-assigned unique ID for this managed resource.
    operation Property Map
    Network operation information that is associated with this Fabric Network
    state String
    Fabric Network overall state
    uuid String
    Equinix-assigned network identifier

    Look up Existing Network Resource

    Get an existing Network 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?: NetworkState, opts?: CustomResourceOptions): Network
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            change: Optional[NetworkChangeArgs] = None,
            change_log: Optional[NetworkChangeLogArgs] = None,
            connections_count: Optional[int] = None,
            href: Optional[str] = None,
            location: Optional[NetworkLocationArgs] = None,
            name: Optional[str] = None,
            notifications: Optional[Sequence[NetworkNotificationArgs]] = None,
            operation: Optional[NetworkOperationArgs] = None,
            project: Optional[NetworkProjectArgs] = None,
            scope: Optional[str] = None,
            state: Optional[str] = None,
            type: Optional[str] = None,
            uuid: Optional[str] = None) -> Network
    func GetNetwork(ctx *Context, name string, id IDInput, state *NetworkState, opts ...ResourceOption) (*Network, error)
    public static Network Get(string name, Input<string> id, NetworkState? state, CustomResourceOptions? opts = null)
    public static Network get(String name, Output<String> id, NetworkState 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:
    Change NetworkChange
    Information on asset change operation
    ChangeLog NetworkChangeLog
    A permanent record of asset creation, modification, or deletion
    ConnectionsCount int
    Number of connections associated with this network
    Href string
    Fabric Network URI information
    Location NetworkLocation
    Fabric Network location
    Name string
    Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
    Notifications List<NetworkNotification>
    Preferences for notifications on Fabric Network configuration or status changes
    Operation NetworkOperation
    Network operation information that is associated with this Fabric Network
    Project NetworkProject
    Fabric Network project
    Scope string
    Fabric Network scope
    State string
    Fabric Network overall state
    Type string
    Supported Network types - EVPLAN, EPLAN, IPWAN
    Uuid string
    Equinix-assigned network identifier
    Change NetworkChangeArgs
    Information on asset change operation
    ChangeLog NetworkChangeLogArgs
    A permanent record of asset creation, modification, or deletion
    ConnectionsCount int
    Number of connections associated with this network
    Href string
    Fabric Network URI information
    Location NetworkLocationArgs
    Fabric Network location
    Name string
    Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
    Notifications []NetworkNotificationArgs
    Preferences for notifications on Fabric Network configuration or status changes
    Operation NetworkOperationArgs
    Network operation information that is associated with this Fabric Network
    Project NetworkProjectArgs
    Fabric Network project
    Scope string
    Fabric Network scope
    State string
    Fabric Network overall state
    Type string
    Supported Network types - EVPLAN, EPLAN, IPWAN
    Uuid string
    Equinix-assigned network identifier
    change NetworkChange
    Information on asset change operation
    changeLog NetworkChangeLog
    A permanent record of asset creation, modification, or deletion
    connectionsCount Integer
    Number of connections associated with this network
    href String
    Fabric Network URI information
    location NetworkLocation
    Fabric Network location
    name String
    Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
    notifications List<NetworkNotification>
    Preferences for notifications on Fabric Network configuration or status changes
    operation NetworkOperation
    Network operation information that is associated with this Fabric Network
    project NetworkProject
    Fabric Network project
    scope String
    Fabric Network scope
    state String
    Fabric Network overall state
    type String
    Supported Network types - EVPLAN, EPLAN, IPWAN
    uuid String
    Equinix-assigned network identifier
    change NetworkChange
    Information on asset change operation
    changeLog NetworkChangeLog
    A permanent record of asset creation, modification, or deletion
    connectionsCount number
    Number of connections associated with this network
    href string
    Fabric Network URI information
    location NetworkLocation
    Fabric Network location
    name string
    Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
    notifications NetworkNotification[]
    Preferences for notifications on Fabric Network configuration or status changes
    operation NetworkOperation
    Network operation information that is associated with this Fabric Network
    project NetworkProject
    Fabric Network project
    scope string
    Fabric Network scope
    state string
    Fabric Network overall state
    type string
    Supported Network types - EVPLAN, EPLAN, IPWAN
    uuid string
    Equinix-assigned network identifier
    change NetworkChangeArgs
    Information on asset change operation
    change_log NetworkChangeLogArgs
    A permanent record of asset creation, modification, or deletion
    connections_count int
    Number of connections associated with this network
    href str
    Fabric Network URI information
    location NetworkLocationArgs
    Fabric Network location
    name str
    Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
    notifications Sequence[NetworkNotificationArgs]
    Preferences for notifications on Fabric Network configuration or status changes
    operation NetworkOperationArgs
    Network operation information that is associated with this Fabric Network
    project NetworkProjectArgs
    Fabric Network project
    scope str
    Fabric Network scope
    state str
    Fabric Network overall state
    type str
    Supported Network types - EVPLAN, EPLAN, IPWAN
    uuid str
    Equinix-assigned network identifier
    change Property Map
    Information on asset change operation
    changeLog Property Map
    A permanent record of asset creation, modification, or deletion
    connectionsCount Number
    Number of connections associated with this network
    href String
    Fabric Network URI information
    location Property Map
    Fabric Network location
    name String
    Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
    notifications List<Property Map>
    Preferences for notifications on Fabric Network configuration or status changes
    operation Property Map
    Network operation information that is associated with this Fabric Network
    project Property Map
    Fabric Network project
    scope String
    Fabric Network scope
    state String
    Fabric Network overall state
    type String
    Supported Network types - EVPLAN, EPLAN, IPWAN
    uuid String
    Equinix-assigned network identifier

    Supporting Types

    NetworkChange, NetworkChangeArgs

    Href string
    Absolute URL that returns the details of the given change. Example: https://api.equinix.com/fabric/v4/networks/92dc376a-a932-43aa-a6a2-c806dedbd784
    Type string
    Asset instance change request type.: NETWORK_CREATION, NETWORK_UPDATE, NETWORK_DELETION
    Uuid string
    Asset change request identifier.
    Href string
    Absolute URL that returns the details of the given change. Example: https://api.equinix.com/fabric/v4/networks/92dc376a-a932-43aa-a6a2-c806dedbd784
    Type string
    Asset instance change request type.: NETWORK_CREATION, NETWORK_UPDATE, NETWORK_DELETION
    Uuid string
    Asset change request identifier.
    href String
    Absolute URL that returns the details of the given change. Example: https://api.equinix.com/fabric/v4/networks/92dc376a-a932-43aa-a6a2-c806dedbd784
    type String
    Asset instance change request type.: NETWORK_CREATION, NETWORK_UPDATE, NETWORK_DELETION
    uuid String
    Asset change request identifier.
    href string
    Absolute URL that returns the details of the given change. Example: https://api.equinix.com/fabric/v4/networks/92dc376a-a932-43aa-a6a2-c806dedbd784
    type string
    Asset instance change request type.: NETWORK_CREATION, NETWORK_UPDATE, NETWORK_DELETION
    uuid string
    Asset change request identifier.
    href str
    Absolute URL that returns the details of the given change. Example: https://api.equinix.com/fabric/v4/networks/92dc376a-a932-43aa-a6a2-c806dedbd784
    type str
    Asset instance change request type.: NETWORK_CREATION, NETWORK_UPDATE, NETWORK_DELETION
    uuid str
    Asset change request identifier.
    href String
    Absolute URL that returns the details of the given change. Example: https://api.equinix.com/fabric/v4/networks/92dc376a-a932-43aa-a6a2-c806dedbd784
    type String
    Asset instance change request type.: NETWORK_CREATION, NETWORK_UPDATE, NETWORK_DELETION
    uuid String
    Asset change request identifier.

    NetworkChangeLog, NetworkChangeLogArgs

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

    NetworkLocation, NetworkLocationArgs

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

    NetworkNotification, NetworkNotificationArgs

    Emails List<string>
    Array of contact emails
    Type string
    Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
    SendInterval string
    Send interval
    Emails []string
    Array of contact emails
    Type string
    Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
    SendInterval string
    Send interval
    emails List<String>
    Array of contact emails
    type String
    Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
    sendInterval String
    Send interval
    emails string[]
    Array of contact emails
    type string
    Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
    sendInterval string
    Send interval
    emails Sequence[str]
    Array of contact emails
    type str
    Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
    send_interval str
    Send interval
    emails List<String>
    Array of contact emails
    type String
    Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
    sendInterval String
    Send interval

    NetworkOperation, NetworkOperationArgs

    EquinixStatus string
    Progress towards provisioning a given asset.
    EquinixStatus string
    Progress towards provisioning a given asset.
    equinixStatus String
    Progress towards provisioning a given asset.
    equinixStatus string
    Progress towards provisioning a given asset.
    equinix_status str
    Progress towards provisioning a given asset.
    equinixStatus String
    Progress towards provisioning a given asset.

    NetworkProject, NetworkProjectArgs

    ProjectId string
    Customer project identifier
    ProjectId string
    Customer project identifier
    projectId String
    Customer project identifier
    projectId string
    Customer project identifier
    project_id str
    Customer project identifier
    projectId String
    Customer project identifier

    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.17.1 published on Wednesday, Aug 28, 2024 by Equinix