Equinix v0.27.1 published on Wednesday, Oct 29, 2025 by Equinix
Equinix v0.27.1 published on Wednesday, Oct 29, 2025 by Equinix
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);
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)
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
})
}
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),
};
});
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()));
}
}
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}
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>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]func GetRouteFilterRules(ctx *Context, args *GetRouteFilterRulesArgs, opts ...InvokeOption) (*GetRouteFilterRulesResult, error)
func GetRouteFilterRulesOutput(ctx *Context, args *GetRouteFilterRulesOutputArgs, opts ...InvokeOption) GetRouteFilterRulesResultOutput> 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)
}public static CompletableFuture<GetRouteFilterRulesResult> getRouteFilterRules(GetRouteFilterRulesArgs args, InvokeOptions options)
public static Output<GetRouteFilterRulesResult> getRouteFilterRules(GetRouteFilterRulesArgs args, InvokeOptions options)
fn::invoke:
function: equinix:fabric/getRouteFilterRules:getRouteFilterRules
arguments:
# arguments dictionaryThe following arguments are supported:
- Route
Filter stringId - 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.
- Route
Filter stringId - 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.
- route
Filter StringId - 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.
- route
Filter stringId - 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_ strid - 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.
- route
Filter StringId - 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<Get
Route Filter Rules Data> - 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<Get
Route Filter Rules Pagination> - Pagination details for the Data Source Search Request
- Route
Filter stringId - 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
[]Get
Route Filter Rules Data - The list of Rules attached to the given Route Filter Policy UUID
- Id string
- The provider-assigned unique ID for this managed resource.
- Paginations
[]Get
Route Filter Rules Pagination - Pagination details for the Data Source Search Request
- Route
Filter stringId - 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<Get
Route Filter Rules Data> - 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<Get
Route Filter Rules Pagination> - Pagination details for the Data Source Search Request
- route
Filter StringId - 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
Get
Route Filter Rules Data[] - The list of Rules attached to the given Route Filter Policy UUID
- id string
- The provider-assigned unique ID for this managed resource.
- paginations
Get
Route Filter Rules Pagination[] - Pagination details for the Data Source Search Request
- route
Filter stringId - 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[Get
Route Filter Rules Data] - 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[Get
Route Filter Rules Pagination] - Pagination details for the Data Source Search Request
- route_
filter_ strid - 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
- route
Filter StringId - 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 string
- Action that will be taken on IP Addresses matching the rule
- Change
Logs List<GetRoute Filter Rules Data Change Log> - Changes
List<Get
Route Filter Rules Data Change> - 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
- Prefix
Match string - Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
- State string
- State of the Route Filter Rule in its lifecycle
- Type string
- Route Filter Type. One of [ BGP_IPv4_PREFIX_FILTER_RULE, BGP_IPv6_PREFIX_FILTER_RULE ]
- Uuid string
- Equinix Assigned ID for Route Filter Rule to retrieve data for
- Action string
- Action that will be taken on IP Addresses matching the rule
- Change
Logs []GetRoute Filter Rules Data Change Log - Changes
[]Get
Route Filter Rules Data Change - 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
- Prefix
Match string - Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
- State string
- State of the Route Filter Rule in its lifecycle
- Type string
- Route Filter Type. One of [ BGP_IPv4_PREFIX_FILTER_RULE, BGP_IPv6_PREFIX_FILTER_RULE ]
- Uuid string
- Equinix Assigned ID for Route Filter Rule to retrieve data for
- action String
- Action that will be taken on IP Addresses matching the rule
- change
Logs List<GetRoute Filter Rules Data Change Log> - changes
List<Get
Route Filter Rules Data Change> - 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
- prefix
Match String - Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
- state String
- State of the Route Filter Rule in its lifecycle
- type String
- Route Filter Type. One of [ BGP_IPv4_PREFIX_FILTER_RULE, BGP_IPv6_PREFIX_FILTER_RULE ]
- uuid String
- Equinix Assigned ID for Route Filter Rule to retrieve data for
- action string
- Action that will be taken on IP Addresses matching the rule
- change
Logs GetRoute Filter Rules Data Change Log[] - changes
Get
Route Filter Rules Data Change[] - 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
- prefix
Match string - Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
- state string
- State of the Route Filter Rule in its lifecycle
- type string
- Route Filter Type. One of [ BGP_IPv4_PREFIX_FILTER_RULE, BGP_IPv6_PREFIX_FILTER_RULE ]
- uuid string
- Equinix Assigned ID for Route Filter Rule to retrieve data for
- action str
- Action that will be taken on IP Addresses matching the rule
- change_
logs Sequence[GetRoute Filter Rules Data Change Log] - changes
Sequence[Get
Route Filter Rules Data Change] - 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"
- state str
- State of the Route Filter Rule in its lifecycle
- type str
- Route Filter Type. One of [ BGP_IPv4_PREFIX_FILTER_RULE, BGP_IPv6_PREFIX_FILTER_RULE ]
- uuid str
- Equinix Assigned ID for Route Filter Rule to retrieve data for
- action String
- Action that will be taken on IP Addresses matching the rule
- change
Logs 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
- prefix
Match String - Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
- state String
- State of the Route Filter Rule in its lifecycle
- type String
- Route Filter Type. One of [ BGP_IPv4_PREFIX_FILTER_RULE, BGP_IPv6_PREFIX_FILTER_RULE ]
- uuid String
- Equinix Assigned ID for Route Filter Rule to retrieve data for
GetRouteFilterRulesDataChange
- 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
GetRouteFilterRulesDataChangeLog
- Created
By string - Created by User Key
- Created
By stringEmail - Created by User Email Address
- Created
By stringFull Name - Created by User Full Name
- Created
Date stringTime - Created by Date and Time
- Deleted
By string - Deleted by User Key
- Deleted
By stringEmail - Deleted by User Email Address
- Deleted
By stringFull Name - Deleted by User Full Name
- Deleted
Date stringTime - Deleted by Date and Time
- Updated
By string - Updated by User Key
- Updated
By stringEmail - Updated by User Email Address
- Updated
By stringFull Name - Updated by User Full Name
- Updated
Date stringTime - Updated by Date and Time
- Created
By string - Created by User Key
- Created
By stringEmail - Created by User Email Address
- Created
By stringFull Name - Created by User Full Name
- Created
Date stringTime - Created by Date and Time
- Deleted
By string - Deleted by User Key
- Deleted
By stringEmail - Deleted by User Email Address
- Deleted
By stringFull Name - Deleted by User Full Name
- Deleted
Date stringTime - Deleted by Date and Time
- Updated
By string - Updated by User Key
- Updated
By stringEmail - Updated by User Email Address
- Updated
By stringFull Name - Updated by User Full Name
- Updated
Date stringTime - Updated by Date and Time
- created
By String - Created by User Key
- created
By StringEmail - Created by User Email Address
- created
By StringFull Name - Created by User Full Name
- created
Date StringTime - Created by Date and Time
- deleted
By String - Deleted by User Key
- deleted
By StringEmail - Deleted by User Email Address
- deleted
By StringFull Name - Deleted by User Full Name
- deleted
Date StringTime - Deleted by Date and Time
- updated
By String - Updated by User Key
- updated
By StringEmail - Updated by User Email Address
- updated
By StringFull Name - Updated by User Full Name
- updated
Date StringTime - Updated by Date and Time
- created
By string - Created by User Key
- created
By stringEmail - Created by User Email Address
- created
By stringFull Name - Created by User Full Name
- created
Date stringTime - Created by Date and Time
- deleted
By string - Deleted by User Key
- deleted
By stringEmail - Deleted by User Email Address
- deleted
By stringFull Name - Deleted by User Full Name
- deleted
Date stringTime - Deleted by Date and Time
- updated
By string - Updated by User Key
- updated
By stringEmail - Updated by User Email Address
- updated
By stringFull Name - Updated by User Full Name
- updated
Date stringTime - Updated by Date and Time
- created_
by str - Created by User Key
- created_
by_ stremail - Created by User Email Address
- created_
by_ strfull_ name - Created by User Full Name
- created_
date_ strtime - Created by Date and Time
- deleted_
by str - Deleted by User Key
- deleted_
by_ stremail - Deleted by User Email Address
- deleted_
by_ strfull_ name - Deleted by User Full Name
- deleted_
date_ strtime - Deleted by Date and Time
- updated_
by str - Updated by User Key
- updated_
by_ stremail - Updated by User Email Address
- updated_
by_ strfull_ name - Updated by User Full Name
- updated_
date_ strtime - Updated by Date and Time
- created
By String - Created by User Key
- created
By StringEmail - Created by User Email Address
- created
By StringFull Name - Created by User Full Name
- created
Date StringTime - Created by Date and Time
- deleted
By String - Deleted by User Key
- deleted
By StringEmail - Deleted by User Email Address
- deleted
By StringFull Name - Deleted by User Full Name
- deleted
Date StringTime - Deleted by Date and Time
- updated
By String - Updated by User Key
- updated
By StringEmail - Updated by User Email Address
- updated
By StringFull Name - Updated by User Full Name
- updated
Date StringTime - Updated by Date and Time
GetRouteFilterRulesPagination
- Limit int
- Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
- Next string
- URL relative to the last item in the response.
- Offset int
- The page offset for the pagination request. Index of the first element. Default is 0.
- Previous string
- URL relative to the first item in the response.
- Total int
- Total number of elements returned.
- Limit int
- Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
- Next string
- URL relative to the last item in the response.
- Offset int
- The page offset for the pagination request. Index of the first element. Default is 0.
- Previous string
- URL relative to the first item in the response.
- Total int
- Total number of elements returned.
- limit Integer
- Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
- next String
- URL relative to the last item in the response.
- offset Integer
- The page offset for the pagination request. Index of the first element. Default is 0.
- previous String
- URL relative to the first item in the response.
- total Integer
- Total number of elements returned.
- limit number
- Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
- next string
- URL relative to the last item in the response.
- offset number
- The page offset for the pagination request. Index of the first element. Default is 0.
- previous string
- URL relative to the first item in the response.
- total number
- Total number of elements returned.
- limit int
- Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
- next str
- URL relative to the last item in the response.
- offset int
- The page offset for the pagination request. Index of the first element. Default is 0.
- previous str
- URL relative to the first item in the response.
- total int
- Total number of elements returned.
- limit Number
- Number of elements to be requested per page. Number must be between 1 and 100. Default is 20
- next String
- URL relative to the last item in the response.
- offset Number
- The page offset for the pagination request. Index of the first element. Default is 0.
- previous String
- URL relative to the first item in the response.
- total 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
equinixTerraform Provider.
Equinix v0.27.1 published on Wednesday, Oct 29, 2025 by Equinix
