Class StaticArpStub

  • All Implemented Interfaces:
    StaticArp, StaticArpTypes, com.vmware.vapi.bindings.Service

    public class StaticArpStub
    extends com.vmware.vapi.internal.bindings.Stub
    implements StaticArp
    Remote stub implementation of the StaticArp API service.

    WARNING: Internal class, subject to change in future versions.

    • Field Summary

      • Fields inherited from class com.vmware.vapi.internal.bindings.Stub

        apiProvider, converter, ifaceId, retryPolicy, securityContext
    • Constructor Summary

      Constructors 
      Constructor Description
      StaticArpStub​(com.vmware.vapi.core.ApiProvider apiProvider, com.vmware.vapi.bindings.StubConfigurationBase config)  
      StaticArpStub​(com.vmware.vapi.core.ApiProvider apiProvider, com.vmware.vapi.internal.bindings.TypeConverter typeConverter, com.vmware.vapi.bindings.StubConfigurationBase config)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void delete​(java.lang.String tier1Id, java.lang.String segmentId)
      Delete static ARP config
      void delete​(java.lang.String tier1Id, java.lang.String segmentId, com.vmware.vapi.bindings.client.AsyncCallback<java.lang.Void> asyncCallback)
      Delete static ARP config
      void delete​(java.lang.String tier1Id, java.lang.String segmentId, com.vmware.vapi.bindings.client.AsyncCallback<java.lang.Void> asyncCallback, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
      Delete static ARP config
      void delete​(java.lang.String tier1Id, java.lang.String segmentId, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
      Delete static ARP config
      StaticARPConfig get​(java.lang.String tier1Id, java.lang.String segmentId)
      Read static ARP config
      void get​(java.lang.String tier1Id, java.lang.String segmentId, com.vmware.vapi.bindings.client.AsyncCallback<StaticARPConfig> asyncCallback)
      Read static ARP config
      void get​(java.lang.String tier1Id, java.lang.String segmentId, com.vmware.vapi.bindings.client.AsyncCallback<StaticARPConfig> asyncCallback, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
      Read static ARP config
      StaticARPConfig get​(java.lang.String tier1Id, java.lang.String segmentId, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
      Read static ARP config
      void patch​(java.lang.String tier1Id, java.lang.String segmentId, StaticARPConfig staticARPConfig)
      Create static ARP config with Tier-1 and segment IDs provided if it doesn't exist, update with provided config if it's already created.
      void patch​(java.lang.String tier1Id, java.lang.String segmentId, StaticARPConfig staticARPConfig, com.vmware.vapi.bindings.client.AsyncCallback<java.lang.Void> asyncCallback)
      Create static ARP config with Tier-1 and segment IDs provided if it doesn't exist, update with provided config if it's already created.
      void patch​(java.lang.String tier1Id, java.lang.String segmentId, StaticARPConfig staticARPConfig, com.vmware.vapi.bindings.client.AsyncCallback<java.lang.Void> asyncCallback, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
      Create static ARP config with Tier-1 and segment IDs provided if it doesn't exist, update with provided config if it's already created.
      void patch​(java.lang.String tier1Id, java.lang.String segmentId, StaticARPConfig staticARPConfig, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
      Create static ARP config with Tier-1 and segment IDs provided if it doesn't exist, update with provided config if it's already created.
      StaticARPConfig update​(java.lang.String tier1Id, java.lang.String segmentId, StaticARPConfig staticARPConfig)
      Create static ARP config with Tier-1 and segment IDs provided if it doesn't exist, update with provided config if it's already created.
      void update​(java.lang.String tier1Id, java.lang.String segmentId, StaticARPConfig staticARPConfig, com.vmware.vapi.bindings.client.AsyncCallback<StaticARPConfig> asyncCallback)
      Create static ARP config with Tier-1 and segment IDs provided if it doesn't exist, update with provided config if it's already created.
      void update​(java.lang.String tier1Id, java.lang.String segmentId, StaticARPConfig staticARPConfig, com.vmware.vapi.bindings.client.AsyncCallback<StaticARPConfig> asyncCallback, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
      Create static ARP config with Tier-1 and segment IDs provided if it doesn't exist, update with provided config if it's already created.
      StaticARPConfig update​(java.lang.String tier1Id, java.lang.String segmentId, StaticARPConfig staticARPConfig, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
      Create static ARP config with Tier-1 and segment IDs provided if it doesn't exist, update with provided config if it's already created.
      • Methods inherited from class com.vmware.vapi.internal.bindings.Stub

        invokeMethod, invokeMethodAsync, invokeStreamMethod, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • StaticArpStub

        public StaticArpStub​(com.vmware.vapi.core.ApiProvider apiProvider,
                             com.vmware.vapi.internal.bindings.TypeConverter typeConverter,
                             com.vmware.vapi.bindings.StubConfigurationBase config)
      • StaticArpStub

        public StaticArpStub​(com.vmware.vapi.core.ApiProvider apiProvider,
                             com.vmware.vapi.bindings.StubConfigurationBase config)
    • Method Detail

      • delete

        public void delete​(java.lang.String tier1Id,
                           java.lang.String segmentId)
        Description copied from interface: StaticArp
        Delete static ARP config

        Synchronous method overload. Result of the invocation will be reported as a method return value.

        Specified by:
        delete in interface StaticArp
        Parameters:
        tier1Id - (required)
        segmentId - (required)
      • delete

        public void delete​(java.lang.String tier1Id,
                           java.lang.String segmentId,
                           com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
        Description copied from interface: StaticArp
        Delete static ARP config

        Synchronous method overload. Result of the invocation will be reported as a method return value. Use invocationConfig to specify configuration for this particular invocation.

        Specified by:
        delete in interface StaticArp
        Parameters:
        tier1Id - (required)
        segmentId - (required)
        invocationConfig - Configuration for the method invocation.
      • delete

        public void delete​(java.lang.String tier1Id,
                           java.lang.String segmentId,
                           com.vmware.vapi.bindings.client.AsyncCallback<java.lang.Void> asyncCallback)
        Description copied from interface: StaticArp
        Delete static ARP config

        Asynchronous method overload. Result of the invocation will be reported via the specified asyncCallback.

        Operation Errors:
        InvalidRequest - Bad Request, Precondition Failed
        Unauthorized - Forbidden
        ServiceUnavailable - Service Unavailable
        InternalServerError - Internal Server Error
        NotFound - Not Found

        Specified by:
        delete in interface StaticArp
        Parameters:
        tier1Id - (required)
        segmentId - (required)
        asyncCallback - Receives the status (progress, result or error) of the operation invocation.
      • delete

        public void delete​(java.lang.String tier1Id,
                           java.lang.String segmentId,
                           com.vmware.vapi.bindings.client.AsyncCallback<java.lang.Void> asyncCallback,
                           com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
        Description copied from interface: StaticArp
        Delete static ARP config

        Asynchronous method overload. Result of the invocation will be reported via the specified asyncCallback. Use invocationConfig to specify configuration for this particular invocation.

        Operation Errors:
        InvalidRequest - Bad Request, Precondition Failed
        Unauthorized - Forbidden
        ServiceUnavailable - Service Unavailable
        InternalServerError - Internal Server Error
        NotFound - Not Found

        Specified by:
        delete in interface StaticArp
        Parameters:
        tier1Id - (required)
        segmentId - (required)
        asyncCallback - Receives the status (progress, result or error) of the operation invocation.
        invocationConfig - Configuration for the method invocation.
      • get

        public StaticARPConfig get​(java.lang.String tier1Id,
                                   java.lang.String segmentId)
        Description copied from interface: StaticArp
        Read static ARP config

        Synchronous method overload. Result of the invocation will be reported as a method return value.

        Specified by:
        get in interface StaticArp
        Parameters:
        tier1Id - (required)
        segmentId - (required)
        Returns:
        com.vmware.nsx_policy.model.StaticARPConfig
      • get

        public StaticARPConfig get​(java.lang.String tier1Id,
                                   java.lang.String segmentId,
                                   com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
        Description copied from interface: StaticArp
        Read static ARP config

        Synchronous method overload. Result of the invocation will be reported as a method return value. Use invocationConfig to specify configuration for this particular invocation.

        Specified by:
        get in interface StaticArp
        Parameters:
        tier1Id - (required)
        segmentId - (required)
        invocationConfig - Configuration for the method invocation.
        Returns:
        com.vmware.nsx_policy.model.StaticARPConfig
      • get

        public void get​(java.lang.String tier1Id,
                        java.lang.String segmentId,
                        com.vmware.vapi.bindings.client.AsyncCallback<StaticARPConfig> asyncCallback)
        Description copied from interface: StaticArp
        Read static ARP config

        Asynchronous method overload. Result of the invocation will be reported via the specified asyncCallback.

        Invocation Result:
        com.vmware.nsx_policy.model.StaticARPConfig

        Operation Errors:
        InvalidRequest - Bad Request, Precondition Failed
        Unauthorized - Forbidden
        ServiceUnavailable - Service Unavailable
        InternalServerError - Internal Server Error
        NotFound - Not Found

        Specified by:
        get in interface StaticArp
        Parameters:
        tier1Id - (required)
        segmentId - (required)
        asyncCallback - Receives the status (progress, result or error) of the operation invocation.
      • get

        public void get​(java.lang.String tier1Id,
                        java.lang.String segmentId,
                        com.vmware.vapi.bindings.client.AsyncCallback<StaticARPConfig> asyncCallback,
                        com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
        Description copied from interface: StaticArp
        Read static ARP config

        Asynchronous method overload. Result of the invocation will be reported via the specified asyncCallback. Use invocationConfig to specify configuration for this particular invocation.

        Invocation Result:
        com.vmware.nsx_policy.model.StaticARPConfig

        Operation Errors:
        InvalidRequest - Bad Request, Precondition Failed
        Unauthorized - Forbidden
        ServiceUnavailable - Service Unavailable
        InternalServerError - Internal Server Error
        NotFound - Not Found

        Specified by:
        get in interface StaticArp
        Parameters:
        tier1Id - (required)
        segmentId - (required)
        asyncCallback - Receives the status (progress, result or error) of the operation invocation.
        invocationConfig - Configuration for the method invocation.
      • patch

        public void patch​(java.lang.String tier1Id,
                          java.lang.String segmentId,
                          StaticARPConfig staticARPConfig)
        Description copied from interface: StaticArp
        Create static ARP config with Tier-1 and segment IDs provided if it doesn't exist, update with provided config if it's already created.

        Synchronous method overload. Result of the invocation will be reported as a method return value.

        Specified by:
        patch in interface StaticArp
        Parameters:
        tier1Id - (required)
        segmentId - (required)
        staticARPConfig - (required)
      • patch

        public void patch​(java.lang.String tier1Id,
                          java.lang.String segmentId,
                          StaticARPConfig staticARPConfig,
                          com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
        Description copied from interface: StaticArp
        Create static ARP config with Tier-1 and segment IDs provided if it doesn't exist, update with provided config if it's already created.

        Synchronous method overload. Result of the invocation will be reported as a method return value. Use invocationConfig to specify configuration for this particular invocation.

        Specified by:
        patch in interface StaticArp
        Parameters:
        tier1Id - (required)
        segmentId - (required)
        staticARPConfig - (required)
        invocationConfig - Configuration for the method invocation.
      • patch

        public void patch​(java.lang.String tier1Id,
                          java.lang.String segmentId,
                          StaticARPConfig staticARPConfig,
                          com.vmware.vapi.bindings.client.AsyncCallback<java.lang.Void> asyncCallback)
        Description copied from interface: StaticArp
        Create static ARP config with Tier-1 and segment IDs provided if it doesn't exist, update with provided config if it's already created.

        Asynchronous method overload. Result of the invocation will be reported via the specified asyncCallback.

        Operation Errors:
        InvalidRequest - Bad Request, Precondition Failed
        Unauthorized - Forbidden
        ServiceUnavailable - Service Unavailable
        InternalServerError - Internal Server Error
        NotFound - Not Found

        Specified by:
        patch in interface StaticArp
        Parameters:
        tier1Id - (required)
        segmentId - (required)
        staticARPConfig - (required)
        asyncCallback - Receives the status (progress, result or error) of the operation invocation.
      • patch

        public void patch​(java.lang.String tier1Id,
                          java.lang.String segmentId,
                          StaticARPConfig staticARPConfig,
                          com.vmware.vapi.bindings.client.AsyncCallback<java.lang.Void> asyncCallback,
                          com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
        Description copied from interface: StaticArp
        Create static ARP config with Tier-1 and segment IDs provided if it doesn't exist, update with provided config if it's already created.

        Asynchronous method overload. Result of the invocation will be reported via the specified asyncCallback. Use invocationConfig to specify configuration for this particular invocation.

        Operation Errors:
        InvalidRequest - Bad Request, Precondition Failed
        Unauthorized - Forbidden
        ServiceUnavailable - Service Unavailable
        InternalServerError - Internal Server Error
        NotFound - Not Found

        Specified by:
        patch in interface StaticArp
        Parameters:
        tier1Id - (required)
        segmentId - (required)
        staticARPConfig - (required)
        asyncCallback - Receives the status (progress, result or error) of the operation invocation.
        invocationConfig - Configuration for the method invocation.
      • update

        public StaticARPConfig update​(java.lang.String tier1Id,
                                      java.lang.String segmentId,
                                      StaticARPConfig staticARPConfig)
        Description copied from interface: StaticArp
        Create static ARP config with Tier-1 and segment IDs provided if it doesn't exist, update with provided config if it's already created.

        Synchronous method overload. Result of the invocation will be reported as a method return value.

        Specified by:
        update in interface StaticArp
        Parameters:
        tier1Id - (required)
        segmentId - (required)
        staticARPConfig - (required)
        Returns:
        com.vmware.nsx_policy.model.StaticARPConfig
      • update

        public StaticARPConfig update​(java.lang.String tier1Id,
                                      java.lang.String segmentId,
                                      StaticARPConfig staticARPConfig,
                                      com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
        Description copied from interface: StaticArp
        Create static ARP config with Tier-1 and segment IDs provided if it doesn't exist, update with provided config if it's already created.

        Synchronous method overload. Result of the invocation will be reported as a method return value. Use invocationConfig to specify configuration for this particular invocation.

        Specified by:
        update in interface StaticArp
        Parameters:
        tier1Id - (required)
        segmentId - (required)
        staticARPConfig - (required)
        invocationConfig - Configuration for the method invocation.
        Returns:
        com.vmware.nsx_policy.model.StaticARPConfig
      • update

        public void update​(java.lang.String tier1Id,
                           java.lang.String segmentId,
                           StaticARPConfig staticARPConfig,
                           com.vmware.vapi.bindings.client.AsyncCallback<StaticARPConfig> asyncCallback)
        Description copied from interface: StaticArp
        Create static ARP config with Tier-1 and segment IDs provided if it doesn't exist, update with provided config if it's already created.

        Asynchronous method overload. Result of the invocation will be reported via the specified asyncCallback.

        Invocation Result:
        com.vmware.nsx_policy.model.StaticARPConfig

        Operation Errors:
        InvalidRequest - Bad Request, Precondition Failed
        Unauthorized - Forbidden
        ServiceUnavailable - Service Unavailable
        InternalServerError - Internal Server Error
        NotFound - Not Found

        Specified by:
        update in interface StaticArp
        Parameters:
        tier1Id - (required)
        segmentId - (required)
        staticARPConfig - (required)
        asyncCallback - Receives the status (progress, result or error) of the operation invocation.
      • update

        public void update​(java.lang.String tier1Id,
                           java.lang.String segmentId,
                           StaticARPConfig staticARPConfig,
                           com.vmware.vapi.bindings.client.AsyncCallback<StaticARPConfig> asyncCallback,
                           com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
        Description copied from interface: StaticArp
        Create static ARP config with Tier-1 and segment IDs provided if it doesn't exist, update with provided config if it's already created.

        Asynchronous method overload. Result of the invocation will be reported via the specified asyncCallback. Use invocationConfig to specify configuration for this particular invocation.

        Invocation Result:
        com.vmware.nsx_policy.model.StaticARPConfig

        Operation Errors:
        InvalidRequest - Bad Request, Precondition Failed
        Unauthorized - Forbidden
        ServiceUnavailable - Service Unavailable
        InternalServerError - Internal Server Error
        NotFound - Not Found

        Specified by:
        update in interface StaticArp
        Parameters:
        tier1Id - (required)
        segmentId - (required)
        staticARPConfig - (required)
        asyncCallback - Receives the status (progress, result or error) of the operation invocation.
        invocationConfig - Configuration for the method invocation.