Interface BgpConfederationConfig

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject
    All Known Subinterfaces:
    Config, State

    @Generated("mdsal-binding-generator")
    public interface BgpConfederationConfig
    extends org.opendaylight.yangtools.yang.binding.DataObject
    Configuration options specifying parameters when the local router is within an autonomous system which is part of a BGP confederation.

    This class represents the following YANG schema fragment defined in module openconfig-bgp

     grouping bgp-confederation_config {
       leaf enabled {
         type boolean;
       }
       leaf identifier {
         type inet:as-number;
       }
       leaf-list member-as {
         type inet:as-number;
       }
     }
     
    The schema path to identify an instance is openconfig-bgp/bgp-confederation_config
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • Method Detail

      • implementedInterface

        Class<? extends BgpConfederationConfig> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getEnabled

        Boolean getEnabled()
        Return enabled, or null if it is not present.
             
                 When this leaf is set to true it indicates that the local-AS is part of a BGP
                 confederation
             
         
        Returns:
        java.lang.Boolean enabled, or null if it is not present.
      • isEnabled

        @Deprecated(forRemoval=true)
        default Boolean isEnabled()
        Deprecated, for removal: This API element is subject to removal in a future version.
      • getIdentifier

        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.AsNumber getIdentifier()
        Return identifier, or null if it is not present.
             
                 Confederation identifier for the autonomous system.
             
         
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.AsNumber identifier, or null if it is not present.
      • getMemberAs

        @Nullable List<org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.AsNumber> getMemberAs()
        Return memberAs, or null if it is not present.
             
                 Remote autonomous systems that are to be treated as part of the local
                 confederation.
             
         
        Returns:
        java.util.List memberAs, or null if it is not present.