Interface RouteFilters
- All Known Implementing Classes:
RouteFiltersImpl
public interface RouteFilters
Client interface for managing Equinix Fabric route filters. Route filters control which
routes are accepted or rejected on a connection's routing protocol.
-
Method Summary
Modifier and TypeMethodDescriptiondefine()Begins the fluent builder for creating a new route filter.Retrieves a single route filter by its unique identifier.search()Searches for route filters using default filter and sort criteria.search(FilterPropertyList filter) Searches for route filters matching the specified filter criteria.search(FilterPropertyList filter, SortPropertyList sort) Searches for route filters matching the specified filter and sort criteria.search(SortPropertyList sort) Searches for route filters with the specified sort order.
-
Method Details
-
search
PaginatedFilteredList<RouteFilter> search()Searches for route filters using default filter and sort criteria.- Returns:
- a paginated, filtered list of matching route filters
-
search
Searches for route filters matching the specified filter criteria.- Parameters:
filter- the filter criteria to apply- Returns:
- a paginated, filtered list of matching route filters
-
search
Searches for route filters with the specified sort order.- Parameters:
sort- the sort criteria to apply- Returns:
- a paginated, filtered list of matching route filters
-
search
Searches for route filters matching the specified filter and sort criteria.- Parameters:
filter- the filter criteria to applysort- the sort criteria to apply- Returns:
- a paginated, filtered list of matching route filters
-
getByUuid
Retrieves a single route filter by its unique identifier.- Parameters:
uuid- the unique identifier of the route filter- Returns:
- the route filter matching the given UUID
-
define
Begins the fluent builder for creating a new route filter. Call methods on the returned builder to configure the filter, then callcreate().- Returns:
- a builder for configuring the new route filter
-