Interface RouteFilterRules
- All Known Implementing Classes:
RouteFilterRulesImpl
public interface RouteFilterRules
Client interface for managing rules within an Equinix Fabric route filter. Each rule defines
a prefix match and action (permit/deny) that controls route acceptance.
-
Method Summary
Modifier and TypeMethodDescriptionBegins the fluent builder for creating a new route filter rule.Retrieves a single route filter rule by its unique identifier.Lists all rules belonging to the specified route filter.
-
Method Details
-
list
Lists all rules belonging to the specified route filter.- Parameters:
routeFilterId- the unique identifier of the parent route filter- Returns:
- a paginated list of route filter rules
-
getByUuid
Retrieves a single route filter rule by its unique identifier.- Parameters:
routeFilterId- the unique identifier of the parent route filteruuid- the unique identifier of the route filter rule- Returns:
- the route filter rule matching the given UUID
-
define
Begins the fluent builder for creating a new route filter rule. Call methods on the returned builder to configure the rule, then callcreate().- Parameters:
routeFilterId- the unique identifier of the parent route filter- Returns:
- a builder for configuring the new route filter rule
-