Interface RouteFilterRule.DefinitionStages.WithBgpCommunities<ParentT>
-
- All Known Subinterfaces:
RouteFilterRule.Definition<ParentT>,RouteFilterRule.DefinitionStages.Blank<ParentT>
- Enclosing interface:
- RouteFilterRule.DefinitionStages
public static interface RouteFilterRule.DefinitionStages.WithBgpCommunities<ParentT>The stage of the route filter rule definition allowing bgp service communities to be specified.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RouteFilterRule.DefinitionStages.WithAttach<ParentT>withBgpCommunities(String... communities)Set the collection for bgp community values to filter on.RouteFilterRule.DefinitionStages.WithAttach<ParentT>withBgpCommunity(String community)Set bgp community value to filter on.RouteFilterRule.UpdatewithoutBgpCommunity(String community)Remove the bgp community value to filter on.
-
-
-
Method Detail
-
withBgpCommunities
RouteFilterRule.DefinitionStages.WithAttach<ParentT> withBgpCommunities(String... communities)
Set the collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].- Parameters:
communities- service communities- Returns:
- the next stage of the definition
-
withBgpCommunity
RouteFilterRule.DefinitionStages.WithAttach<ParentT> withBgpCommunity(String community)
Set bgp community value to filter on. e.g. '12076:5020'.- Parameters:
community- service community- Returns:
- the next stage of the definition
-
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
-
-