RouteFilterRule.DefinitionStages.WithBgpCommunities<ParentT> Interface

Type Parameters

ParentT

public static interface RouteFilterRule.DefinitionStages.WithBgpCommunities

The stage of the route filter rule definition allowing bgp service communities to be specified.

Method Summary

Modifier and Type Method and Description
abstract WithAttach<ParentT> withBgpCommunities(String[] communities)

Set the collection for bgp community values to filter on.

abstract WithAttach<ParentT> withBgpCommunity(String community)

Set bgp community value to filter on.

abstract Update withoutBgpCommunity(String community)

Remove the bgp community value to filter on.

Method Details

withBgpCommunities

public abstract RouteFilterRule.DefinitionStages.WithAttach 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

public abstract RouteFilterRule.DefinitionStages.WithAttach 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

public abstract RouteFilterRule.Update withoutBgpCommunity(String community)

Remove the bgp community value to filter on. e.g. '12076:5010'

Parameters:

community - service community

Returns:

the next stage of the update

Applies to