Interface ExternalGatewayInfo

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<ExternalGatewayInfo>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<Router>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject

    public interface ExternalGatewayInfo
    extends org.opendaylight.yangtools.yang.binding.ChildOf<Router>, org.opendaylight.yangtools.yang.binding.Augmentable<ExternalGatewayInfo>

    This class represents the following YANG schema fragment defined in module neutron-L3

     container external_gateway_info {
       leaf external-network-id {
         type yang:uuid;
       }
       leaf enable-snat {
         type boolean;
         default true;
       }
       list external-fixed-ips {
         key "subnet-id ip-address";
         leaf subnet-id {
           type yang:uuid;
         }
         leaf ip-address {
           type inet:ip-address;
         }
       }
     }
     
    The schema path to identify an instance is neutron-L3/routers-attributes/routers/router/external_gateway_info

    To create instances of this class use ExternalGatewayInfoBuilder.

    See Also:
    ExternalGatewayInfoBuilder
    • Field Detail

      • QNAME

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

      • implementedInterface

        default Class<ExternalGatewayInfo> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getExternalNetworkId

        @Nullable org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid getExternalNetworkId()
        The network_id, for the external gateways. If this is empty, then this network does not have external access
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid externalNetworkId, or null if not present
      • isEnableSnat

        @Nullable Boolean isEnableSnat()
        If true, it indicates that the router is performing snat on external access
        Returns:
        java.lang.Boolean enableSnat, or null if not present
      • getExternalFixedIps

        @Nullable List<ExternalFixedIps> getExternalFixedIps()
        external fixed IPs for this router
        Returns:
        java.util.List externalFixedIps, or null if not present
      • nonnullExternalFixedIps

        default @NonNull List<ExternalFixedIps> nonnullExternalFixedIps()
        Returns:
        java.util.List externalFixedIps, or an empty list if it is not present