1. Packages
  2. Equinix
  3. API Docs
  4. fabric
  5. getRouteFilterRules
Equinix v0.21.0 published on Friday, Feb 28, 2025 by Equinix

equinix.fabric.getRouteFilterRules

Explore with Pulumi AI

Fabric V4 API compatible data resource that allow user to fetch route filter for a given search data set

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 "@pulumi/equinix";

const rfRules = equinix.fabric.getRouteFilterRules({
    routeFilterId: "<route_filter_policy_id",
    limit: 100,
    offset: 5,
});
export const firstRouteFilterRuleName = rfRules.then(rfRules => rfRules.datas?.[0]?.name);
export const firstRouteFilterRuleDescription = rfRules.then(rfRules => rfRules.datas?.[0]?.description);
export const firstRouteFilterRulePrefix = rfRules.then(rfRules => rfRules.datas?.[0]?.prefix);
export const firstRouteFilterRulePrefixMatch = rfRules.then(rfRules => rfRules.datas?.[0]?.prefixMatch);
Copy
import pulumi
import pulumi_equinix as equinix

rf_rules = equinix.fabric.get_route_filter_rules(route_filter_id="<route_filter_policy_id",
    limit=100,
    offset=5)
pulumi.export("firstRouteFilterRuleName", rf_rules.datas[0].name)
pulumi.export("firstRouteFilterRuleDescription", rf_rules.datas[0].description)
pulumi.export("firstRouteFilterRulePrefix", rf_rules.datas[0].prefix)
pulumi.export("firstRouteFilterRulePrefixMatch", rf_rules.datas[0].prefix_match)
Copy
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 {
		rfRules, err := fabric.GetRouteFilterRules(ctx, &fabric.GetRouteFilterRulesArgs{
			RouteFilterId: "<route_filter_policy_id",
			Limit:         pulumi.IntRef(100),
			Offset:        pulumi.IntRef(5),
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("firstRouteFilterRuleName", rfRules.Datas[0].Name)
		ctx.Export("firstRouteFilterRuleDescription", rfRules.Datas[0].Description)
		ctx.Export("firstRouteFilterRulePrefix", rfRules.Datas[0].Prefix)
		ctx.Export("firstRouteFilterRulePrefixMatch", rfRules.Datas[0].PrefixMatch)
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Equinix = Pulumi.Equinix;

return await Deployment.RunAsync(() => 
{
    var rfRules = Equinix.Fabric.GetRouteFilterRules.Invoke(new()
    {
        RouteFilterId = "<route_filter_policy_id",
        Limit = 100,
        Offset = 5,
    });

    return new Dictionary<string, object?>
    {
        ["firstRouteFilterRuleName"] = rfRules.Apply(getRouteFilterRulesResult => getRouteFilterRulesResult.Datas[0]?.Name),
        ["firstRouteFilterRuleDescription"] = rfRules.Apply(getRouteFilterRulesResult => getRouteFilterRulesResult.Datas[0]?.Description),
        ["firstRouteFilterRulePrefix"] = rfRules.Apply(getRouteFilterRulesResult => getRouteFilterRulesResult.Datas[0]?.Prefix),
        ["firstRouteFilterRulePrefixMatch"] = rfRules.Apply(getRouteFilterRulesResult => getRouteFilterRulesResult.Datas[0]?.PrefixMatch),
    };
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.equinix.fabric.FabricFunctions;
import com.pulumi.equinix.fabric.inputs.GetRouteFilterRulesArgs;
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) {
        final var rfRules = FabricFunctions.getRouteFilterRules(GetRouteFilterRulesArgs.builder()
            .routeFilterId("<route_filter_policy_id")
            .limit(100)
            .offset(5)
            .build());

        ctx.export("firstRouteFilterRuleName", rfRules.applyValue(getRouteFilterRulesResult -> getRouteFilterRulesResult.datas()[0].name()));
        ctx.export("firstRouteFilterRuleDescription", rfRules.applyValue(getRouteFilterRulesResult -> getRouteFilterRulesResult.datas()[0].description()));
        ctx.export("firstRouteFilterRulePrefix", rfRules.applyValue(getRouteFilterRulesResult -> getRouteFilterRulesResult.datas()[0].prefix()));
        ctx.export("firstRouteFilterRulePrefixMatch", rfRules.applyValue(getRouteFilterRulesResult -> getRouteFilterRulesResult.datas()[0].prefixMatch()));
    }
}
Copy
variables:
  rfRules:
    fn::invoke:
      Function: equinix:fabric:getRouteFilterRules
      Arguments:
        routeFilterId: <route_filter_policy_id
        limit: 100
        offset: 5
outputs:
  firstRouteFilterRuleName: ${rfRules.datas[0].name}
  firstRouteFilterRuleDescription: ${rfRules.datas[0].description}
  firstRouteFilterRulePrefix: ${rfRules.datas[0].prefix}
  firstRouteFilterRulePrefixMatch: ${rfRules.datas[0].prefixMatch}
Copy

Using getRouteFilterRules

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getRouteFilterRules(args: GetRouteFilterRulesArgs, opts?: InvokeOptions): Promise<GetRouteFilterRulesResult>
function getRouteFilterRulesOutput(args: GetRouteFilterRulesOutputArgs, opts?: InvokeOptions): Output<GetRouteFilterRulesResult>
Copy
def get_route_filter_rules(limit: Optional[int] = None,
                           offset: Optional[int] = None,
                           route_filter_id: Optional[str] = None,
                           opts: Optional[InvokeOptions] = None) -> GetRouteFilterRulesResult
def get_route_filter_rules_output(limit: Optional[pulumi.Input[int]] = None,
                           offset: Optional[pulumi.Input[int]] = None,
                           route_filter_id: Optional[pulumi.Input[str]] = None,
                           opts: Optional[InvokeOptions] = None) -> Output[GetRouteFilterRulesResult]
Copy
func GetRouteFilterRules(ctx *Context, args *GetRouteFilterRulesArgs, opts ...InvokeOption) (*GetRouteFilterRulesResult, error)
func GetRouteFilterRulesOutput(ctx *Context, args *GetRouteFilterRulesOutputArgs, opts ...InvokeOption) GetRouteFilterRulesResultOutput
Copy

> Note: This function is named GetRouteFilterRules in the Go SDK.

public static class GetRouteFilterRules 
{
    public static Task<GetRouteFilterRulesResult> InvokeAsync(GetRouteFilterRulesArgs args, InvokeOptions? opts = null)
    public static Output<GetRouteFilterRulesResult> Invoke(GetRouteFilterRulesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetRouteFilterRulesResult> getRouteFilterRules(GetRouteFilterRulesArgs args, InvokeOptions options)
public static Output<GetRouteFilterRulesResult> getRouteFilterRules(GetRouteFilterRulesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: equinix:fabric/getRouteFilterRules:getRouteFilterRules
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

RouteFilterId This property is required. string
UUID of the Route Filter Policy the rule is attached to
Limit int
Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
Offset int
The page offset for the pagination request. Index of the first element. Default is 0.
RouteFilterId This property is required. string
UUID of the Route Filter Policy the rule is attached to
Limit int
Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
Offset int
The page offset for the pagination request. Index of the first element. Default is 0.
routeFilterId This property is required. String
UUID of the Route Filter Policy the rule is attached to
limit Integer
Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
offset Integer
The page offset for the pagination request. Index of the first element. Default is 0.
routeFilterId This property is required. string
UUID of the Route Filter Policy the rule is attached to
limit number
Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
offset number
The page offset for the pagination request. Index of the first element. Default is 0.
route_filter_id This property is required. str
UUID of the Route Filter Policy the rule is attached to
limit int
Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
offset int
The page offset for the pagination request. Index of the first element. Default is 0.
routeFilterId This property is required. String
UUID of the Route Filter Policy the rule is attached to
limit Number
Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
offset Number
The page offset for the pagination request. Index of the first element. Default is 0.

getRouteFilterRules Result

The following output properties are available:

Datas List<GetRouteFilterRulesData>
The list of Rules attached to the given Route Filter Policy UUID
Id string
The provider-assigned unique ID for this managed resource.
Paginations List<GetRouteFilterRulesPagination>
Pagination details for the Data Source Search Request
RouteFilterId string
UUID of the Route Filter Policy the rule is attached to
Limit int
Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
Offset int
The page offset for the pagination request. Index of the first element. Default is 0.
Datas []GetRouteFilterRulesData
The list of Rules attached to the given Route Filter Policy UUID
Id string
The provider-assigned unique ID for this managed resource.
Paginations []GetRouteFilterRulesPagination
Pagination details for the Data Source Search Request
RouteFilterId string
UUID of the Route Filter Policy the rule is attached to
Limit int
Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
Offset int
The page offset for the pagination request. Index of the first element. Default is 0.
datas List<GetRouteFilterRulesData>
The list of Rules attached to the given Route Filter Policy UUID
id String
The provider-assigned unique ID for this managed resource.
paginations List<GetRouteFilterRulesPagination>
Pagination details for the Data Source Search Request
routeFilterId String
UUID of the Route Filter Policy the rule is attached to
limit Integer
Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
offset Integer
The page offset for the pagination request. Index of the first element. Default is 0.
datas GetRouteFilterRulesData[]
The list of Rules attached to the given Route Filter Policy UUID
id string
The provider-assigned unique ID for this managed resource.
paginations GetRouteFilterRulesPagination[]
Pagination details for the Data Source Search Request
routeFilterId string
UUID of the Route Filter Policy the rule is attached to
limit number
Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
offset number
The page offset for the pagination request. Index of the first element. Default is 0.
datas Sequence[GetRouteFilterRulesData]
The list of Rules attached to the given Route Filter Policy UUID
id str
The provider-assigned unique ID for this managed resource.
paginations Sequence[GetRouteFilterRulesPagination]
Pagination details for the Data Source Search Request
route_filter_id str
UUID of the Route Filter Policy the rule is attached to
limit int
Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
offset int
The page offset for the pagination request. Index of the first element. Default is 0.
datas List<Property Map>
The list of Rules attached to the given Route Filter Policy UUID
id String
The provider-assigned unique ID for this managed resource.
paginations List<Property Map>
Pagination details for the Data Source Search Request
routeFilterId String
UUID of the Route Filter Policy the rule is attached to
limit Number
Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
offset Number
The page offset for the pagination request. Index of the first element. Default is 0.

Supporting Types

GetRouteFilterRulesData

Action This property is required. string
Action that will be taken on IP Addresses matching the rule
ChangeLogs This property is required. List<GetRouteFilterRulesDataChangeLog>
Changes This property is required. List<GetRouteFilterRulesDataChange>
An object with the details of the previous change applied on the Route Filter
Description This property is required. string
Optional description to add to the Route Filter you will be creating
Href This property is required. string
Route filter rules URI
Name This property is required. string
Name of the Route Filter
Prefix This property is required. string
IP Address Prefix to Filter on
PrefixMatch This property is required. string
Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
State This property is required. string
State of the Route Filter Rule in its lifecycle
Type This property is required. string
Route Filter Type. One of [ BGP_IPv4_PREFIX_FILTER_RULE, BGP_IPv6_PREFIX_FILTER_RULE ]
Uuid This property is required. string
Equinix Assigned ID for Route Filter Rule to retrieve data for
Action This property is required. string
Action that will be taken on IP Addresses matching the rule
ChangeLogs This property is required. []GetRouteFilterRulesDataChangeLog
Changes This property is required. []GetRouteFilterRulesDataChange
An object with the details of the previous change applied on the Route Filter
Description This property is required. string
Optional description to add to the Route Filter you will be creating
Href This property is required. string
Route filter rules URI
Name This property is required. string
Name of the Route Filter
Prefix This property is required. string
IP Address Prefix to Filter on
PrefixMatch This property is required. string
Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
State This property is required. string
State of the Route Filter Rule in its lifecycle
Type This property is required. string
Route Filter Type. One of [ BGP_IPv4_PREFIX_FILTER_RULE, BGP_IPv6_PREFIX_FILTER_RULE ]
Uuid This property is required. string
Equinix Assigned ID for Route Filter Rule to retrieve data for
action This property is required. String
Action that will be taken on IP Addresses matching the rule
changeLogs This property is required. List<GetRouteFilterRulesDataChangeLog>
changes This property is required. List<GetRouteFilterRulesDataChange>
An object with the details of the previous change applied on the Route Filter
description This property is required. String
Optional description to add to the Route Filter you will be creating
href This property is required. String
Route filter rules URI
name This property is required. String
Name of the Route Filter
prefix This property is required. String
IP Address Prefix to Filter on
prefixMatch This property is required. String
Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
state This property is required. String
State of the Route Filter Rule in its lifecycle
type This property is required. String
Route Filter Type. One of [ BGP_IPv4_PREFIX_FILTER_RULE, BGP_IPv6_PREFIX_FILTER_RULE ]
uuid This property is required. String
Equinix Assigned ID for Route Filter Rule to retrieve data for
action This property is required. string
Action that will be taken on IP Addresses matching the rule
changeLogs This property is required. GetRouteFilterRulesDataChangeLog[]
changes This property is required. GetRouteFilterRulesDataChange[]
An object with the details of the previous change applied on the Route Filter
description This property is required. string
Optional description to add to the Route Filter you will be creating
href This property is required. string
Route filter rules URI
name This property is required. string
Name of the Route Filter
prefix This property is required. string
IP Address Prefix to Filter on
prefixMatch This property is required. string
Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
state This property is required. string
State of the Route Filter Rule in its lifecycle
type This property is required. string
Route Filter Type. One of [ BGP_IPv4_PREFIX_FILTER_RULE, BGP_IPv6_PREFIX_FILTER_RULE ]
uuid This property is required. string
Equinix Assigned ID for Route Filter Rule to retrieve data for
action This property is required. str
Action that will be taken on IP Addresses matching the rule
change_logs This property is required. Sequence[GetRouteFilterRulesDataChangeLog]
changes This property is required. Sequence[GetRouteFilterRulesDataChange]
An object with the details of the previous change applied on the Route Filter
description This property is required. str
Optional description to add to the Route Filter you will be creating
href This property is required. str
Route filter rules URI
name This property is required. str
Name of the Route Filter
prefix This property is required. str
IP Address Prefix to Filter on
prefix_match This property is required. str
Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
state This property is required. str
State of the Route Filter Rule in its lifecycle
type This property is required. str
Route Filter Type. One of [ BGP_IPv4_PREFIX_FILTER_RULE, BGP_IPv6_PREFIX_FILTER_RULE ]
uuid This property is required. str
Equinix Assigned ID for Route Filter Rule to retrieve data for
action This property is required. String
Action that will be taken on IP Addresses matching the rule
changeLogs This property is required. List<Property Map>
changes This property is required. List<Property Map>
An object with the details of the previous change applied on the Route Filter
description This property is required. String
Optional description to add to the Route Filter you will be creating
href This property is required. String
Route filter rules URI
name This property is required. String
Name of the Route Filter
prefix This property is required. String
IP Address Prefix to Filter on
prefixMatch This property is required. String
Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
state This property is required. String
State of the Route Filter Rule in its lifecycle
type This property is required. String
Route Filter Type. One of [ BGP_IPv4_PREFIX_FILTER_RULE, BGP_IPv6_PREFIX_FILTER_RULE ]
uuid This property is required. String
Equinix Assigned ID for Route Filter Rule to retrieve data for

GetRouteFilterRulesDataChange

Href This property is required. string
The URI of the previous Route Filter Rule Change
Type This property is required. 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 This property is required. string
Unique identifier for the previous change
Href This property is required. string
The URI of the previous Route Filter Rule Change
Type This property is required. 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 This property is required. string
Unique identifier for the previous change
href This property is required. String
The URI of the previous Route Filter Rule Change
type This property is required. 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 This property is required. String
Unique identifier for the previous change
href This property is required. string
The URI of the previous Route Filter Rule Change
type This property is required. 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 This property is required. string
Unique identifier for the previous change
href This property is required. str
The URI of the previous Route Filter Rule Change
type This property is required. 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 This property is required. str
Unique identifier for the previous change
href This property is required. String
The URI of the previous Route Filter Rule Change
type This property is required. 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 This property is required. String
Unique identifier for the previous change

GetRouteFilterRulesDataChangeLog

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

GetRouteFilterRulesPagination

Limit This property is required. int
Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
Next This property is required. string
URL relative to the last item in the response.
Offset This property is required. int
The page offset for the pagination request. Index of the first element. Default is 0.
Previous This property is required. string
URL relative to the first item in the response.
Total This property is required. int
Total number of elements returned.
Limit This property is required. int
Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
Next This property is required. string
URL relative to the last item in the response.
Offset This property is required. int
The page offset for the pagination request. Index of the first element. Default is 0.
Previous This property is required. string
URL relative to the first item in the response.
Total This property is required. int
Total number of elements returned.
limit This property is required. Integer
Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
next This property is required. String
URL relative to the last item in the response.
offset This property is required. Integer
The page offset for the pagination request. Index of the first element. Default is 0.
previous This property is required. String
URL relative to the first item in the response.
total This property is required. Integer
Total number of elements returned.
limit This property is required. number
Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
next This property is required. string
URL relative to the last item in the response.
offset This property is required. number
The page offset for the pagination request. Index of the first element. Default is 0.
previous This property is required. string
URL relative to the first item in the response.
total This property is required. number
Total number of elements returned.
limit This property is required. int
Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
next This property is required. str
URL relative to the last item in the response.
offset This property is required. int
The page offset for the pagination request. Index of the first element. Default is 0.
previous This property is required. str
URL relative to the first item in the response.
total This property is required. int
Total number of elements returned.
limit This property is required. Number
Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
next This property is required. String
URL relative to the last item in the response.
offset This property is required. Number
The page offset for the pagination request. Index of the first element. Default is 0.
previous This property is required. String
URL relative to the first item in the response.
total This property is required. Number
Total number of elements returned.

Package Details

Repository
equinix equinix/pulumi-equinix
License
Apache-2.0
Notes
This Pulumi package is based on the equinix Terraform Provider.