equinix.fabric.RouteAggregationRule
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
import * as pulumi from "@pulumi/pulumi";
import * as equinix from "@equinix-labs/pulumi-equinix";
const raRule = new equinix.fabric.RouteAggregationRule("raRule", {
routeAggregationId: "<route_aggregation_id>",
description: "Route aggregation rule",
prefix: "192.168.0.0/24",
});
export const routeAggregationRuleName = raRule.name;
export const routeAggregationRuleDescription = raRule.description;
export const routeAggregationRuleType = raRule.type;
export const routeAggregationRulePrefix = raRule.prefix;
export const routeAggregationRuleState = raRule.state;
import pulumi
import pulumi_equinix as equinix
ra_rule = equinix.fabric.RouteAggregationRule("raRule",
route_aggregation_id="<route_aggregation_id>",
description="Route aggregation rule",
prefix="192.168.0.0/24")
pulumi.export("routeAggregationRuleName", ra_rule.name)
pulumi.export("routeAggregationRuleDescription", ra_rule.description)
pulumi.export("routeAggregationRuleType", ra_rule.type)
pulumi.export("routeAggregationRulePrefix", ra_rule.prefix)
pulumi.export("routeAggregationRuleState", ra_rule.state)
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 {
raRule, err := fabric.NewRouteAggregationRule(ctx, "raRule", &fabric.RouteAggregationRuleArgs{
RouteAggregationId: pulumi.String("<route_aggregation_id>"),
Description: pulumi.String("Route aggregation rule"),
Prefix: pulumi.String("192.168.0.0/24"),
})
if err != nil {
return err
}
ctx.Export("routeAggregationRuleName", raRule.Name)
ctx.Export("routeAggregationRuleDescription", raRule.Description)
ctx.Export("routeAggregationRuleType", raRule.Type)
ctx.Export("routeAggregationRulePrefix", raRule.Prefix)
ctx.Export("routeAggregationRuleState", raRule.State)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Equinix = Pulumi.Equinix;
return await Deployment.RunAsync(() =>
{
var raRule = new Equinix.Fabric.RouteAggregationRule("raRule", new()
{
RouteAggregationId = "<route_aggregation_id>",
Description = "Route aggregation rule",
Prefix = "192.168.0.0/24",
});
return new Dictionary<string, object?>
{
["routeAggregationRuleName"] = raRule.Name,
["routeAggregationRuleDescription"] = raRule.Description,
["routeAggregationRuleType"] = raRule.Type,
["routeAggregationRulePrefix"] = raRule.Prefix,
["routeAggregationRuleState"] = raRule.State,
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.equinix.fabric.RouteAggregationRule;
import com.pulumi.equinix.fabric.RouteAggregationRuleArgs;
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 raRule = new RouteAggregationRule("raRule", RouteAggregationRuleArgs.builder()
.routeAggregationId("<route_aggregation_id>")
.description("Route aggregation rule")
.prefix("192.168.0.0/24")
.build());
ctx.export("routeAggregationRuleName", raRule.name());
ctx.export("routeAggregationRuleDescription", raRule.description());
ctx.export("routeAggregationRuleType", raRule.type());
ctx.export("routeAggregationRulePrefix", raRule.prefix());
ctx.export("routeAggregationRuleState", raRule.state());
}
}
resources:
raRule:
type: equinix:fabric:RouteAggregationRule
properties:
routeAggregationId: <route_aggregation_id>
description: Route aggregation rule
prefix: 192.168.0.0/24
outputs:
routeAggregationRuleName: ${raRule.name}
routeAggregationRuleDescription: ${raRule.description}
routeAggregationRuleType: ${raRule.type}
routeAggregationRulePrefix: ${raRule.prefix}
routeAggregationRuleState: ${raRule.state}
Create RouteAggregationRule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RouteAggregationRule(name: string, args: RouteAggregationRuleArgs, opts?: CustomResourceOptions);
@overload
def RouteAggregationRule(resource_name: str,
args: RouteAggregationRuleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RouteAggregationRule(resource_name: str,
opts: Optional[ResourceOptions] = None,
prefix: Optional[str] = None,
route_aggregation_id: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
timeouts: Optional[RouteAggregationRuleTimeoutsArgs] = None)
func NewRouteAggregationRule(ctx *Context, name string, args RouteAggregationRuleArgs, opts ...ResourceOption) (*RouteAggregationRule, error)
public RouteAggregationRule(string name, RouteAggregationRuleArgs args, CustomResourceOptions? opts = null)
public RouteAggregationRule(String name, RouteAggregationRuleArgs args)
public RouteAggregationRule(String name, RouteAggregationRuleArgs args, CustomResourceOptions options)
type: equinix:fabric:RouteAggregationRule
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 RouteAggregationRuleArgs
- 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 RouteAggregationRuleArgs
- 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 RouteAggregationRuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RouteAggregationRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RouteAggregationRuleArgs
- 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 routeAggregationRuleResource = new Equinix.Fabric.RouteAggregationRule("routeAggregationRuleResource", new()
{
Prefix = "string",
RouteAggregationId = "string",
Description = "string",
Name = "string",
Timeouts = new Equinix.Fabric.Inputs.RouteAggregationRuleTimeoutsArgs
{
Create = "string",
Delete = "string",
Read = "string",
Update = "string",
},
});
example, err := fabric.NewRouteAggregationRule(ctx, "routeAggregationRuleResource", &fabric.RouteAggregationRuleArgs{
Prefix: pulumi.String("string"),
RouteAggregationId: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Timeouts: &fabric.RouteAggregationRuleTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var routeAggregationRuleResource = new RouteAggregationRule("routeAggregationRuleResource", RouteAggregationRuleArgs.builder()
.prefix("string")
.routeAggregationId("string")
.description("string")
.name("string")
.timeouts(RouteAggregationRuleTimeoutsArgs.builder()
.create("string")
.delete("string")
.read("string")
.update("string")
.build())
.build());
route_aggregation_rule_resource = equinix.fabric.RouteAggregationRule("routeAggregationRuleResource",
prefix="string",
route_aggregation_id="string",
description="string",
name="string",
timeouts={
"create": "string",
"delete": "string",
"read": "string",
"update": "string",
})
const routeAggregationRuleResource = new equinix.fabric.RouteAggregationRule("routeAggregationRuleResource", {
prefix: "string",
routeAggregationId: "string",
description: "string",
name: "string",
timeouts: {
create: "string",
"delete": "string",
read: "string",
update: "string",
},
});
type: equinix:fabric:RouteAggregationRule
properties:
description: string
name: string
prefix: string
routeAggregationId: string
timeouts:
create: string
delete: string
read: string
update: string
RouteAggregationRule 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 RouteAggregationRule resource accepts the following input properties:
- Prefix string
- Customer-provided route aggregation rule prefix
- Route
Aggregation stringId - UUID of the Route Aggregation to apply this Rule to
- Description string
- Customer-provided route aggregation rule description
- Name string
- Customer provided name of the route aggregation rule
- Timeouts
Route
Aggregation Rule Timeouts
- Prefix string
- Customer-provided route aggregation rule prefix
- Route
Aggregation stringId - UUID of the Route Aggregation to apply this Rule to
- Description string
- Customer-provided route aggregation rule description
- Name string
- Customer provided name of the route aggregation rule
- Timeouts
Route
Aggregation Rule Timeouts Args
- prefix String
- Customer-provided route aggregation rule prefix
- route
Aggregation StringId - UUID of the Route Aggregation to apply this Rule to
- description String
- Customer-provided route aggregation rule description
- name String
- Customer provided name of the route aggregation rule
- timeouts
Route
Aggregation Rule Timeouts
- prefix string
- Customer-provided route aggregation rule prefix
- route
Aggregation stringId - UUID of the Route Aggregation to apply this Rule to
- description string
- Customer-provided route aggregation rule description
- name string
- Customer provided name of the route aggregation rule
- timeouts
Route
Aggregation Rule Timeouts
- prefix str
- Customer-provided route aggregation rule prefix
- route_
aggregation_ strid - UUID of the Route Aggregation to apply this Rule to
- description str
- Customer-provided route aggregation rule description
- name str
- Customer provided name of the route aggregation rule
- timeouts
Route
Aggregation Rule Timeouts Args
- prefix String
- Customer-provided route aggregation rule prefix
- route
Aggregation StringId - UUID of the Route Aggregation to apply this Rule to
- description String
- Customer-provided route aggregation rule description
- name String
- Customer provided name of the route aggregation rule
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the RouteAggregationRule resource produces the following output properties:
- Change
Route
Aggregation Rule Change - Current state of latest route aggregation rule change
- Change
Log RouteAggregation Rule Change Log - Details of the last change on the stream resource
- Href string
- Equinix auto generated URI to the route aggregation rule resource
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- Value representing provisioning status for the route aggregation rule resource
- Type string
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- Uuid string
- Equinix-assigned unique id for the route aggregation rule resource
- Change
Route
Aggregation Rule Change - Current state of latest route aggregation rule change
- Change
Log RouteAggregation Rule Change Log - Details of the last change on the stream resource
- Href string
- Equinix auto generated URI to the route aggregation rule resource
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- Value representing provisioning status for the route aggregation rule resource
- Type string
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- Uuid string
- Equinix-assigned unique id for the route aggregation rule resource
- change
Route
Aggregation Rule Change - Current state of latest route aggregation rule change
- change
Log RouteAggregation Rule Change Log - Details of the last change on the stream resource
- href String
- Equinix auto generated URI to the route aggregation rule resource
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- Value representing provisioning status for the route aggregation rule resource
- type String
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- uuid String
- Equinix-assigned unique id for the route aggregation rule resource
- change
Route
Aggregation Rule Change - Current state of latest route aggregation rule change
- change
Log RouteAggregation Rule Change Log - Details of the last change on the stream resource
- href string
- Equinix auto generated URI to the route aggregation rule resource
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- Value representing provisioning status for the route aggregation rule resource
- type string
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- uuid string
- Equinix-assigned unique id for the route aggregation rule resource
- change
Route
Aggregation Rule Change - Current state of latest route aggregation rule change
- change_
log RouteAggregation Rule Change Log - Details of the last change on the stream resource
- href str
- Equinix auto generated URI to the route aggregation rule resource
- id str
- The provider-assigned unique ID for this managed resource.
- state str
- Value representing provisioning status for the route aggregation rule resource
- type str
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- uuid str
- Equinix-assigned unique id for the route aggregation rule resource
- change Property Map
- Current state of latest route aggregation rule change
- change
Log Property Map - Details of the last change on the stream resource
- href String
- Equinix auto generated URI to the route aggregation rule resource
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- Value representing provisioning status for the route aggregation rule resource
- type String
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- uuid String
- Equinix-assigned unique id for the route aggregation rule resource
Look up Existing RouteAggregationRule Resource
Get an existing RouteAggregationRule 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?: RouteAggregationRuleState, opts?: CustomResourceOptions): RouteAggregationRule
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
change: Optional[RouteAggregationRuleChangeArgs] = None,
change_log: Optional[RouteAggregationRuleChangeLogArgs] = None,
description: Optional[str] = None,
href: Optional[str] = None,
name: Optional[str] = None,
prefix: Optional[str] = None,
route_aggregation_id: Optional[str] = None,
state: Optional[str] = None,
timeouts: Optional[RouteAggregationRuleTimeoutsArgs] = None,
type: Optional[str] = None,
uuid: Optional[str] = None) -> RouteAggregationRule
func GetRouteAggregationRule(ctx *Context, name string, id IDInput, state *RouteAggregationRuleState, opts ...ResourceOption) (*RouteAggregationRule, error)
public static RouteAggregationRule Get(string name, Input<string> id, RouteAggregationRuleState? state, CustomResourceOptions? opts = null)
public static RouteAggregationRule get(String name, Output<String> id, RouteAggregationRuleState state, CustomResourceOptions options)
resources: _: type: equinix:fabric:RouteAggregationRule 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 Rule Change - Current state of latest route aggregation rule change
- Change
Log RouteAggregation Rule Change Log - Details of the last change on the stream resource
- Description string
- Customer-provided route aggregation rule description
- Href string
- Equinix auto generated URI to the route aggregation rule resource
- Name string
- Customer provided name of the route aggregation rule
- Prefix string
- Customer-provided route aggregation rule prefix
- Route
Aggregation stringId - UUID of the Route Aggregation to apply this Rule to
- State string
- Value representing provisioning status for the route aggregation rule resource
- Timeouts
Route
Aggregation Rule Timeouts - Type string
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- Uuid string
- Equinix-assigned unique id for the route aggregation rule resource
- Change
Route
Aggregation Rule Change Args - Current state of latest route aggregation rule change
- Change
Log RouteAggregation Rule Change Log Args - Details of the last change on the stream resource
- Description string
- Customer-provided route aggregation rule description
- Href string
- Equinix auto generated URI to the route aggregation rule resource
- Name string
- Customer provided name of the route aggregation rule
- Prefix string
- Customer-provided route aggregation rule prefix
- Route
Aggregation stringId - UUID of the Route Aggregation to apply this Rule to
- State string
- Value representing provisioning status for the route aggregation rule resource
- Timeouts
Route
Aggregation Rule Timeouts Args - Type string
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- Uuid string
- Equinix-assigned unique id for the route aggregation rule resource
- change
Route
Aggregation Rule Change - Current state of latest route aggregation rule change
- change
Log RouteAggregation Rule Change Log - Details of the last change on the stream resource
- description String
- Customer-provided route aggregation rule description
- href String
- Equinix auto generated URI to the route aggregation rule resource
- name String
- Customer provided name of the route aggregation rule
- prefix String
- Customer-provided route aggregation rule prefix
- route
Aggregation StringId - UUID of the Route Aggregation to apply this Rule to
- state String
- Value representing provisioning status for the route aggregation rule resource
- timeouts
Route
Aggregation Rule Timeouts - type String
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- uuid String
- Equinix-assigned unique id for the route aggregation rule resource
- change
Route
Aggregation Rule Change - Current state of latest route aggregation rule change
- change
Log RouteAggregation Rule Change Log - Details of the last change on the stream resource
- description string
- Customer-provided route aggregation rule description
- href string
- Equinix auto generated URI to the route aggregation rule resource
- name string
- Customer provided name of the route aggregation rule
- prefix string
- Customer-provided route aggregation rule prefix
- route
Aggregation stringId - UUID of the Route Aggregation to apply this Rule to
- state string
- Value representing provisioning status for the route aggregation rule resource
- timeouts
Route
Aggregation Rule Timeouts - type string
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- uuid string
- Equinix-assigned unique id for the route aggregation rule resource
- change
Route
Aggregation Rule Change Args - Current state of latest route aggregation rule change
- change_
log RouteAggregation Rule Change Log Args - Details of the last change on the stream resource
- description str
- Customer-provided route aggregation rule description
- href str
- Equinix auto generated URI to the route aggregation rule resource
- name str
- Customer provided name of the route aggregation rule
- prefix str
- Customer-provided route aggregation rule prefix
- route_
aggregation_ strid - UUID of the Route Aggregation to apply this Rule to
- state str
- Value representing provisioning status for the route aggregation rule resource
- timeouts
Route
Aggregation Rule Timeouts Args - type str
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- uuid str
- Equinix-assigned unique id for the route aggregation rule resource
- change Property Map
- Current state of latest route aggregation rule change
- change
Log Property Map - Details of the last change on the stream resource
- description String
- Customer-provided route aggregation rule description
- href String
- Equinix auto generated URI to the route aggregation rule resource
- name String
- Customer provided name of the route aggregation rule
- prefix String
- Customer-provided route aggregation rule prefix
- route
Aggregation StringId - UUID of the Route Aggregation to apply this Rule to
- state String
- Value representing provisioning status for the route aggregation rule resource
- timeouts Property Map
- type String
- Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
- uuid String
- Equinix-assigned unique id for the route aggregation rule resource
Supporting Types
RouteAggregationRuleChange, RouteAggregationRuleChangeArgs
RouteAggregationRuleChangeLog, RouteAggregationRuleChangeLogArgs
- Created
By string - User name of creator of the stream resource
- Created
By stringEmail - Email of creator of the stream resource
- Created
By stringFull Name - Legal name of creator of the stream resource
- Created
Date stringTime - Creation time of the stream resource
- Deleted
By string - User name of deleter of the stream resource
- Deleted
By stringEmail - Email of deleter of the stream resource
- Deleted
By stringFull Name - Legal name of deleter of the stream resource
- Deleted
Date stringTime - Deletion time of the stream resource
- Updated
By string - User name of last updater of the stream resource
- Updated
By stringEmail - Email of last updater of the stream resource
- Updated
By stringFull Name - Legal name of last updater of the stream resource
- Updated
Date stringTime - Last update time of the stream resource
- Created
By string - User name of creator of the stream resource
- Created
By stringEmail - Email of creator of the stream resource
- Created
By stringFull Name - Legal name of creator of the stream resource
- Created
Date stringTime - Creation time of the stream resource
- Deleted
By string - User name of deleter of the stream resource
- Deleted
By stringEmail - Email of deleter of the stream resource
- Deleted
By stringFull Name - Legal name of deleter of the stream resource
- Deleted
Date stringTime - Deletion time of the stream resource
- Updated
By string - User name of last updater of the stream resource
- Updated
By stringEmail - Email of last updater of the stream resource
- Updated
By stringFull Name - Legal name of last updater of the stream resource
- Updated
Date stringTime - Last update time of the stream resource
- created
By String - User name of creator of the stream resource
- created
By StringEmail - Email of creator of the stream resource
- created
By StringFull Name - Legal name of creator of the stream resource
- created
Date StringTime - Creation time of the stream resource
- deleted
By String - User name of deleter of the stream resource
- deleted
By StringEmail - Email of deleter of the stream resource
- deleted
By StringFull Name - Legal name of deleter of the stream resource
- deleted
Date StringTime - Deletion time of the stream resource
- updated
By String - User name of last updater of the stream resource
- updated
By StringEmail - Email of last updater of the stream resource
- updated
By StringFull Name - Legal name of last updater of the stream resource
- updated
Date StringTime - Last update time of the stream resource
- created
By string - User name of creator of the stream resource
- created
By stringEmail - Email of creator of the stream resource
- created
By stringFull Name - Legal name of creator of the stream resource
- created
Date stringTime - Creation time of the stream resource
- deleted
By string - User name of deleter of the stream resource
- deleted
By stringEmail - Email of deleter of the stream resource
- deleted
By stringFull Name - Legal name of deleter of the stream resource
- deleted
Date stringTime - Deletion time of the stream resource
- updated
By string - User name of last updater of the stream resource
- updated
By stringEmail - Email of last updater of the stream resource
- updated
By stringFull Name - Legal name of last updater of the stream resource
- updated
Date stringTime - Last update time of the stream resource
- created_
by str - User name of creator of the stream resource
- created_
by_ stremail - Email of creator of the stream resource
- created_
by_ strfull_ name - Legal name of creator of the stream resource
- created_
date_ strtime - Creation time of the stream resource
- deleted_
by str - User name of deleter of the stream resource
- deleted_
by_ stremail - Email of deleter of the stream resource
- deleted_
by_ strfull_ name - Legal name of deleter of the stream resource
- deleted_
date_ strtime - Deletion time of the stream resource
- updated_
by str - User name of last updater of the stream resource
- updated_
by_ stremail - Email of last updater of the stream resource
- updated_
by_ strfull_ name - Legal name of last updater of the stream resource
- updated_
date_ strtime - Last update time of the stream resource
- created
By String - User name of creator of the stream resource
- created
By StringEmail - Email of creator of the stream resource
- created
By StringFull Name - Legal name of creator of the stream resource
- created
Date StringTime - Creation time of the stream resource
- deleted
By String - User name of deleter of the stream resource
- deleted
By StringEmail - Email of deleter of the stream resource
- deleted
By StringFull Name - Legal name of deleter of the stream resource
- deleted
Date StringTime - Deletion time of the stream resource
- updated
By String - User name of last updater of the stream resource
- updated
By StringEmail - Email of last updater of the stream resource
- updated
By StringFull Name - Legal name of last updater of the stream resource
- updated
Date StringTime - Last update time of the stream resource
RouteAggregationRuleTimeouts, RouteAggregationRuleTimeoutsArgs
- 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.