1. Packages
  2. Equinix
  3. API Docs
  4. fabric
  5. RouteFilterRule
Equinix v0.19.0 published on Thursday, Oct 24, 2024 by Equinix

equinix.fabric.RouteFilterRule

Explore with Pulumi AI

equinix logo
Equinix v0.19.0 published on Thursday, Oct 24, 2024 by Equinix

    Fabric V4 API compatible resource allows creation and management of Equinix Fabric Route Filter Rule

    Additional Documentation:

    • Getting Started: https://docs.equinix.com/en-us/Content/Interconnection/FCR/FCR-route-filters.htm
    • API: https://developer.equinix.com/dev-docs/fabric/api-reference/fabric-v4-apis#route-filter-rules

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as equinix from "@equinix-labs/pulumi-equinix";
    
    const rfRule = new equinix.fabric.RouteFilterRule("rfRule", {
        routeFilterId: "<route_filter_policy_id>",
        prefix: "192.168.0.0/24",
        prefixMatch: "exact",
        description: "Route Filter Rule for X Purpose",
    });
    export const routeFilterRuleId = rfRule.id;
    export const routeFilterId = rfRule.routeFilterId;
    export const routeFilterRulePrefix = rfRule.prefix;
    export const routeFilterRulePrefixMatch = rfRule.prefixMatch;
    
    import pulumi
    import pulumi_equinix as equinix
    
    rf_rule = equinix.fabric.RouteFilterRule("rfRule",
        route_filter_id="<route_filter_policy_id>",
        prefix="192.168.0.0/24",
        prefix_match="exact",
        description="Route Filter Rule for X Purpose")
    pulumi.export("routeFilterRuleId", rf_rule.id)
    pulumi.export("routeFilterId", rf_rule.route_filter_id)
    pulumi.export("routeFilterRulePrefix", rf_rule.prefix)
    pulumi.export("routeFilterRulePrefixMatch", rf_rule.prefix_match)
    
    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 {
    		rfRule, err := fabric.NewRouteFilterRule(ctx, "rfRule", &fabric.RouteFilterRuleArgs{
    			RouteFilterId: pulumi.String("<route_filter_policy_id>"),
    			Prefix:        pulumi.String("192.168.0.0/24"),
    			PrefixMatch:   pulumi.String("exact"),
    			Description:   pulumi.String("Route Filter Rule for X Purpose"),
    		})
    		if err != nil {
    			return err
    		}
    		ctx.Export("routeFilterRuleId", rfRule.ID())
    		ctx.Export("routeFilterId", rfRule.RouteFilterId)
    		ctx.Export("routeFilterRulePrefix", rfRule.Prefix)
    		ctx.Export("routeFilterRulePrefixMatch", rfRule.PrefixMatch)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Equinix = Pulumi.Equinix;
    
    return await Deployment.RunAsync(() => 
    {
        var rfRule = new Equinix.Fabric.RouteFilterRule("rfRule", new()
        {
            RouteFilterId = "<route_filter_policy_id>",
            Prefix = "192.168.0.0/24",
            PrefixMatch = "exact",
            Description = "Route Filter Rule for X Purpose",
        });
    
        return new Dictionary<string, object?>
        {
            ["routeFilterRuleId"] = rfRule.Id,
            ["routeFilterId"] = rfRule.RouteFilterId,
            ["routeFilterRulePrefix"] = rfRule.Prefix,
            ["routeFilterRulePrefixMatch"] = rfRule.PrefixMatch,
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.equinix.fabric.RouteFilterRule;
    import com.pulumi.equinix.fabric.RouteFilterRuleArgs;
    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 rfRule = new RouteFilterRule("rfRule", RouteFilterRuleArgs.builder()
                .routeFilterId("<route_filter_policy_id>")
                .prefix("192.168.0.0/24")
                .prefixMatch("exact")
                .description("Route Filter Rule for X Purpose")
                .build());
    
            ctx.export("routeFilterRuleId", rfRule.id());
            ctx.export("routeFilterId", rfRule.routeFilterId());
            ctx.export("routeFilterRulePrefix", rfRule.prefix());
            ctx.export("routeFilterRulePrefixMatch", rfRule.prefixMatch());
        }
    }
    
    resources:
      rfRule:
        type: equinix:fabric:RouteFilterRule
        properties:
          routeFilterId: <route_filter_policy_id>
          prefix: 192.168.0.0/24
          prefixMatch: exact
          description: Route Filter Rule for X Purpose
    outputs:
      routeFilterRuleId: ${rfRule.id}
      routeFilterId: ${rfRule.routeFilterId}
      routeFilterRulePrefix: ${rfRule.prefix}
      routeFilterRulePrefixMatch: ${rfRule.prefixMatch}
    

    Create RouteFilterRule Resource

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

    Constructor syntax

    new RouteFilterRule(name: string, args: RouteFilterRuleArgs, opts?: CustomResourceOptions);
    @overload
    def RouteFilterRule(resource_name: str,
                        args: RouteFilterRuleArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def RouteFilterRule(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        prefix: Optional[str] = None,
                        route_filter_id: Optional[str] = None,
                        description: Optional[str] = None,
                        name: Optional[str] = None,
                        prefix_match: Optional[str] = None)
    func NewRouteFilterRule(ctx *Context, name string, args RouteFilterRuleArgs, opts ...ResourceOption) (*RouteFilterRule, error)
    public RouteFilterRule(string name, RouteFilterRuleArgs args, CustomResourceOptions? opts = null)
    public RouteFilterRule(String name, RouteFilterRuleArgs args)
    public RouteFilterRule(String name, RouteFilterRuleArgs args, CustomResourceOptions options)
    
    type: equinix:fabric:RouteFilterRule
    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 RouteFilterRuleArgs
    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 RouteFilterRuleArgs
    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 RouteFilterRuleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RouteFilterRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RouteFilterRuleArgs
    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 routeFilterRuleResource = new Equinix.Fabric.RouteFilterRule("routeFilterRuleResource", new()
    {
        Prefix = "string",
        RouteFilterId = "string",
        Description = "string",
        Name = "string",
        PrefixMatch = "string",
    });
    
    example, err := fabric.NewRouteFilterRule(ctx, "routeFilterRuleResource", &fabric.RouteFilterRuleArgs{
    	Prefix:        pulumi.String("string"),
    	RouteFilterId: pulumi.String("string"),
    	Description:   pulumi.String("string"),
    	Name:          pulumi.String("string"),
    	PrefixMatch:   pulumi.String("string"),
    })
    
    var routeFilterRuleResource = new RouteFilterRule("routeFilterRuleResource", RouteFilterRuleArgs.builder()
        .prefix("string")
        .routeFilterId("string")
        .description("string")
        .name("string")
        .prefixMatch("string")
        .build());
    
    route_filter_rule_resource = equinix.fabric.RouteFilterRule("routeFilterRuleResource",
        prefix="string",
        route_filter_id="string",
        description="string",
        name="string",
        prefix_match="string")
    
    const routeFilterRuleResource = new equinix.fabric.RouteFilterRule("routeFilterRuleResource", {
        prefix: "string",
        routeFilterId: "string",
        description: "string",
        name: "string",
        prefixMatch: "string",
    });
    
    type: equinix:fabric:RouteFilterRule
    properties:
        description: string
        name: string
        prefix: string
        prefixMatch: string
        routeFilterId: string
    

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

    Prefix string
    IP Address Prefix to Filter on
    RouteFilterId string
    UUID of the Route Filter Policy to apply this Rule to
    Description string
    Optional description to add to the Route Filter you will be creating
    Name string
    Name of the Route Filter
    PrefixMatch string
    Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
    Prefix string
    IP Address Prefix to Filter on
    RouteFilterId string
    UUID of the Route Filter Policy to apply this Rule to
    Description string
    Optional description to add to the Route Filter you will be creating
    Name string
    Name of the Route Filter
    PrefixMatch string
    Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
    prefix String
    IP Address Prefix to Filter on
    routeFilterId String
    UUID of the Route Filter Policy to apply this Rule to
    description String
    Optional description to add to the Route Filter you will be creating
    name String
    Name of the Route Filter
    prefixMatch String
    Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
    prefix string
    IP Address Prefix to Filter on
    routeFilterId string
    UUID of the Route Filter Policy to apply this Rule to
    description string
    Optional description to add to the Route Filter you will be creating
    name string
    Name of the Route Filter
    prefixMatch string
    Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
    prefix str
    IP Address Prefix to Filter on
    route_filter_id str
    UUID of the Route Filter Policy to apply this Rule to
    description str
    Optional description to add to the Route Filter you will be creating
    name str
    Name of the Route Filter
    prefix_match str
    Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
    prefix String
    IP Address Prefix to Filter on
    routeFilterId String
    UUID of the Route Filter Policy to apply this Rule to
    description String
    Optional description to add to the Route Filter you will be creating
    name String
    Name of the Route Filter
    prefixMatch String
    Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"

    Outputs

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

    Action string
    Action that will be taken on IP Addresses matching the rule
    ChangeLogs List<RouteFilterRuleChangeLog>
    Changes List<RouteFilterRuleChange>
    An object with the details of the previous change applied on the Route Filter
    Href string
    Route filter rules URI
    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    State of the Route Filter Rule in its lifecycle
    Type string
    Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
    Uuid string
    Equinix Assigned ID for Route Filter Rule
    Action string
    Action that will be taken on IP Addresses matching the rule
    ChangeLogs []RouteFilterRuleChangeLog
    Changes []RouteFilterRuleChange
    An object with the details of the previous change applied on the Route Filter
    Href string
    Route filter rules URI
    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    State of the Route Filter Rule in its lifecycle
    Type string
    Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
    Uuid string
    Equinix Assigned ID for Route Filter Rule
    action String
    Action that will be taken on IP Addresses matching the rule
    changeLogs List<RouteFilterRuleChangeLog>
    changes List<RouteFilterRuleChange>
    An object with the details of the previous change applied on the Route Filter
    href String
    Route filter rules URI
    id String
    The provider-assigned unique ID for this managed resource.
    state String
    State of the Route Filter Rule in its lifecycle
    type String
    Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
    uuid String
    Equinix Assigned ID for Route Filter Rule
    action string
    Action that will be taken on IP Addresses matching the rule
    changeLogs RouteFilterRuleChangeLog[]
    changes RouteFilterRuleChange[]
    An object with the details of the previous change applied on the Route Filter
    href string
    Route filter rules URI
    id string
    The provider-assigned unique ID for this managed resource.
    state string
    State of the Route Filter Rule in its lifecycle
    type string
    Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
    uuid string
    Equinix Assigned ID for Route Filter Rule
    action str
    Action that will be taken on IP Addresses matching the rule
    change_logs Sequence[RouteFilterRuleChangeLog]
    changes Sequence[RouteFilterRuleChange]
    An object with the details of the previous change applied on the Route Filter
    href str
    Route filter rules URI
    id str
    The provider-assigned unique ID for this managed resource.
    state str
    State of the Route Filter Rule in its lifecycle
    type str
    Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
    uuid str
    Equinix Assigned ID for Route Filter Rule
    action String
    Action that will be taken on IP Addresses matching the rule
    changeLogs List<Property Map>
    changes List<Property Map>
    An object with the details of the previous change applied on the Route Filter
    href String
    Route filter rules URI
    id String
    The provider-assigned unique ID for this managed resource.
    state String
    State of the Route Filter Rule in its lifecycle
    type String
    Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
    uuid String
    Equinix Assigned ID for Route Filter Rule

    Look up Existing RouteFilterRule Resource

    Get an existing RouteFilterRule 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?: RouteFilterRuleState, opts?: CustomResourceOptions): RouteFilterRule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            change_logs: Optional[Sequence[RouteFilterRuleChangeLogArgs]] = None,
            changes: Optional[Sequence[RouteFilterRuleChangeArgs]] = None,
            description: Optional[str] = None,
            href: Optional[str] = None,
            name: Optional[str] = None,
            prefix: Optional[str] = None,
            prefix_match: Optional[str] = None,
            route_filter_id: Optional[str] = None,
            state: Optional[str] = None,
            type: Optional[str] = None,
            uuid: Optional[str] = None) -> RouteFilterRule
    func GetRouteFilterRule(ctx *Context, name string, id IDInput, state *RouteFilterRuleState, opts ...ResourceOption) (*RouteFilterRule, error)
    public static RouteFilterRule Get(string name, Input<string> id, RouteFilterRuleState? state, CustomResourceOptions? opts = null)
    public static RouteFilterRule get(String name, Output<String> id, RouteFilterRuleState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Action string
    Action that will be taken on IP Addresses matching the rule
    ChangeLogs List<RouteFilterRuleChangeLog>
    Changes List<RouteFilterRuleChange>
    An object with the details of the previous change applied on the Route Filter
    Description string
    Optional description to add to the Route Filter you will be creating
    Href string
    Route filter rules URI
    Name string
    Name of the Route Filter
    Prefix string
    IP Address Prefix to Filter on
    PrefixMatch string
    Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
    RouteFilterId string
    UUID of the Route Filter Policy to apply this Rule to
    State string
    State of the Route Filter Rule in its lifecycle
    Type string
    Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
    Uuid string
    Equinix Assigned ID for Route Filter Rule
    Action string
    Action that will be taken on IP Addresses matching the rule
    ChangeLogs []RouteFilterRuleChangeLogArgs
    Changes []RouteFilterRuleChangeArgs
    An object with the details of the previous change applied on the Route Filter
    Description string
    Optional description to add to the Route Filter you will be creating
    Href string
    Route filter rules URI
    Name string
    Name of the Route Filter
    Prefix string
    IP Address Prefix to Filter on
    PrefixMatch string
    Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
    RouteFilterId string
    UUID of the Route Filter Policy to apply this Rule to
    State string
    State of the Route Filter Rule in its lifecycle
    Type string
    Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
    Uuid string
    Equinix Assigned ID for Route Filter Rule
    action String
    Action that will be taken on IP Addresses matching the rule
    changeLogs List<RouteFilterRuleChangeLog>
    changes List<RouteFilterRuleChange>
    An object with the details of the previous change applied on the Route Filter
    description String
    Optional description to add to the Route Filter you will be creating
    href String
    Route filter rules URI
    name String
    Name of the Route Filter
    prefix String
    IP Address Prefix to Filter on
    prefixMatch String
    Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
    routeFilterId String
    UUID of the Route Filter Policy to apply this Rule to
    state String
    State of the Route Filter Rule in its lifecycle
    type String
    Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
    uuid String
    Equinix Assigned ID for Route Filter Rule
    action string
    Action that will be taken on IP Addresses matching the rule
    changeLogs RouteFilterRuleChangeLog[]
    changes RouteFilterRuleChange[]
    An object with the details of the previous change applied on the Route Filter
    description string
    Optional description to add to the Route Filter you will be creating
    href string
    Route filter rules URI
    name string
    Name of the Route Filter
    prefix string
    IP Address Prefix to Filter on
    prefixMatch string
    Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
    routeFilterId string
    UUID of the Route Filter Policy to apply this Rule to
    state string
    State of the Route Filter Rule in its lifecycle
    type string
    Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
    uuid string
    Equinix Assigned ID for Route Filter Rule
    action str
    Action that will be taken on IP Addresses matching the rule
    change_logs Sequence[RouteFilterRuleChangeLogArgs]
    changes Sequence[RouteFilterRuleChangeArgs]
    An object with the details of the previous change applied on the Route Filter
    description str
    Optional description to add to the Route Filter you will be creating
    href str
    Route filter rules URI
    name str
    Name of the Route Filter
    prefix str
    IP Address Prefix to Filter on
    prefix_match str
    Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
    route_filter_id str
    UUID of the Route Filter Policy to apply this Rule to
    state str
    State of the Route Filter Rule in its lifecycle
    type str
    Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
    uuid str
    Equinix Assigned ID for Route Filter Rule
    action String
    Action that will be taken on IP Addresses matching the rule
    changeLogs List<Property Map>
    changes List<Property Map>
    An object with the details of the previous change applied on the Route Filter
    description String
    Optional description to add to the Route Filter you will be creating
    href String
    Route filter rules URI
    name String
    Name of the Route Filter
    prefix String
    IP Address Prefix to Filter on
    prefixMatch String
    Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
    routeFilterId String
    UUID of the Route Filter Policy to apply this Rule to
    state String
    State of the Route Filter Rule in its lifecycle
    type String
    Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
    uuid String
    Equinix Assigned ID for Route Filter Rule

    Supporting Types

    RouteFilterRuleChange, RouteFilterRuleChangeArgs

    Href string
    The URI of the previous Route Filter Rule Change
    Type string
    Type of change. One of [ "BGP_IPv4_PREFIX_FILTER_RULE_UPDATE","BGP_IPv4_PREFIX_FILTER_RULE_CREATION","BGP_IPv4_PREFIX_FILTER_RULE_DELETION","BGP_IPv6_PREFIX_FILTER_RULE_UPDATE","BGP_IPv6_PREFIX_FILTER_RULE_CREATION","BGP_IPv6_PREFIX_FILTER_RULE_DELETION" ]
    Uuid string
    Unique identifier for the previous change
    Href string
    The URI of the previous Route Filter Rule Change
    Type string
    Type of change. One of [ "BGP_IPv4_PREFIX_FILTER_RULE_UPDATE","BGP_IPv4_PREFIX_FILTER_RULE_CREATION","BGP_IPv4_PREFIX_FILTER_RULE_DELETION","BGP_IPv6_PREFIX_FILTER_RULE_UPDATE","BGP_IPv6_PREFIX_FILTER_RULE_CREATION","BGP_IPv6_PREFIX_FILTER_RULE_DELETION" ]
    Uuid string
    Unique identifier for the previous change
    href String
    The URI of the previous Route Filter Rule Change
    type String
    Type of change. One of [ "BGP_IPv4_PREFIX_FILTER_RULE_UPDATE","BGP_IPv4_PREFIX_FILTER_RULE_CREATION","BGP_IPv4_PREFIX_FILTER_RULE_DELETION","BGP_IPv6_PREFIX_FILTER_RULE_UPDATE","BGP_IPv6_PREFIX_FILTER_RULE_CREATION","BGP_IPv6_PREFIX_FILTER_RULE_DELETION" ]
    uuid String
    Unique identifier for the previous change
    href string
    The URI of the previous Route Filter Rule Change
    type string
    Type of change. One of [ "BGP_IPv4_PREFIX_FILTER_RULE_UPDATE","BGP_IPv4_PREFIX_FILTER_RULE_CREATION","BGP_IPv4_PREFIX_FILTER_RULE_DELETION","BGP_IPv6_PREFIX_FILTER_RULE_UPDATE","BGP_IPv6_PREFIX_FILTER_RULE_CREATION","BGP_IPv6_PREFIX_FILTER_RULE_DELETION" ]
    uuid string
    Unique identifier for the previous change
    href str
    The URI of the previous Route Filter Rule Change
    type str
    Type of change. One of [ "BGP_IPv4_PREFIX_FILTER_RULE_UPDATE","BGP_IPv4_PREFIX_FILTER_RULE_CREATION","BGP_IPv4_PREFIX_FILTER_RULE_DELETION","BGP_IPv6_PREFIX_FILTER_RULE_UPDATE","BGP_IPv6_PREFIX_FILTER_RULE_CREATION","BGP_IPv6_PREFIX_FILTER_RULE_DELETION" ]
    uuid str
    Unique identifier for the previous change
    href String
    The URI of the previous Route Filter Rule Change
    type String
    Type of change. One of [ "BGP_IPv4_PREFIX_FILTER_RULE_UPDATE","BGP_IPv4_PREFIX_FILTER_RULE_CREATION","BGP_IPv4_PREFIX_FILTER_RULE_DELETION","BGP_IPv6_PREFIX_FILTER_RULE_UPDATE","BGP_IPv6_PREFIX_FILTER_RULE_CREATION","BGP_IPv6_PREFIX_FILTER_RULE_DELETION" ]
    uuid String
    Unique identifier for the previous change

    RouteFilterRuleChangeLog, RouteFilterRuleChangeLogArgs

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

    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.19.0 published on Thursday, Oct 24, 2024 by Equinix