Viewing docs for Equinix v0.32.0
published on Wednesday, Sep 23, 2026 by Equinix
published on Wednesday, Sep 23, 2026 by Equinix
Viewing docs for Equinix v0.32.0
published on Wednesday, Sep 23, 2026 by Equinix
published on Wednesday, Sep 23, 2026 by Equinix
Fabric V4 API compatible data resource that allow user to fetch Equinix Fabric Route Aggregation Rules with pagination details Additional Documentation:
- API: https://docs.equinix.com/api-catalog/fabricv4/#tag/Route-Aggregation-Rules/operation/searchRouteAggregationRules
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as equinix from "@pulumi/equinix";
const raRules = equinix.fabric.getRouteAggregationRules({
routeAggregationId: "<route_aggregation_id>",
pagination: {
limit: 2,
offset: 1,
},
});
export const routeAggregationRuleName = raRules.then(raRules => raRules.datas?.[0]?.name);
export const routeAggregationRuleDescription = raRules.then(raRules => raRules.datas?.[0]?.description);
export const routeAggregationRulePrefix = raRules.then(raRules => raRules.datas?.[0]?.prefix);
export const routeAggregationRuleState = raRules.then(raRules => raRules.datas?.[0]?.state);
import pulumi
import pulumi_equinix as equinix
ra_rules = equinix.fabric.get_route_aggregation_rules(route_aggregation_id="<route_aggregation_id>",
pagination={
"limit": 2,
"offset": 1,
})
pulumi.export("routeAggregationRuleName", ra_rules.datas[0].name)
pulumi.export("routeAggregationRuleDescription", ra_rules.datas[0].description)
pulumi.export("routeAggregationRulePrefix", ra_rules.datas[0].prefix)
pulumi.export("routeAggregationRuleState", ra_rules.datas[0].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 {
raRules, err := fabric.GetRouteAggregationRules(ctx, &fabric.GetRouteAggregationRulesArgs{
RouteAggregationId: "<route_aggregation_id>",
Pagination: fabric.GetRouteAggregationRulesPagination{
Limit: 2,
Offset: 1,
},
}, nil)
if err != nil {
return err
}
ctx.Export("routeAggregationRuleName", raRules.Datas[0].Name)
ctx.Export("routeAggregationRuleDescription", raRules.Datas[0].Description)
ctx.Export("routeAggregationRulePrefix", raRules.Datas[0].Prefix)
ctx.Export("routeAggregationRuleState", raRules.Datas[0].State)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Equinix = Pulumi.Equinix;
return await Deployment.RunAsync(() =>
{
var raRules = Equinix.Fabric.GetRouteAggregationRules.Invoke(new()
{
RouteAggregationId = "<route_aggregation_id>",
Pagination = new Equinix.Fabric.Inputs.GetRouteAggregationRulesPaginationInputArgs
{
Limit = 2,
Offset = 1,
},
});
return new Dictionary<string, object?>
{
["routeAggregationRuleName"] = raRules.Apply(getRouteAggregationRulesResult => getRouteAggregationRulesResult.Datas[0]?.Name),
["routeAggregationRuleDescription"] = raRules.Apply(getRouteAggregationRulesResult => getRouteAggregationRulesResult.Datas[0]?.Description),
["routeAggregationRulePrefix"] = raRules.Apply(getRouteAggregationRulesResult => getRouteAggregationRulesResult.Datas[0]?.Prefix),
["routeAggregationRuleState"] = raRules.Apply(getRouteAggregationRulesResult => getRouteAggregationRulesResult.Datas[0]?.State),
};
});
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.GetRouteAggregationRulesArgs;
import com.pulumi.equinix.fabric.inputs.GetRouteAggregationRulesPaginationArgs;
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 raRules = FabricFunctions.getRouteAggregationRules(GetRouteAggregationRulesArgs.builder()
.routeAggregationId("<route_aggregation_id>")
.pagination(GetRouteAggregationRulesPaginationArgs.builder()
.limit(2)
.offset(1)
.build())
.build());
ctx.export("routeAggregationRuleName", raRules.applyValue(getRouteAggregationRulesResult -> getRouteAggregationRulesResult.datas()[0].name()));
ctx.export("routeAggregationRuleDescription", raRules.applyValue(getRouteAggregationRulesResult -> getRouteAggregationRulesResult.datas()[0].description()));
ctx.export("routeAggregationRulePrefix", raRules.applyValue(getRouteAggregationRulesResult -> getRouteAggregationRulesResult.datas()[0].prefix()));
ctx.export("routeAggregationRuleState", raRules.applyValue(getRouteAggregationRulesResult -> getRouteAggregationRulesResult.datas()[0].state()));
}
}
variables:
raRules:
fn::invoke:
function: equinix:fabric:getRouteAggregationRules
arguments:
routeAggregationId: <route_aggregation_id>
pagination:
limit: 2
offset: 1
outputs:
routeAggregationRuleName: ${raRules.datas[0].name}
routeAggregationRuleDescription: ${raRules.datas[0].description}
routeAggregationRulePrefix: ${raRules.datas[0].prefix}
routeAggregationRuleState: ${raRules.datas[0].state}
Example coming soon!
Using getRouteAggregationRules
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 getRouteAggregationRules(args: GetRouteAggregationRulesArgs, opts?: InvokeOptions): Promise<GetRouteAggregationRulesResult>
function getRouteAggregationRulesOutput(args: GetRouteAggregationRulesOutputArgs, opts?: InvokeOutputOptions): Output<GetRouteAggregationRulesResult>def get_route_aggregation_rules(filters: Optional[Sequence[GetRouteAggregationRulesFilter]] = None,
outer_operator: Optional[str] = None,
pagination: Optional[GetRouteAggregationRulesPagination] = None,
route_aggregation_id: Optional[str] = None,
sorts: Optional[Sequence[GetRouteAggregationRulesSort]] = None,
opts: Optional[InvokeOptions] = None) -> GetRouteAggregationRulesResult
def get_route_aggregation_rules_output(filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetRouteAggregationRulesFilterArgs]]]] = None,
outer_operator: pulumi.Input[Optional[str]] = None,
pagination: pulumi.Input[Optional[GetRouteAggregationRulesPaginationArgs]] = None,
route_aggregation_id: pulumi.Input[Optional[str]] = None,
sorts: pulumi.Input[Optional[Sequence[pulumi.Input[GetRouteAggregationRulesSortArgs]]]] = None,
opts: Optional[InvokeOutputOptions] = None) -> Output[GetRouteAggregationRulesResult]func GetRouteAggregationRules(ctx *Context, args *GetRouteAggregationRulesArgs, opts ...InvokeOption) (*GetRouteAggregationRulesResult, error)
func GetRouteAggregationRulesOutput(ctx *Context, args *GetRouteAggregationRulesOutputArgs, opts ...InvokeOption) GetRouteAggregationRulesResultOutput> Note: This function is named GetRouteAggregationRules in the Go SDK.
public static class GetRouteAggregationRules
{
public static Task<GetRouteAggregationRulesResult> InvokeAsync(GetRouteAggregationRulesArgs args, InvokeOptions? opts = null)
public static Output<GetRouteAggregationRulesResult> Invoke(GetRouteAggregationRulesInvokeArgs args, InvokeOptions? opts = null)
public static Output<GetRouteAggregationRulesResult> Invoke(GetRouteAggregationRulesInvokeArgs args, InvokeOutputOptions opts)
}public static CompletableFuture<GetRouteAggregationRulesResult> getRouteAggregationRules(GetRouteAggregationRulesArgs args, InvokeOptions options)
public static Output<GetRouteAggregationRulesResult> getRouteAggregationRules(GetRouteAggregationRulesArgs args, InvokeOptions options)
public static Output<GetRouteAggregationRulesResult> getRouteAggregationRules(GetRouteAggregationRulesArgs args, InvokeOutputOptions options)
fn::invoke:
function: equinix:fabric/getRouteAggregationRules:getRouteAggregationRules
arguments:
# arguments dictionarydata "equinix_fabric_get_route_aggregation_rules" "name" {
# arguments
}The following arguments are supported:
- Outer
Operator string - Determines if the filter list will be grouped by AND or by OR. One of [AND, OR]
- Route
Aggregation stringId - The UUID of the Route Aggregation from which this data source retrieves its rules.
- Filters
List<Get
Route Aggregation Rules Filter> - Filters for the Data Source Search Request
- Pagination
Get
Route Aggregation Rules Pagination - Pagination details for the returned Route Aggregation Rules list
- Sorts
List<Get
Route Aggregation Rules Sort> - Sort criteria for the Data Source Search Request
- Outer
Operator string - Determines if the filter list will be grouped by AND or by OR. One of [AND, OR]
- Route
Aggregation stringId - The UUID of the Route Aggregation from which this data source retrieves its rules.
- Filters
[]Get
Route Aggregation Rules Filter - Filters for the Data Source Search Request
- Pagination
Get
Route Aggregation Rules Pagination - Pagination details for the returned Route Aggregation Rules list
- Sorts
[]Get
Route Aggregation Rules Sort - Sort criteria for the Data Source Search Request
- outer_
operator string - Determines if the filter list will be grouped by AND or by OR. One of [AND, OR]
- route_
aggregation_ stringid - The UUID of the Route Aggregation from which this data source retrieves its rules.
- filters list(object)
- Filters for the Data Source Search Request
- pagination object
- Pagination details for the returned Route Aggregation Rules list
- sorts list(object)
- Sort criteria for the Data Source Search Request
- outer
Operator String - Determines if the filter list will be grouped by AND or by OR. One of [AND, OR]
- route
Aggregation StringId - The UUID of the Route Aggregation from which this data source retrieves its rules.
- filters
List<Get
Route Aggregation Rules Filter> - Filters for the Data Source Search Request
- pagination
Get
Route Aggregation Rules Pagination - Pagination details for the returned Route Aggregation Rules list
- sorts
List<Get
Route Aggregation Rules Sort> - Sort criteria for the Data Source Search Request
- outer
Operator string - Determines if the filter list will be grouped by AND or by OR. One of [AND, OR]
- route
Aggregation stringId - The UUID of the Route Aggregation from which this data source retrieves its rules.
- filters
Get
Route Aggregation Rules Filter[] - Filters for the Data Source Search Request
- pagination
Get
Route Aggregation Rules Pagination - Pagination details for the returned Route Aggregation Rules list
- sorts
Get
Route Aggregation Rules Sort[] - Sort criteria for the Data Source Search Request
- outer_
operator str - Determines if the filter list will be grouped by AND or by OR. One of [AND, OR]
- route_
aggregation_ strid - The UUID of the Route Aggregation from which this data source retrieves its rules.
- filters
Sequence[Get
Route Aggregation Rules Filter] - Filters for the Data Source Search Request
- pagination
Get
Route Aggregation Rules Pagination - Pagination details for the returned Route Aggregation Rules list
- sorts
Sequence[Get
Route Aggregation Rules Sort] - Sort criteria for the Data Source Search Request
- outer
Operator String - Determines if the filter list will be grouped by AND or by OR. One of [AND, OR]
- route
Aggregation StringId - The UUID of the Route Aggregation from which this data source retrieves its rules.
- filters List<Property Map>
- Filters for the Data Source Search Request
- pagination Property Map
- Pagination details for the returned Route Aggregation Rules list
- sorts List<Property Map>
- Sort criteria for the Data Source Search Request
getRouteAggregationRules Result
The following output properties are available:
- Datas
List<Get
Route Aggregation Rules Data> - Returned list of Route Aggregation Rule objects
- Id string
- The unique identifier of the resource
- Outer
Operator string - Determines if the filter list will be grouped by AND or by OR. One of [AND, OR]
- Route
Aggregation stringId - The UUID of the Route Aggregation from which this data source retrieves its rules.
- Filters
List<Get
Route Aggregation Rules Filter> - Filters for the Data Source Search Request
- Pagination
Get
Route Aggregation Rules Pagination - Pagination details for the returned Route Aggregation Rules list
- Sorts
List<Get
Route Aggregation Rules Sort> - Sort criteria for the Data Source Search Request
- Datas
[]Get
Route Aggregation Rules Data - Returned list of Route Aggregation Rule objects
- Id string
- The unique identifier of the resource
- Outer
Operator string - Determines if the filter list will be grouped by AND or by OR. One of [AND, OR]
- Route
Aggregation stringId - The UUID of the Route Aggregation from which this data source retrieves its rules.
- Filters
[]Get
Route Aggregation Rules Filter - Filters for the Data Source Search Request
- Pagination
Get
Route Aggregation Rules Pagination - Pagination details for the returned Route Aggregation Rules list
- Sorts
[]Get
Route Aggregation Rules Sort - Sort criteria for the Data Source Search Request
- datas list(object)
- Returned list of Route Aggregation Rule objects
- id string
- The unique identifier of the resource
- outer_
operator string - Determines if the filter list will be grouped by AND or by OR. One of [AND, OR]
- route_
aggregation_ stringid - The UUID of the Route Aggregation from which this data source retrieves its rules.
- filters list(object)
- Filters for the Data Source Search Request
- pagination object
- Pagination details for the returned Route Aggregation Rules list
- sorts list(object)
- Sort criteria for the Data Source Search Request
- datas
List<Get
Route Aggregation Rules Data> - Returned list of Route Aggregation Rule objects
- id String
- The unique identifier of the resource
- outer
Operator String - Determines if the filter list will be grouped by AND or by OR. One of [AND, OR]
- route
Aggregation StringId - The UUID of the Route Aggregation from which this data source retrieves its rules.
- filters
List<Get
Route Aggregation Rules Filter> - Filters for the Data Source Search Request
- pagination
Get
Route Aggregation Rules Pagination - Pagination details for the returned Route Aggregation Rules list
- sorts
List<Get
Route Aggregation Rules Sort> - Sort criteria for the Data Source Search Request
- datas
Get
Route Aggregation Rules Data[] - Returned list of Route Aggregation Rule objects
- id string
- The unique identifier of the resource
- outer
Operator string - Determines if the filter list will be grouped by AND or by OR. One of [AND, OR]
- route
Aggregation stringId - The UUID of the Route Aggregation from which this data source retrieves its rules.
- filters
Get
Route Aggregation Rules Filter[] - Filters for the Data Source Search Request
- pagination
Get
Route Aggregation Rules Pagination - Pagination details for the returned Route Aggregation Rules list
- sorts
Get
Route Aggregation Rules Sort[] - Sort criteria for the Data Source Search Request
- datas
Sequence[Get
Route Aggregation Rules Data] - Returned list of Route Aggregation Rule objects
- id str
- The unique identifier of the resource
- outer_
operator str - Determines if the filter list will be grouped by AND or by OR. One of [AND, OR]
- route_
aggregation_ strid - The UUID of the Route Aggregation from which this data source retrieves its rules.
- filters
Sequence[Get
Route Aggregation Rules Filter] - Filters for the Data Source Search Request
- pagination
Get
Route Aggregation Rules Pagination - Pagination details for the returned Route Aggregation Rules list
- sorts
Sequence[Get
Route Aggregation Rules Sort] - Sort criteria for the Data Source Search Request
- datas List<Property Map>
- Returned list of Route Aggregation Rule objects
- id String
- The unique identifier of the resource
- outer
Operator String - Determines if the filter list will be grouped by AND or by OR. One of [AND, OR]
- route
Aggregation StringId - The UUID of the Route Aggregation from which this data source retrieves its rules.
- filters List<Property Map>
- Filters for the Data Source Search Request
- pagination Property Map
- Pagination details for the returned Route Aggregation Rules list
- sorts List<Property Map>
- Sort criteria for the Data Source Search Request
Supporting Types
GetRouteAggregationRulesData
- Change
Get
Route Aggregation Rules Data Change - Current state of latest Route Aggregation Rule change
- Change
Log GetRoute Aggregation Rules Data Change Log - Details of the last change on the resource
- Href string
- Equinix auto generated URI to the Route Aggregation Rule resource
- Name string
- Customer provided name of the Route Aggregation Rule
- Prefix string
- Customer-provided Route Aggregation Rule prefix
- Route
Aggregation stringId - UUID of the Route Aggregation that the rule is applied to
- 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
- Description string
- Customer-provided Route Aggregation Rule description
- Change
Get
Route Aggregation Rules Data Change - Current state of latest Route Aggregation Rule change
- Change
Log GetRoute Aggregation Rules Data Change Log - Details of the last change on the resource
- Href string
- Equinix auto generated URI to the Route Aggregation Rule resource
- Name string
- Customer provided name of the Route Aggregation Rule
- Prefix string
- Customer-provided Route Aggregation Rule prefix
- Route
Aggregation stringId - UUID of the Route Aggregation that the rule is applied to
- 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
- Description string
- Customer-provided Route Aggregation Rule description
- change object
- Current state of latest Route Aggregation Rule change
- change_
log object - Details of the last change on the resource
- href string
- Equinix auto generated URI to the Route Aggregation Rule resource
- name string
- Customer provided name of the Route Aggregation Rule
- prefix string
- Customer-provided Route Aggregation Rule prefix
- route_
aggregation_ stringid - UUID of the Route Aggregation that the rule is applied to
- 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
- description string
- Customer-provided Route Aggregation Rule description
- change
Get
Route Aggregation Rules Data Change - Current state of latest Route Aggregation Rule change
- change
Log GetRoute Aggregation Rules Data Change Log - Details of the last change on the resource
- href String
- Equinix auto generated URI to the Route Aggregation Rule resource
- name String
- Customer provided name of the Route Aggregation Rule
- prefix String
- Customer-provided Route Aggregation Rule prefix
- route
Aggregation StringId - UUID of the Route Aggregation that the rule is applied to
- 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
- description String
- Customer-provided Route Aggregation Rule description
- change
Get
Route Aggregation Rules Data Change - Current state of latest Route Aggregation Rule change
- change
Log GetRoute Aggregation Rules Data Change Log - Details of the last change on the resource
- href string
- Equinix auto generated URI to the Route Aggregation Rule resource
- name string
- Customer provided name of the Route Aggregation Rule
- prefix string
- Customer-provided Route Aggregation Rule prefix
- route
Aggregation stringId - UUID of the Route Aggregation that the rule is applied to
- 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
- description string
- Customer-provided Route Aggregation Rule description
- change
Get
Route Aggregation Rules Data Change - Current state of latest Route Aggregation Rule change
- change_
log GetRoute Aggregation Rules Data Change Log - Details of the last change on the resource
- href str
- Equinix auto generated URI to the Route Aggregation Rule resource
- name str
- Customer provided name of the Route Aggregation Rule
- prefix str
- Customer-provided Route Aggregation Rule prefix
- route_
aggregation_ strid - UUID of the Route Aggregation that the rule is applied to
- 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
- description str
- Customer-provided Route Aggregation Rule description
- change Property Map
- Current state of latest Route Aggregation Rule change
- change
Log Property Map - Details of the last change on the resource
- href String
- Equinix auto generated URI to the Route Aggregation Rule resource
- name String
- Customer provided name of the Route Aggregation Rule
- prefix String
- Customer-provided Route Aggregation Rule prefix
- route
Aggregation StringId - UUID of the Route Aggregation that the rule is applied to
- 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
- description String
- Customer-provided Route Aggregation Rule description
GetRouteAggregationRulesDataChange
GetRouteAggregationRulesDataChangeLog
- Created
By string - User name of creator of the resource
- Created
By stringEmail - Email of creator of the resource
- Created
By stringFull Name - Legal name of creator of the resource
- Created
Date stringTime - Creation time of the resource
- Deleted
By string - User name of deleter of the resource
- Deleted
By stringEmail - Email of deleter of the resource
- Deleted
By stringFull Name - Legal name of deleter of the resource
- Deleted
Date stringTime - Deletion time of the resource
- Updated
By string - User name of last updater of the resource
- Updated
By stringEmail - Email of last updater of the resource
- Updated
By stringFull Name - Legal name of last updater of the resource
- Updated
Date stringTime - Last update time of the resource
- Created
By string - User name of creator of the resource
- Created
By stringEmail - Email of creator of the resource
- Created
By stringFull Name - Legal name of creator of the resource
- Created
Date stringTime - Creation time of the resource
- Deleted
By string - User name of deleter of the resource
- Deleted
By stringEmail - Email of deleter of the resource
- Deleted
By stringFull Name - Legal name of deleter of the resource
- Deleted
Date stringTime - Deletion time of the resource
- Updated
By string - User name of last updater of the resource
- Updated
By stringEmail - Email of last updater of the resource
- Updated
By stringFull Name - Legal name of last updater of the resource
- Updated
Date stringTime - Last update time of the resource
- created_
by string - User name of creator of the resource
- created_
by_ stringemail - Email of creator of the resource
- created_
by_ stringfull_ name - Legal name of creator of the resource
- created_
date_ stringtime - Creation time of the resource
- deleted_
by string - User name of deleter of the resource
- deleted_
by_ stringemail - Email of deleter of the resource
- deleted_
by_ stringfull_ name - Legal name of deleter of the resource
- deleted_
date_ stringtime - Deletion time of the resource
- updated_
by string - User name of last updater of the resource
- updated_
by_ stringemail - Email of last updater of the resource
- updated_
by_ stringfull_ name - Legal name of last updater of the resource
- updated_
date_ stringtime - Last update time of the resource
- created
By String - User name of creator of the resource
- created
By StringEmail - Email of creator of the resource
- created
By StringFull Name - Legal name of creator of the resource
- created
Date StringTime - Creation time of the resource
- deleted
By String - User name of deleter of the resource
- deleted
By StringEmail - Email of deleter of the resource
- deleted
By StringFull Name - Legal name of deleter of the resource
- deleted
Date StringTime - Deletion time of the resource
- updated
By String - User name of last updater of the resource
- updated
By StringEmail - Email of last updater of the resource
- updated
By StringFull Name - Legal name of last updater of the resource
- updated
Date StringTime - Last update time of the resource
- created
By string - User name of creator of the resource
- created
By stringEmail - Email of creator of the resource
- created
By stringFull Name - Legal name of creator of the resource
- created
Date stringTime - Creation time of the resource
- deleted
By string - User name of deleter of the resource
- deleted
By stringEmail - Email of deleter of the resource
- deleted
By stringFull Name - Legal name of deleter of the resource
- deleted
Date stringTime - Deletion time of the resource
- updated
By string - User name of last updater of the resource
- updated
By stringEmail - Email of last updater of the resource
- updated
By stringFull Name - Legal name of last updater of the resource
- updated
Date stringTime - Last update time of the resource
- created_
by str - User name of creator of the resource
- created_
by_ stremail - Email of creator of the resource
- created_
by_ strfull_ name - Legal name of creator of the resource
- created_
date_ strtime - Creation time of the resource
- deleted_
by str - User name of deleter of the resource
- deleted_
by_ stremail - Email of deleter of the resource
- deleted_
by_ strfull_ name - Legal name of deleter of the resource
- deleted_
date_ strtime - Deletion time of the resource
- updated_
by str - User name of last updater of the resource
- updated_
by_ stremail - Email of last updater of the resource
- updated_
by_ strfull_ name - Legal name of last updater of the resource
- updated_
date_ strtime - Last update time of the resource
- created
By String - User name of creator of the resource
- created
By StringEmail - Email of creator of the resource
- created
By StringFull Name - Legal name of creator of the resource
- created
Date StringTime - Creation time of the resource
- deleted
By String - User name of deleter of the resource
- deleted
By StringEmail - Email of deleter of the resource
- deleted
By StringFull Name - Legal name of deleter of the resource
- deleted
Date StringTime - Deletion time of the resource
- updated
By String - User name of last updater of the resource
- updated
By StringEmail - Email of last updater of the resource
- updated
By StringFull Name - Legal name of last updater of the resource
- updated
Date StringTime - Last update time of the resource
GetRouteAggregationRulesFilter
- Operator string
- Operators to use on your filtered field with the values given. One of [ =, !=, LIKE, NOT LIKE, IN, NOT IN, ILIKE]
- Property string
- Possible field names to use on filters. One of [ /type, /name, /uuid, /state, /prefix]
- Values List<string>
- The values that you want to apply the property+operator combination to in order to filter your data search
- Operator string
- Operators to use on your filtered field with the values given. One of [ =, !=, LIKE, NOT LIKE, IN, NOT IN, ILIKE]
- Property string
- Possible field names to use on filters. One of [ /type, /name, /uuid, /state, /prefix]
- Values []string
- The values that you want to apply the property+operator combination to in order to filter your data search
- operator string
- Operators to use on your filtered field with the values given. One of [ =, !=, LIKE, NOT LIKE, IN, NOT IN, ILIKE]
- property string
- Possible field names to use on filters. One of [ /type, /name, /uuid, /state, /prefix]
- values list(string)
- The values that you want to apply the property+operator combination to in order to filter your data search
- operator String
- Operators to use on your filtered field with the values given. One of [ =, !=, LIKE, NOT LIKE, IN, NOT IN, ILIKE]
- property String
- Possible field names to use on filters. One of [ /type, /name, /uuid, /state, /prefix]
- values List<String>
- The values that you want to apply the property+operator combination to in order to filter your data search
- operator string
- Operators to use on your filtered field with the values given. One of [ =, !=, LIKE, NOT LIKE, IN, NOT IN, ILIKE]
- property string
- Possible field names to use on filters. One of [ /type, /name, /uuid, /state, /prefix]
- values string[]
- The values that you want to apply the property+operator combination to in order to filter your data search
- operator str
- Operators to use on your filtered field with the values given. One of [ =, !=, LIKE, NOT LIKE, IN, NOT IN, ILIKE]
- property str
- Possible field names to use on filters. One of [ /type, /name, /uuid, /state, /prefix]
- values Sequence[str]
- The values that you want to apply the property+operator combination to in order to filter your data search
- operator String
- Operators to use on your filtered field with the values given. One of [ =, !=, LIKE, NOT LIKE, IN, NOT IN, ILIKE]
- property String
- Possible field names to use on filters. One of [ /type, /name, /uuid, /state, /prefix]
- values List<String>
- The values that you want to apply the property+operator combination to in order to filter your data search
GetRouteAggregationRulesPagination
- Limit int
- Maximum number of search results returned per page. Number must be between 1 and 100, and the default is 20
- Next string
- The URL relative to the next item in the response
- Offset int
- Index of the first item returned in the response. The default is 0
- Previous string
- The URL relative to the previous item in the response
- Total int
- The total number of Route Aggregation Rules available to the user making the request
- Limit int
- Maximum number of search results returned per page. Number must be between 1 and 100, and the default is 20
- Next string
- The URL relative to the next item in the response
- Offset int
- Index of the first item returned in the response. The default is 0
- Previous string
- The URL relative to the previous item in the response
- Total int
- The total number of Route Aggregation Rules available to the user making the request
- limit number
- Maximum number of search results returned per page. Number must be between 1 and 100, and the default is 20
- next string
- The URL relative to the next item in the response
- offset number
- Index of the first item returned in the response. The default is 0
- previous string
- The URL relative to the previous item in the response
- total number
- The total number of Route Aggregation Rules available to the user making the request
- limit Integer
- Maximum number of search results returned per page. Number must be between 1 and 100, and the default is 20
- next String
- The URL relative to the next item in the response
- offset Integer
- Index of the first item returned in the response. The default is 0
- previous String
- The URL relative to the previous item in the response
- total Integer
- The total number of Route Aggregation Rules available to the user making the request
- limit number
- Maximum number of search results returned per page. Number must be between 1 and 100, and the default is 20
- next string
- The URL relative to the next item in the response
- offset number
- Index of the first item returned in the response. The default is 0
- previous string
- The URL relative to the previous item in the response
- total number
- The total number of Route Aggregation Rules available to the user making the request
- limit int
- Maximum number of search results returned per page. Number must be between 1 and 100, and the default is 20
- next str
- The URL relative to the next item in the response
- offset int
- Index of the first item returned in the response. The default is 0
- previous str
- The URL relative to the previous item in the response
- total int
- The total number of Route Aggregation Rules available to the user making the request
- limit Number
- Maximum number of search results returned per page. Number must be between 1 and 100, and the default is 20
- next String
- The URL relative to the next item in the response
- offset Number
- Index of the first item returned in the response. The default is 0
- previous String
- The URL relative to the previous item in the response
- total Number
- The total number of Route Aggregation Rules available to the user making the request
GetRouteAggregationRulesSort
Package Details
- Repository
- equinix equinix/pulumi-equinix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
equinixTerraform Provider.
Viewing docs for Equinix v0.32.0
published on Wednesday, Sep 23, 2026 by Equinix
published on Wednesday, Sep 23, 2026 by Equinix