equinix.fabric.RouteAggregation
Explore with Pulumi AI
Fabric V4 API compatible resource allows creation and management of Equinix Fabric Route Aggregation
Additional Documentation:
- API: https://developer.equinix.com/catalog/fabricv4#tag/Route-Aggregations
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.equinix.fabric.RouteAggregation;
import com.pulumi.equinix.fabric.RouteAggregationArgs;
import com.pulumi.equinix.fabric.inputs.RouteAggregationProjectArgs;
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 new_ra = new RouteAggregation("new-ra", RouteAggregationArgs.builder()
.description("Test aggregation")
.project(RouteAggregationProjectArgs.builder()
.project_id("776847000642406")
.build())
.type("BGP_IPv4_PREFIX_AGGREGATION")
.build());
}
}
resources:
new-ra:
type: equinix:fabric:RouteAggregation
properties:
description: Test aggregation
project:
project_id: '776847000642406'
type: BGP_IPv4_PREFIX_AGGREGATION
Create RouteAggregation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RouteAggregation(name: string, args: RouteAggregationArgs, opts?: CustomResourceOptions);
@overload
def RouteAggregation(resource_name: str,
args: RouteAggregationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RouteAggregation(resource_name: str,
opts: Optional[ResourceOptions] = None,
project: Optional[RouteAggregationProjectArgs] = None,
type: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
timeouts: Optional[RouteAggregationTimeoutsArgs] = None)
func NewRouteAggregation(ctx *Context, name string, args RouteAggregationArgs, opts ...ResourceOption) (*RouteAggregation, error)
public RouteAggregation(string name, RouteAggregationArgs args, CustomResourceOptions? opts = null)
public RouteAggregation(String name, RouteAggregationArgs args)
public RouteAggregation(String name, RouteAggregationArgs args, CustomResourceOptions options)
type: equinix:fabric:RouteAggregation
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 RouteAggregationArgs
- 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 RouteAggregationArgs
- 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 RouteAggregationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RouteAggregationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RouteAggregationArgs
- 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 routeAggregationResource = new Equinix.Fabric.RouteAggregation("routeAggregationResource", new()
{
Project = new Equinix.Fabric.Inputs.RouteAggregationProjectArgs
{
ProjectId = "string",
},
Type = "string",
Description = "string",
Name = "string",
Timeouts = new Equinix.Fabric.Inputs.RouteAggregationTimeoutsArgs
{
Create = "string",
Delete = "string",
Read = "string",
Update = "string",
},
});
example, err := fabric.NewRouteAggregation(ctx, "routeAggregationResource", &fabric.RouteAggregationArgs{
Project: &fabric.RouteAggregationProjectArgs{
ProjectId: pulumi.String("string"),
},
Type: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Timeouts: &fabric.RouteAggregationTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var routeAggregationResource = new RouteAggregation("routeAggregationResource", RouteAggregationArgs.builder()
.project(RouteAggregationProjectArgs.builder()
.projectId("string")
.build())
.type("string")
.description("string")
.name("string")
.timeouts(RouteAggregationTimeoutsArgs.builder()
.create("string")
.delete("string")
.read("string")
.update("string")
.build())
.build());
route_aggregation_resource = equinix.fabric.RouteAggregation("routeAggregationResource",
project={
"project_id": "string",
},
type="string",
description="string",
name="string",
timeouts={
"create": "string",
"delete": "string",
"read": "string",
"update": "string",
})
const routeAggregationResource = new equinix.fabric.RouteAggregation("routeAggregationResource", {
project: {
projectId: "string",
},
type: "string",
description: "string",
name: "string",
timeouts: {
create: "string",
"delete": "string",
read: "string",
update: "string",
},
});
type: equinix:fabric:RouteAggregation
properties:
description: string
name: string
project:
projectId: string
timeouts:
create: string
delete: string
read: string
update: string
type: string
RouteAggregation Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The RouteAggregation resource accepts the following input properties:
- Project
Route
Aggregation Project - Equinix Project attribute object
- Type string
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- Description string
- Customer-provided route aggregation description
- Name string
- Customer provided name of the route aggregation
- Timeouts
Route
Aggregation Timeouts
- Project
Route
Aggregation Project Args - Equinix Project attribute object
- Type string
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- Description string
- Customer-provided route aggregation description
- Name string
- Customer provided name of the route aggregation
- Timeouts
Route
Aggregation Timeouts Args
- project
Route
Aggregation Project - Equinix Project attribute object
- type String
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- description String
- Customer-provided route aggregation description
- name String
- Customer provided name of the route aggregation
- timeouts
Route
Aggregation Timeouts
- project
Route
Aggregation Project - Equinix Project attribute object
- type string
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- description string
- Customer-provided route aggregation description
- name string
- Customer provided name of the route aggregation
- timeouts
Route
Aggregation Timeouts
- project
Route
Aggregation Project Args - Equinix Project attribute object
- type str
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- description str
- Customer-provided route aggregation description
- name str
- Customer provided name of the route aggregation
- timeouts
Route
Aggregation Timeouts Args
- project Property Map
- Equinix Project attribute object
- type String
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- description String
- Customer-provided route aggregation description
- name String
- Customer provided name of the route aggregation
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the RouteAggregation resource produces the following output properties:
- Change
Route
Aggregation Change - Current state of latest Route Aggregation change
- Change
Log RouteAggregation Change Log - Details of the last change on the route aggregation resource
- Connections
Count int - Number of Connections attached to route aggregation
- Href string
- Equinix auto generated URI to the route aggregation resource
- Id string
- The provider-assigned unique ID for this managed resource.
- Rules
Count int - Number of Rules attached to route aggregation
- State string
- Value representing provisioning status for the route aggregation resource
- Uuid string
- Equinix-assigned unique id for the route aggregation resource
- Change
Route
Aggregation Change - Current state of latest Route Aggregation change
- Change
Log RouteAggregation Change Log - Details of the last change on the route aggregation resource
- Connections
Count int - Number of Connections attached to route aggregation
- Href string
- Equinix auto generated URI to the route aggregation resource
- Id string
- The provider-assigned unique ID for this managed resource.
- Rules
Count int - Number of Rules attached to route aggregation
- State string
- Value representing provisioning status for the route aggregation resource
- Uuid string
- Equinix-assigned unique id for the route aggregation resource
- change
Route
Aggregation Change - Current state of latest Route Aggregation change
- change
Log RouteAggregation Change Log - Details of the last change on the route aggregation resource
- connections
Count Integer - Number of Connections attached to route aggregation
- href String
- Equinix auto generated URI to the route aggregation resource
- id String
- The provider-assigned unique ID for this managed resource.
- rules
Count Integer - Number of Rules attached to route aggregation
- state String
- Value representing provisioning status for the route aggregation resource
- uuid String
- Equinix-assigned unique id for the route aggregation resource
- change
Route
Aggregation Change - Current state of latest Route Aggregation change
- change
Log RouteAggregation Change Log - Details of the last change on the route aggregation resource
- connections
Count number - Number of Connections attached to route aggregation
- href string
- Equinix auto generated URI to the route aggregation resource
- id string
- The provider-assigned unique ID for this managed resource.
- rules
Count number - Number of Rules attached to route aggregation
- state string
- Value representing provisioning status for the route aggregation resource
- uuid string
- Equinix-assigned unique id for the route aggregation resource
- change
Route
Aggregation Change - Current state of latest Route Aggregation change
- change_
log RouteAggregation Change Log - Details of the last change on the route aggregation resource
- connections_
count int - Number of Connections attached to route aggregation
- href str
- Equinix auto generated URI to the route aggregation resource
- id str
- The provider-assigned unique ID for this managed resource.
- rules_
count int - Number of Rules attached to route aggregation
- state str
- Value representing provisioning status for the route aggregation resource
- uuid str
- Equinix-assigned unique id for the route aggregation resource
- change Property Map
- Current state of latest Route Aggregation change
- change
Log Property Map - Details of the last change on the route aggregation resource
- connections
Count Number - Number of Connections attached to route aggregation
- href String
- Equinix auto generated URI to the route aggregation resource
- id String
- The provider-assigned unique ID for this managed resource.
- rules
Count Number - Number of Rules attached to route aggregation
- state String
- Value representing provisioning status for the route aggregation resource
- uuid String
- Equinix-assigned unique id for the route aggregation resource
Look up Existing RouteAggregation Resource
Get an existing RouteAggregation 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?: RouteAggregationState, opts?: CustomResourceOptions): RouteAggregation
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
change: Optional[RouteAggregationChangeArgs] = None,
change_log: Optional[RouteAggregationChangeLogArgs] = None,
connections_count: Optional[int] = None,
description: Optional[str] = None,
href: Optional[str] = None,
name: Optional[str] = None,
project: Optional[RouteAggregationProjectArgs] = None,
rules_count: Optional[int] = None,
state: Optional[str] = None,
timeouts: Optional[RouteAggregationTimeoutsArgs] = None,
type: Optional[str] = None,
uuid: Optional[str] = None) -> RouteAggregation
func GetRouteAggregation(ctx *Context, name string, id IDInput, state *RouteAggregationState, opts ...ResourceOption) (*RouteAggregation, error)
public static RouteAggregation Get(string name, Input<string> id, RouteAggregationState? state, CustomResourceOptions? opts = null)
public static RouteAggregation get(String name, Output<String> id, RouteAggregationState state, CustomResourceOptions options)
resources: _: type: equinix:fabric:RouteAggregation get: id: ${id}
- 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
Route
Aggregation Change - Current state of latest Route Aggregation change
- Change
Log RouteAggregation Change Log - Details of the last change on the route aggregation resource
- Connections
Count int - Number of Connections attached to route aggregation
- Description string
- Customer-provided route aggregation description
- Href string
- Equinix auto generated URI to the route aggregation resource
- Name string
- Customer provided name of the route aggregation
- Project
Route
Aggregation Project - Equinix Project attribute object
- Rules
Count int - Number of Rules attached to route aggregation
- State string
- Value representing provisioning status for the route aggregation resource
- Timeouts
Route
Aggregation Timeouts - Type string
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- Uuid string
- Equinix-assigned unique id for the route aggregation resource
- Change
Route
Aggregation Change Args - Current state of latest Route Aggregation change
- Change
Log RouteAggregation Change Log Args - Details of the last change on the route aggregation resource
- Connections
Count int - Number of Connections attached to route aggregation
- Description string
- Customer-provided route aggregation description
- Href string
- Equinix auto generated URI to the route aggregation resource
- Name string
- Customer provided name of the route aggregation
- Project
Route
Aggregation Project Args - Equinix Project attribute object
- Rules
Count int - Number of Rules attached to route aggregation
- State string
- Value representing provisioning status for the route aggregation resource
- Timeouts
Route
Aggregation Timeouts Args - Type string
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- Uuid string
- Equinix-assigned unique id for the route aggregation resource
- change
Route
Aggregation Change - Current state of latest Route Aggregation change
- change
Log RouteAggregation Change Log - Details of the last change on the route aggregation resource
- connections
Count Integer - Number of Connections attached to route aggregation
- description String
- Customer-provided route aggregation description
- href String
- Equinix auto generated URI to the route aggregation resource
- name String
- Customer provided name of the route aggregation
- project
Route
Aggregation Project - Equinix Project attribute object
- rules
Count Integer - Number of Rules attached to route aggregation
- state String
- Value representing provisioning status for the route aggregation resource
- timeouts
Route
Aggregation Timeouts - type String
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- uuid String
- Equinix-assigned unique id for the route aggregation resource
- change
Route
Aggregation Change - Current state of latest Route Aggregation change
- change
Log RouteAggregation Change Log - Details of the last change on the route aggregation resource
- connections
Count number - Number of Connections attached to route aggregation
- description string
- Customer-provided route aggregation description
- href string
- Equinix auto generated URI to the route aggregation resource
- name string
- Customer provided name of the route aggregation
- project
Route
Aggregation Project - Equinix Project attribute object
- rules
Count number - Number of Rules attached to route aggregation
- state string
- Value representing provisioning status for the route aggregation resource
- timeouts
Route
Aggregation Timeouts - type string
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- uuid string
- Equinix-assigned unique id for the route aggregation resource
- change
Route
Aggregation Change Args - Current state of latest Route Aggregation change
- change_
log RouteAggregation Change Log Args - Details of the last change on the route aggregation resource
- connections_
count int - Number of Connections attached to route aggregation
- description str
- Customer-provided route aggregation description
- href str
- Equinix auto generated URI to the route aggregation resource
- name str
- Customer provided name of the route aggregation
- project
Route
Aggregation Project Args - Equinix Project attribute object
- rules_
count int - Number of Rules attached to route aggregation
- state str
- Value representing provisioning status for the route aggregation resource
- timeouts
Route
Aggregation Timeouts Args - type str
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- uuid str
- Equinix-assigned unique id for the route aggregation resource
- change Property Map
- Current state of latest Route Aggregation change
- change
Log Property Map - Details of the last change on the route aggregation resource
- connections
Count Number - Number of Connections attached to route aggregation
- description String
- Customer-provided route aggregation description
- href String
- Equinix auto generated URI to the route aggregation resource
- name String
- Customer provided name of the route aggregation
- project Property Map
- Equinix Project attribute object
- rules
Count Number - Number of Rules attached to route aggregation
- state String
- Value representing provisioning status for the route aggregation resource
- timeouts Property Map
- type String
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- uuid String
- Equinix-assigned unique id for the route aggregation resource
Supporting Types
RouteAggregationChange, RouteAggregationChangeArgs
RouteAggregationChangeLog, RouteAggregationChangeLogArgs
- Created
By string - User name of creator of the route aggregation resource
- Created
By stringEmail - Email of creator of the route aggregation resource
- Created
By stringFull Name - Legal name of creator of the route aggregation resource
- Created
Date stringTime - Creation time of the route aggregation resource
- Deleted
By string - User name of deleter of the route aggregation resource
- Deleted
By stringEmail - Email of deleter of the route aggregation resource
- Deleted
By stringFull Name - Legal name of deleter of the route aggregation resource
- Deleted
Date stringTime - Deletion time of the route aggregation resource
- Updated
By string - User name of last updater of the route aggregation resource
- Updated
By stringEmail - Email of last updater of the route aggregation resource
- Updated
By stringFull Name - Legal name of last updater of the route aggregation resource
- Updated
Date stringTime - Last update time of the route aggregation resource
- Created
By string - User name of creator of the route aggregation resource
- Created
By stringEmail - Email of creator of the route aggregation resource
- Created
By stringFull Name - Legal name of creator of the route aggregation resource
- Created
Date stringTime - Creation time of the route aggregation resource
- Deleted
By string - User name of deleter of the route aggregation resource
- Deleted
By stringEmail - Email of deleter of the route aggregation resource
- Deleted
By stringFull Name - Legal name of deleter of the route aggregation resource
- Deleted
Date stringTime - Deletion time of the route aggregation resource
- Updated
By string - User name of last updater of the route aggregation resource
- Updated
By stringEmail - Email of last updater of the route aggregation resource
- Updated
By stringFull Name - Legal name of last updater of the route aggregation resource
- Updated
Date stringTime - Last update time of the route aggregation resource
- created
By String - User name of creator of the route aggregation resource
- created
By StringEmail - Email of creator of the route aggregation resource
- created
By StringFull Name - Legal name of creator of the route aggregation resource
- created
Date StringTime - Creation time of the route aggregation resource
- deleted
By String - User name of deleter of the route aggregation resource
- deleted
By StringEmail - Email of deleter of the route aggregation resource
- deleted
By StringFull Name - Legal name of deleter of the route aggregation resource
- deleted
Date StringTime - Deletion time of the route aggregation resource
- updated
By String - User name of last updater of the route aggregation resource
- updated
By StringEmail - Email of last updater of the route aggregation resource
- updated
By StringFull Name - Legal name of last updater of the route aggregation resource
- updated
Date StringTime - Last update time of the route aggregation resource
- created
By string - User name of creator of the route aggregation resource
- created
By stringEmail - Email of creator of the route aggregation resource
- created
By stringFull Name - Legal name of creator of the route aggregation resource
- created
Date stringTime - Creation time of the route aggregation resource
- deleted
By string - User name of deleter of the route aggregation resource
- deleted
By stringEmail - Email of deleter of the route aggregation resource
- deleted
By stringFull Name - Legal name of deleter of the route aggregation resource
- deleted
Date stringTime - Deletion time of the route aggregation resource
- updated
By string - User name of last updater of the route aggregation resource
- updated
By stringEmail - Email of last updater of the route aggregation resource
- updated
By stringFull Name - Legal name of last updater of the route aggregation resource
- updated
Date stringTime - Last update time of the route aggregation resource
- created_
by str - User name of creator of the route aggregation resource
- created_
by_ stremail - Email of creator of the route aggregation resource
- created_
by_ strfull_ name - Legal name of creator of the route aggregation resource
- created_
date_ strtime - Creation time of the route aggregation resource
- deleted_
by str - User name of deleter of the route aggregation resource
- deleted_
by_ stremail - Email of deleter of the route aggregation resource
- deleted_
by_ strfull_ name - Legal name of deleter of the route aggregation resource
- deleted_
date_ strtime - Deletion time of the route aggregation resource
- updated_
by str - User name of last updater of the route aggregation resource
- updated_
by_ stremail - Email of last updater of the route aggregation resource
- updated_
by_ strfull_ name - Legal name of last updater of the route aggregation resource
- updated_
date_ strtime - Last update time of the route aggregation resource
- created
By String - User name of creator of the route aggregation resource
- created
By StringEmail - Email of creator of the route aggregation resource
- created
By StringFull Name - Legal name of creator of the route aggregation resource
- created
Date StringTime - Creation time of the route aggregation resource
- deleted
By String - User name of deleter of the route aggregation resource
- deleted
By StringEmail - Email of deleter of the route aggregation resource
- deleted
By StringFull Name - Legal name of deleter of the route aggregation resource
- deleted
Date StringTime - Deletion time of the route aggregation resource
- updated
By String - User name of last updater of the route aggregation resource
- updated
By StringEmail - Email of last updater of the route aggregation resource
- updated
By StringFull Name - Legal name of last updater of the route aggregation resource
- updated
Date StringTime - Last update time of the route aggregation resource
RouteAggregationProject, RouteAggregationProjectArgs
- Project
Id string - Equinix Subscriber-assigned project ID
- Project
Id string - Equinix Subscriber-assigned project ID
- project
Id String - Equinix Subscriber-assigned project ID
- project
Id string - Equinix Subscriber-assigned project ID
- project_
id str - Equinix Subscriber-assigned project ID
- project
Id String - Equinix Subscriber-assigned project ID
RouteAggregationTimeouts, RouteAggregationTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Package Details
- Repository
- equinix equinix/pulumi-equinix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
equinix
Terraform Provider.