Interface AugmentBgpAfVpnConfig
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
public interface AugmentBgpAfVpnConfig extends org.opendaylight.yangtools.yang.binding.DataObjectA set of configuration parameters that is applicable to both BGP-VPNv4 and BGP-VPNv6 address family.This class represents the following YANG schema fragment defined in module l3vpn
grouping augment-bgp-af-vpn-config { leaf apply-label-per-nexthop { type boolean; default false; } leaf upeEnable { type boolean; default false; } }The schema path to identify an instance is l3vpn/augment-bgp-af-vpn-config
-
-
Field Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Class<? extends AugmentBgpAfVpnConfig>implementedInterface()@Nullable java.lang.BooleanisApplyLabelPerNexthop()The apply-label per-nexthop command enables the ASBR to allocate labels for IPv4 VPN routes or IPv6 VPN routes based on the next hop.@Nullable java.lang.BooleanisUpeEnable()Specify peer as UPE.
-
-
-
Method Detail
-
implementedInterface
java.lang.Class<? extends AugmentBgpAfVpnConfig> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
isApplyLabelPerNexthop
@Nullable java.lang.Boolean isApplyLabelPerNexthop()
The apply-label per-nexthop command enables the ASBR to allocate labels for IPv4 VPN routes or IPv6 VPN routes based on the next hop.- Returns:
java.lang.BooleanapplyLabelPerNexthop, ornullif not present
-
isUpeEnable
@Nullable java.lang.Boolean isUpeEnable()
Specify peer as UPE.- Returns:
java.lang.BooleanupeEnable, ornullif not present
-
-