equinix.fabric.Network
Explore with Pulumi AI
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=[equinix.fabric.NetworkNotificationArgs(
emails=[
"example@equinix.com",
"test1@equinix.com",
],
type="ALL",
)],
project=equinix.fabric.NetworkProjectArgs(
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<Network
Notification> - Preferences for notifications on Fabric Network configuration or status changes
- Project
Network
Project - Fabric Network project
- Scope string
- Fabric Network scope
- Type string
- Supported Network types - EVPLAN, EPLAN, IPWAN
- Location
Network
Location - Fabric Network location
- Name string
- Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
- Notifications
[]Network
Notification Args - Preferences for notifications on Fabric Network configuration or status changes
- Project
Network
Project Args - Fabric Network project
- Scope string
- Fabric Network scope
- Type string
- Supported Network types - EVPLAN, EPLAN, IPWAN
- Location
Network
Location Args - Fabric Network location
- Name string
- Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
- notifications
List<Network
Notification> - Preferences for notifications on Fabric Network configuration or status changes
- project
Network
Project - Fabric Network project
- scope String
- Fabric Network scope
- type String
- Supported Network types - EVPLAN, EPLAN, IPWAN
- location
Network
Location - Fabric Network location
- name String
- Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
- notifications
Network
Notification[] - Preferences for notifications on Fabric Network configuration or status changes
- project
Network
Project - Fabric Network project
- scope string
- Fabric Network scope
- type string
- Supported Network types - EVPLAN, EPLAN, IPWAN
- location
Network
Location - Fabric Network location
- name string
- Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
- notifications
Sequence[Network
Notification Args] - Preferences for notifications on Fabric Network configuration or status changes
- project
Network
Project Args - Fabric Network project
- scope str
- Fabric Network scope
- type str
- Supported Network types - EVPLAN, EPLAN, IPWAN
- location
Network
Location Args - 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
Network
Change - Information on asset change operation
- Change
Log NetworkChange Log - A permanent record of asset creation, modification, or deletion
- Connections
Count 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
Network
Operation - Network operation information that is associated with this Fabric Network
- State string
- Fabric Network overall state
- Uuid string
- Equinix-assigned network identifier
- Change
Network
Change - Information on asset change operation
- Change
Log NetworkChange Log - A permanent record of asset creation, modification, or deletion
- Connections
Count 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
Network
Operation - Network operation information that is associated with this Fabric Network
- State string
- Fabric Network overall state
- Uuid string
- Equinix-assigned network identifier
- change
Network
Change - Information on asset change operation
- change
Log NetworkChange Log - A permanent record of asset creation, modification, or deletion
- connections
Count 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
Network
Operation - Network operation information that is associated with this Fabric Network
- state String
- Fabric Network overall state
- uuid String
- Equinix-assigned network identifier
- change
Network
Change - Information on asset change operation
- change
Log NetworkChange Log - A permanent record of asset creation, modification, or deletion
- connections
Count 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
Network
Operation - Network operation information that is associated with this Fabric Network
- state string
- Fabric Network overall state
- uuid string
- Equinix-assigned network identifier
- change
Network
Change - Information on asset change operation
- change_
log NetworkChange Log - 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
Network
Operation - 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
- change
Log Property Map - A permanent record of asset creation, modification, or deletion
- connections
Count 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.
- Change
Network
Change - Information on asset change operation
- Change
Log NetworkChange Log - A permanent record of asset creation, modification, or deletion
- Connections
Count int - Number of connections associated with this network
- Href string
- Fabric Network URI information
- Location
Network
Location - Fabric Network location
- Name string
- Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
- Notifications
List<Network
Notification> - Preferences for notifications on Fabric Network configuration or status changes
- Operation
Network
Operation - Network operation information that is associated with this Fabric Network
- Project
Network
Project - 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
Network
Change Args - Information on asset change operation
- Change
Log NetworkChange Log Args - A permanent record of asset creation, modification, or deletion
- Connections
Count int - Number of connections associated with this network
- Href string
- Fabric Network URI information
- Location
Network
Location Args - Fabric Network location
- Name string
- Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
- Notifications
[]Network
Notification Args - Preferences for notifications on Fabric Network configuration or status changes
- Operation
Network
Operation Args - Network operation information that is associated with this Fabric Network
- Project
Network
Project Args - 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
Network
Change - Information on asset change operation
- change
Log NetworkChange Log - A permanent record of asset creation, modification, or deletion
- connections
Count Integer - Number of connections associated with this network
- href String
- Fabric Network URI information
- location
Network
Location - Fabric Network location
- name String
- Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
- notifications
List<Network
Notification> - Preferences for notifications on Fabric Network configuration or status changes
- operation
Network
Operation - Network operation information that is associated with this Fabric Network
- project
Network
Project - 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
Network
Change - Information on asset change operation
- change
Log NetworkChange Log - A permanent record of asset creation, modification, or deletion
- connections
Count number - Number of connections associated with this network
- href string
- Fabric Network URI information
- location
Network
Location - Fabric Network location
- name string
- Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
- notifications
Network
Notification[] - Preferences for notifications on Fabric Network configuration or status changes
- operation
Network
Operation - Network operation information that is associated with this Fabric Network
- project
Network
Project - 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
Network
Change Args - Information on asset change operation
- change_
log NetworkChange Log Args - 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
Network
Location Args - Fabric Network location
- name str
- Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
- notifications
Sequence[Network
Notification Args] - Preferences for notifications on Fabric Network configuration or status changes
- operation
Network
Operation Args - Network operation information that is associated with this Fabric Network
- project
Network
Project Args - 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
- change
Log Property Map - A permanent record of asset creation, modification, or deletion
- connections
Count 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
NetworkChangeLog, NetworkChangeLogArgs
- Created
By string - Created by User Key
- Created
By stringEmail - Created by User Email Address
- Created
By stringFull Name - Created by User Full Name
- Created
Date stringTime - Created by Date and Time
- Deleted
By string - Deleted by User Key
- Deleted
By stringEmail - Deleted by User Email Address
- Deleted
By stringFull Name - Deleted by User Full Name
- Deleted
Date stringTime - Deleted by Date and Time
- Updated
By string - Updated by User Key
- Updated
By stringEmail - Updated by User Email Address
- Updated
By stringFull Name - Updated by User Full Name
- Updated
Date stringTime - Updated by Date and Time
- Created
By string - Created by User Key
- Created
By stringEmail - Created by User Email Address
- Created
By stringFull Name - Created by User Full Name
- Created
Date stringTime - Created by Date and Time
- Deleted
By string - Deleted by User Key
- Deleted
By stringEmail - Deleted by User Email Address
- Deleted
By stringFull Name - Deleted by User Full Name
- Deleted
Date stringTime - Deleted by Date and Time
- Updated
By string - Updated by User Key
- Updated
By stringEmail - Updated by User Email Address
- Updated
By stringFull Name - Updated by User Full Name
- Updated
Date stringTime - Updated by Date and Time
- created
By String - Created by User Key
- created
By StringEmail - Created by User Email Address
- created
By StringFull Name - Created by User Full Name
- created
Date StringTime - Created by Date and Time
- deleted
By String - Deleted by User Key
- deleted
By StringEmail - Deleted by User Email Address
- deleted
By StringFull Name - Deleted by User Full Name
- deleted
Date StringTime - Deleted by Date and Time
- updated
By String - Updated by User Key
- updated
By StringEmail - Updated by User Email Address
- updated
By StringFull Name - Updated by User Full Name
- updated
Date StringTime - Updated by Date and Time
- created
By string - Created by User Key
- created
By stringEmail - Created by User Email Address
- created
By stringFull Name - Created by User Full Name
- created
Date stringTime - Created by Date and Time
- deleted
By string - Deleted by User Key
- deleted
By stringEmail - Deleted by User Email Address
- deleted
By stringFull Name - Deleted by User Full Name
- deleted
Date stringTime - Deleted by Date and Time
- updated
By string - Updated by User Key
- updated
By stringEmail - Updated by User Email Address
- updated
By stringFull Name - Updated by User Full Name
- updated
Date stringTime - Updated by Date and Time
- created_
by str - Created by User Key
- created_
by_ stremail - Created by User Email Address
- created_
by_ strfull_ name - Created by User Full Name
- created_
date_ strtime - Created by Date and Time
- deleted_
by str - Deleted by User Key
- deleted_
by_ stremail - Deleted by User Email Address
- deleted_
by_ strfull_ name - Deleted by User Full Name
- deleted_
date_ strtime - Deleted by Date and Time
- updated_
by str - Updated by User Key
- updated_
by_ stremail - Updated by User Email Address
- updated_
by_ strfull_ name - Updated by User Full Name
- updated_
date_ strtime - Updated by Date and Time
- created
By String - Created by User Key
- created
By StringEmail - Created by User Email Address
- created
By StringFull Name - Created by User Full Name
- created
Date StringTime - Created by Date and Time
- deleted
By String - Deleted by User Key
- deleted
By StringEmail - Deleted by User Email Address
- deleted
By StringFull Name - Deleted by User Full Name
- deleted
Date StringTime - Deleted by Date and Time
- updated
By String - Updated by User Key
- updated
By StringEmail - Updated by User Email Address
- updated
By StringFull Name - Updated by User Full Name
- updated
Date StringTime - Updated by Date and Time
NetworkLocation, NetworkLocationArgs
- ibx str
- IBX Code
- metro_
code str - Access point metro code
- metro_
name str - Access point metro name
- region str
- Access point region
NetworkNotification, NetworkNotificationArgs
- Emails List<string>
- Array of contact emails
- Type string
- Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
- Send
Interval string - Send interval
- Emails []string
- Array of contact emails
- Type string
- Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
- Send
Interval string - Send interval
- emails List<String>
- Array of contact emails
- type String
- Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
- send
Interval String - Send interval
- emails string[]
- Array of contact emails
- type string
- Notification Type - ALL,CONNECTIONAPPROVAL,SALESREP_NOTIFICATIONS, NOTIFICATIONS
- send
Interval 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
- send
Interval String - Send interval
NetworkOperation, NetworkOperationArgs
- Equinix
Status string - Progress towards provisioning a given asset.
- Equinix
Status string - Progress towards provisioning a given asset.
- equinix
Status String - Progress towards provisioning a given asset.
- equinix
Status string - Progress towards provisioning a given asset.
- equinix_
status str - Progress towards provisioning a given asset.
- equinix
Status String - Progress towards provisioning a given asset.
NetworkProject, NetworkProjectArgs
- Project
Id string - Customer project identifier
- Project
Id string - Customer project identifier
- project
Id String - Customer project identifier
- project
Id string - Customer project identifier
- project_
id str - Customer project identifier
- project
Id 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.