Interface RouteFilterRule.UpdateStages.WithBgpCommunities
-
- All Known Subinterfaces:
RouteFilterRule.Update
- Enclosing interface:
- RouteFilterRule.UpdateStages
public static interface RouteFilterRule.UpdateStages.WithBgpCommunitiesThe stage of the route filter rule description allowing bgp service communities to be specified.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RouteFilterRule.UpdatewithBgpCommunities(String... communities)The collection for bgp community values to filter on.RouteFilterRule.UpdatewithBgpCommunity(String community)The bgp community values to filter on.RouteFilterRule.UpdatewithoutBgpCommunity(String community)Remove the bgp community value to filter on.
-
-
-
Method Detail
-
withBgpCommunities
RouteFilterRule.Update withBgpCommunities(String... communities)
The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020']. Note: this method will overwrite existing communities.- Parameters:
communities- service communities- Returns:
- the next stage of the update
-
withBgpCommunity
RouteFilterRule.Update withBgpCommunity(String community)
The bgp community values to filter on. e.g. '12076:5010'. This method has additive effect.- Parameters:
community- the bgp community value- Returns:
- the next stage of the update
-
withoutBgpCommunity
RouteFilterRule.Update withoutBgpCommunity(String community)
Remove the bgp community value to filter on. e.g. '12076:5010'- Parameters:
community- the bgp community value- Returns:
- the next stage of the update
-
-