Interface Ipv6PeeringConfig.DefinitionStages.WithAdvertisedPublicPrefixes<ParentT>
-
- All Known Subinterfaces:
Ipv6PeeringConfig.Definition<ParentT>,Ipv6PeeringConfig.DefinitionStages.Blank<ParentT>
- Enclosing interface:
- Ipv6PeeringConfig.DefinitionStages
public static interface Ipv6PeeringConfig.DefinitionStages.WithAdvertisedPublicPrefixes<ParentT>The stage of Cross Connection Peering IPv6 configuration definition allowing to specify secondary address prefix.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Ipv6PeeringConfig.DefinitionStages.WithCustomerASN<ParentT>withAdvertisedPublicPrefix(String publicPrefix)Specify advertised prefix: sets a prefix that is planned to advertise over the BGP session.Ipv6PeeringConfig.DefinitionStages.WithCustomerASN<ParentT>withAdvertisedPublicPrefixes(List<String> publicPrefixes)Specify advertised prefixes: sets a list of all prefixes that are planned to advertise over the BGP session.
-
-
-
Method Detail
-
withAdvertisedPublicPrefixes
Ipv6PeeringConfig.DefinitionStages.WithCustomerASN<ParentT> withAdvertisedPublicPrefixes(List<String> publicPrefixes)
Specify advertised prefixes: sets a list of all prefixes that are planned to advertise over the BGP session. Method will overwrite existing list. Only public IP address prefixes are accepted. A set of prefixes can be sent as a comma-separated list. These prefixes must be registered to you in an RIR / IRR.- Parameters:
publicPrefixes- advertised prefixes- Returns:
- next stage of definition
-
withAdvertisedPublicPrefix
Ipv6PeeringConfig.DefinitionStages.WithCustomerASN<ParentT> withAdvertisedPublicPrefix(String publicPrefix)
Specify advertised prefix: sets a prefix that is planned to advertise over the BGP session. Method will add a prefix to existing list. Only public IP address prefixes are accepted. A set of prefixes can be sent as a comma-separated list. These prefixes must be registered to you in an RIR / IRR.- Parameters:
publicPrefix- advertised prefix- Returns:
- next stage of definition
-
-