1. Packages
  2. Equinix
  3. API Docs
  4. fabric
  5. RouteAggregationRule
Equinix v0.22.0 published on Wednesday, Apr 23, 2025 by Equinix

equinix.fabric.RouteAggregationRule

Explore with Pulumi AI

equinix logo
Equinix v0.22.0 published on Wednesday, Apr 23, 2025 by Equinix

    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
    RouteAggregationId string
    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 RouteAggregationRuleTimeouts
    Prefix string
    Customer-provided route aggregation rule prefix
    RouteAggregationId string
    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 RouteAggregationRuleTimeoutsArgs
    prefix String
    Customer-provided route aggregation rule prefix
    routeAggregationId String
    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 RouteAggregationRuleTimeouts
    prefix string
    Customer-provided route aggregation rule prefix
    routeAggregationId string
    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 RouteAggregationRuleTimeouts
    prefix str
    Customer-provided route aggregation rule prefix
    route_aggregation_id str
    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 RouteAggregationRuleTimeoutsArgs
    prefix String
    Customer-provided route aggregation rule prefix
    routeAggregationId String
    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 RouteAggregationRuleChange
    Current state of latest route aggregation rule change
    ChangeLog RouteAggregationRuleChangeLog
    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 RouteAggregationRuleChange
    Current state of latest route aggregation rule change
    ChangeLog RouteAggregationRuleChangeLog
    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 RouteAggregationRuleChange
    Current state of latest route aggregation rule change
    changeLog RouteAggregationRuleChangeLog
    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 RouteAggregationRuleChange
    Current state of latest route aggregation rule change
    changeLog RouteAggregationRuleChangeLog
    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 RouteAggregationRuleChange
    Current state of latest route aggregation rule change
    change_log RouteAggregationRuleChangeLog
    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
    changeLog 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.
    The following state arguments are supported:
    Change RouteAggregationRuleChange
    Current state of latest route aggregation rule change
    ChangeLog RouteAggregationRuleChangeLog
    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
    RouteAggregationId string
    UUID of the Route Aggregation to apply this Rule to
    State string
    Value representing provisioning status for the route aggregation rule resource
    Timeouts RouteAggregationRuleTimeouts
    Type string
    Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
    Uuid string
    Equinix-assigned unique id for the route aggregation rule resource
    Change RouteAggregationRuleChangeArgs
    Current state of latest route aggregation rule change
    ChangeLog RouteAggregationRuleChangeLogArgs
    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
    RouteAggregationId string
    UUID of the Route Aggregation to apply this Rule to
    State string
    Value representing provisioning status for the route aggregation rule resource
    Timeouts RouteAggregationRuleTimeoutsArgs
    Type string
    Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
    Uuid string
    Equinix-assigned unique id for the route aggregation rule resource
    change RouteAggregationRuleChange
    Current state of latest route aggregation rule change
    changeLog RouteAggregationRuleChangeLog
    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
    routeAggregationId String
    UUID of the Route Aggregation to apply this Rule to
    state String
    Value representing provisioning status for the route aggregation rule resource
    timeouts RouteAggregationRuleTimeouts
    type String
    Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
    uuid String
    Equinix-assigned unique id for the route aggregation rule resource
    change RouteAggregationRuleChange
    Current state of latest route aggregation rule change
    changeLog RouteAggregationRuleChangeLog
    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
    routeAggregationId string
    UUID of the Route Aggregation to apply this Rule to
    state string
    Value representing provisioning status for the route aggregation rule resource
    timeouts RouteAggregationRuleTimeouts
    type string
    Equinix defined Route Aggregation Type; BGPIPv4PREFIXAGGREGATION, BGPIPv6PREFIXAGGREGATION
    uuid string
    Equinix-assigned unique id for the route aggregation rule resource
    change RouteAggregationRuleChangeArgs
    Current state of latest route aggregation rule change
    change_log RouteAggregationRuleChangeLogArgs
    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_id str
    UUID of the Route Aggregation to apply this Rule to
    state str
    Value representing provisioning status for the route aggregation rule resource
    timeouts RouteAggregationRuleTimeoutsArgs
    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
    changeLog 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
    routeAggregationId String
    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

    Type string
    Equinix defined Route Aggregation Change Type
    Uuid string
    Equinix-assigned unique id for a change
    Href string
    Equinix auto generated URI to the route aggregation change
    Type string
    Equinix defined Route Aggregation Change Type
    Uuid string
    Equinix-assigned unique id for a change
    Href string
    Equinix auto generated URI to the route aggregation change
    type String
    Equinix defined Route Aggregation Change Type
    uuid String
    Equinix-assigned unique id for a change
    href String
    Equinix auto generated URI to the route aggregation change
    type string
    Equinix defined Route Aggregation Change Type
    uuid string
    Equinix-assigned unique id for a change
    href string
    Equinix auto generated URI to the route aggregation change
    type str
    Equinix defined Route Aggregation Change Type
    uuid str
    Equinix-assigned unique id for a change
    href str
    Equinix auto generated URI to the route aggregation change
    type String
    Equinix defined Route Aggregation Change Type
    uuid String
    Equinix-assigned unique id for a change
    href String
    Equinix auto generated URI to the route aggregation change

    RouteAggregationRuleChangeLog, RouteAggregationRuleChangeLogArgs

    CreatedBy string
    User name of creator of the stream resource
    CreatedByEmail string
    Email of creator of the stream resource
    CreatedByFullName string
    Legal name of creator of the stream resource
    CreatedDateTime string
    Creation time of the stream resource
    DeletedBy string
    User name of deleter of the stream resource
    DeletedByEmail string
    Email of deleter of the stream resource
    DeletedByFullName string
    Legal name of deleter of the stream resource
    DeletedDateTime string
    Deletion time of the stream resource
    UpdatedBy string
    User name of last updater of the stream resource
    UpdatedByEmail string
    Email of last updater of the stream resource
    UpdatedByFullName string
    Legal name of last updater of the stream resource
    UpdatedDateTime string
    Last update time of the stream resource
    CreatedBy string
    User name of creator of the stream resource
    CreatedByEmail string
    Email of creator of the stream resource
    CreatedByFullName string
    Legal name of creator of the stream resource
    CreatedDateTime string
    Creation time of the stream resource
    DeletedBy string
    User name of deleter of the stream resource
    DeletedByEmail string
    Email of deleter of the stream resource
    DeletedByFullName string
    Legal name of deleter of the stream resource
    DeletedDateTime string
    Deletion time of the stream resource
    UpdatedBy string
    User name of last updater of the stream resource
    UpdatedByEmail string
    Email of last updater of the stream resource
    UpdatedByFullName string
    Legal name of last updater of the stream resource
    UpdatedDateTime string
    Last update time of the stream resource
    createdBy String
    User name of creator of the stream resource
    createdByEmail String
    Email of creator of the stream resource
    createdByFullName String
    Legal name of creator of the stream resource
    createdDateTime String
    Creation time of the stream resource
    deletedBy String
    User name of deleter of the stream resource
    deletedByEmail String
    Email of deleter of the stream resource
    deletedByFullName String
    Legal name of deleter of the stream resource
    deletedDateTime String
    Deletion time of the stream resource
    updatedBy String
    User name of last updater of the stream resource
    updatedByEmail String
    Email of last updater of the stream resource
    updatedByFullName String
    Legal name of last updater of the stream resource
    updatedDateTime String
    Last update time of the stream resource
    createdBy string
    User name of creator of the stream resource
    createdByEmail string
    Email of creator of the stream resource
    createdByFullName string
    Legal name of creator of the stream resource
    createdDateTime string
    Creation time of the stream resource
    deletedBy string
    User name of deleter of the stream resource
    deletedByEmail string
    Email of deleter of the stream resource
    deletedByFullName string
    Legal name of deleter of the stream resource
    deletedDateTime string
    Deletion time of the stream resource
    updatedBy string
    User name of last updater of the stream resource
    updatedByEmail string
    Email of last updater of the stream resource
    updatedByFullName string
    Legal name of last updater of the stream resource
    updatedDateTime string
    Last update time of the stream resource
    created_by str
    User name of creator of the stream resource
    created_by_email str
    Email of creator of the stream resource
    created_by_full_name str
    Legal name of creator of the stream resource
    created_date_time str
    Creation time of the stream resource
    deleted_by str
    User name of deleter of the stream resource
    deleted_by_email str
    Email of deleter of the stream resource
    deleted_by_full_name str
    Legal name of deleter of the stream resource
    deleted_date_time str
    Deletion time of the stream resource
    updated_by str
    User name of last updater of the stream resource
    updated_by_email str
    Email of last updater of the stream resource
    updated_by_full_name str
    Legal name of last updater of the stream resource
    updated_date_time str
    Last update time of the stream resource
    createdBy String
    User name of creator of the stream resource
    createdByEmail String
    Email of creator of the stream resource
    createdByFullName String
    Legal name of creator of the stream resource
    createdDateTime String
    Creation time of the stream resource
    deletedBy String
    User name of deleter of the stream resource
    deletedByEmail String
    Email of deleter of the stream resource
    deletedByFullName String
    Legal name of deleter of the stream resource
    deletedDateTime String
    Deletion time of the stream resource
    updatedBy String
    User name of last updater of the stream resource
    updatedByEmail String
    Email of last updater of the stream resource
    updatedByFullName String
    Legal name of last updater of the stream resource
    updatedDateTime String
    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.
    equinix logo
    Equinix v0.22.0 published on Wednesday, Apr 23, 2025 by Equinix