Interface RouteFilter.UpdateStages.WithRule
-
- All Known Subinterfaces:
RouteFilter.Update
- Enclosing interface:
- RouteFilter.UpdateStages
public static interface RouteFilter.UpdateStages.WithRuleThe stage of the resource update allowing to add or remove route filter rules.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RouteFilterRule.UpdateDefinitionStages.Blank<RouteFilter.Update>defineRule(String name)Begins the definition of a new route filter rule to be added to this route filter.RouteFilterRule.UpdateupdateRule(String name)Begins the description of an update of an existing route filter rule of this route filter.RouteFilter.UpdatewithoutRule(String name)Removes an route filter rule.
-
-
-
Method Detail
-
withoutRule
RouteFilter.Update withoutRule(String name)
Removes an route filter rule.- Parameters:
name- the name of the route filter rule to remove- Returns:
- the next stage of the route filter update
-
defineRule
RouteFilterRule.UpdateDefinitionStages.Blank<RouteFilter.Update> defineRule(String name)
Begins the definition of a new route filter rule to be added to this route filter.- Parameters:
name- the name of the route filter rule- Returns:
- the first stage of the new route filter rule definition
-
updateRule
RouteFilterRule.Update updateRule(String name)
Begins the description of an update of an existing route filter rule of this route filter.- Parameters:
name- the name of an existing route filter rule- Returns:
- the first stage of the route filter rule update description
-
-