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

    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 Summary

      Fields 
      Modifier and Type Field Description
      static @NonNull org.opendaylight.yangtools.yang.common.QName QNAME  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      @Nullable org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.AsNumber getIdentifier()
      Confederation identifier for the autonomous system.
      @Nullable List<org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.AsNumber> getMemberAs()
      Remote autonomous systems that are to be treated as part of the local confederation.
      Class<? extends BgpConfederationConfig> implementedInterface()  
      @Nullable Boolean isEnabled()
      When this leaf is set to true it indicates that the local-AS is part of a BGP confederation
    • 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
      • isEnabled

        @Nullable Boolean isEnabled()
        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 not present
      • getIdentifier

        @Nullable org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.AsNumber getIdentifier()
        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 not present
      • getMemberAs

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