Class CertificatesStub

  • All Implemented Interfaces:
    Certificates, CertificatesTypes, com.vmware.vapi.bindings.Service

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

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

    • Constructor Summary

      Constructors 
      Constructor Description
      CertificatesStub​(com.vmware.vapi.core.ApiProvider apiProvider, com.vmware.vapi.bindings.StubConfigurationBase config)  
      CertificatesStub​(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
      TlsCertificate get​(java.lang.String certificateId, java.lang.Boolean details)
      Returns information for the specified certificate ID, including the certificate's id; pem_encoded data; and history of the certificate (who created or modified it and when).
      void get​(java.lang.String certificateId, java.lang.Boolean details, com.vmware.vapi.bindings.client.AsyncCallback<TlsCertificate> asyncCallback)
      Returns information for the specified certificate ID, including the certificate's id; pem_encoded data; and history of the certificate (who created or modified it and when).
      void get​(java.lang.String certificateId, java.lang.Boolean details, com.vmware.vapi.bindings.client.AsyncCallback<TlsCertificate> asyncCallback, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
      Returns information for the specified certificate ID, including the certificate's id; pem_encoded data; and history of the certificate (who created or modified it and when).
      TlsCertificate get​(java.lang.String certificateId, java.lang.Boolean details, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
      Returns information for the specified certificate ID, including the certificate's id; pem_encoded data; and history of the certificate (who created or modified it and when).
      TlsCertificateList list​(java.lang.String cursor, java.lang.Boolean details, java.lang.String includedFields, java.lang.String nodeId, java.lang.Long pageSize, java.lang.Boolean sortAscending, java.lang.String sortBy, java.lang.String type)
      Returns all certificate information viewable by the user, including each certificate's id; pem_encoded data; and history of the certificate (who created or modified it and when).
      void list​(java.lang.String cursor, java.lang.Boolean details, java.lang.String includedFields, java.lang.String nodeId, java.lang.Long pageSize, java.lang.Boolean sortAscending, java.lang.String sortBy, java.lang.String type, com.vmware.vapi.bindings.client.AsyncCallback<TlsCertificateList> asyncCallback)
      Returns all certificate information viewable by the user, including each certificate's id; pem_encoded data; and history of the certificate (who created or modified it and when).
      void list​(java.lang.String cursor, java.lang.Boolean details, java.lang.String includedFields, java.lang.String nodeId, java.lang.Long pageSize, java.lang.Boolean sortAscending, java.lang.String sortBy, java.lang.String type, com.vmware.vapi.bindings.client.AsyncCallback<TlsCertificateList> asyncCallback, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
      Returns all certificate information viewable by the user, including each certificate's id; pem_encoded data; and history of the certificate (who created or modified it and when).
      TlsCertificateList list​(java.lang.String cursor, java.lang.Boolean details, java.lang.String includedFields, java.lang.String nodeId, java.lang.Long pageSize, java.lang.Boolean sortAscending, java.lang.String sortBy, java.lang.String type, com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
      Returns all certificate information viewable by the user, including each certificate's id; pem_encoded data; and history of the certificate (who created or modified it and when).
      • 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

      • CertificatesStub

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

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

      • get

        public TlsCertificate get​(java.lang.String certificateId,
                                  java.lang.Boolean details)
        Description copied from interface: Certificates
        Returns information for the specified certificate ID, including the certificate's id; pem_encoded data; and history of the certificate (who created or modified it and when). For additional information, include the ?details=true modifier at the end of the request URI.

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

        Specified by:
        get in interface Certificates
        Parameters:
        certificateId - ID of certificate to read (required)
        details - whether to expand the pem data and show all its details (optional, default to false)
        Returns:
        com.vmware.nsx_policy.model.TlsCertificate
      • get

        public TlsCertificate get​(java.lang.String certificateId,
                                  java.lang.Boolean details,
                                  com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
        Description copied from interface: Certificates
        Returns information for the specified certificate ID, including the certificate's id; pem_encoded data; and history of the certificate (who created or modified it and when). For additional information, include the ?details=true modifier at the end of the request URI.

        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 Certificates
        Parameters:
        certificateId - ID of certificate to read (required)
        details - whether to expand the pem data and show all its details (optional, default to false)
        invocationConfig - Configuration for the method invocation.
        Returns:
        com.vmware.nsx_policy.model.TlsCertificate
      • get

        public void get​(java.lang.String certificateId,
                        java.lang.Boolean details,
                        com.vmware.vapi.bindings.client.AsyncCallback<TlsCertificate> asyncCallback)
        Description copied from interface: Certificates
        Returns information for the specified certificate ID, including the certificate's id; pem_encoded data; and history of the certificate (who created or modified it and when). For additional information, include the ?details=true modifier at the end of the request URI.

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

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

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

        Specified by:
        get in interface Certificates
        Parameters:
        certificateId - ID of certificate to read (required)
        details - whether to expand the pem data and show all its details (optional, default to false)
        asyncCallback - Receives the status (progress, result or error) of the operation invocation.
      • get

        public void get​(java.lang.String certificateId,
                        java.lang.Boolean details,
                        com.vmware.vapi.bindings.client.AsyncCallback<TlsCertificate> asyncCallback,
                        com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
        Description copied from interface: Certificates
        Returns information for the specified certificate ID, including the certificate's id; pem_encoded data; and history of the certificate (who created or modified it and when). For additional information, include the ?details=true modifier at the end of the request URI.

        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.TlsCertificate

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

        Specified by:
        get in interface Certificates
        Parameters:
        certificateId - ID of certificate to read (required)
        details - whether to expand the pem data and show all its details (optional, default to false)
        asyncCallback - Receives the status (progress, result or error) of the operation invocation.
        invocationConfig - Configuration for the method invocation.
      • list

        public TlsCertificateList list​(java.lang.String cursor,
                                       java.lang.Boolean details,
                                       java.lang.String includedFields,
                                       java.lang.String nodeId,
                                       java.lang.Long pageSize,
                                       java.lang.Boolean sortAscending,
                                       java.lang.String sortBy,
                                       java.lang.String type)
        Description copied from interface: Certificates
        Returns all certificate information viewable by the user, including each certificate's id; pem_encoded data; and history of the certificate (who created or modified it and when). For additional information, include the ?details=true modifier at the end of the request URI.

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

        Specified by:
        list in interface Certificates
        Parameters:
        cursor - Opaque cursor to be used for getting next page of records (supplied by current result page) (optional)
        details - whether to expand the pem data and show all its details (optional, default to false)
        includedFields - Comma separated list of fields that should be included in query result (optional)
        nodeId - Node ID of certificate to return (optional)
        pageSize - Maximum number of results to return in this page (server may return fewer) (optional, default to 1000)
        sortAscending - (optional)
        sortBy - Field by which records are sorted (optional)
        type - Type of certificate to return (optional)
        Returns:
        com.vmware.nsx_policy.model.TlsCertificateList
      • list

        public TlsCertificateList list​(java.lang.String cursor,
                                       java.lang.Boolean details,
                                       java.lang.String includedFields,
                                       java.lang.String nodeId,
                                       java.lang.Long pageSize,
                                       java.lang.Boolean sortAscending,
                                       java.lang.String sortBy,
                                       java.lang.String type,
                                       com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
        Description copied from interface: Certificates
        Returns all certificate information viewable by the user, including each certificate's id; pem_encoded data; and history of the certificate (who created or modified it and when). For additional information, include the ?details=true modifier at the end of the request URI.

        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:
        list in interface Certificates
        Parameters:
        cursor - Opaque cursor to be used for getting next page of records (supplied by current result page) (optional)
        details - whether to expand the pem data and show all its details (optional, default to false)
        includedFields - Comma separated list of fields that should be included in query result (optional)
        nodeId - Node ID of certificate to return (optional)
        pageSize - Maximum number of results to return in this page (server may return fewer) (optional, default to 1000)
        sortAscending - (optional)
        sortBy - Field by which records are sorted (optional)
        type - Type of certificate to return (optional)
        invocationConfig - Configuration for the method invocation.
        Returns:
        com.vmware.nsx_policy.model.TlsCertificateList
      • list

        public void list​(java.lang.String cursor,
                         java.lang.Boolean details,
                         java.lang.String includedFields,
                         java.lang.String nodeId,
                         java.lang.Long pageSize,
                         java.lang.Boolean sortAscending,
                         java.lang.String sortBy,
                         java.lang.String type,
                         com.vmware.vapi.bindings.client.AsyncCallback<TlsCertificateList> asyncCallback)
        Description copied from interface: Certificates
        Returns all certificate information viewable by the user, including each certificate's id; pem_encoded data; and history of the certificate (who created or modified it and when). For additional information, include the ?details=true modifier at the end of the request URI.

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

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

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

        Specified by:
        list in interface Certificates
        Parameters:
        cursor - Opaque cursor to be used for getting next page of records (supplied by current result page) (optional)
        details - whether to expand the pem data and show all its details (optional, default to false)
        includedFields - Comma separated list of fields that should be included in query result (optional)
        nodeId - Node ID of certificate to return (optional)
        pageSize - Maximum number of results to return in this page (server may return fewer) (optional, default to 1000)
        sortAscending - (optional)
        sortBy - Field by which records are sorted (optional)
        type - Type of certificate to return (optional)
        asyncCallback - Receives the status (progress, result or error) of the operation invocation.
      • list

        public void list​(java.lang.String cursor,
                         java.lang.Boolean details,
                         java.lang.String includedFields,
                         java.lang.String nodeId,
                         java.lang.Long pageSize,
                         java.lang.Boolean sortAscending,
                         java.lang.String sortBy,
                         java.lang.String type,
                         com.vmware.vapi.bindings.client.AsyncCallback<TlsCertificateList> asyncCallback,
                         com.vmware.vapi.bindings.client.InvocationConfig invocationConfig)
        Description copied from interface: Certificates
        Returns all certificate information viewable by the user, including each certificate's id; pem_encoded data; and history of the certificate (who created or modified it and when). For additional information, include the ?details=true modifier at the end of the request URI.

        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.TlsCertificateList

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

        Specified by:
        list in interface Certificates
        Parameters:
        cursor - Opaque cursor to be used for getting next page of records (supplied by current result page) (optional)
        details - whether to expand the pem data and show all its details (optional, default to false)
        includedFields - Comma separated list of fields that should be included in query result (optional)
        nodeId - Node ID of certificate to return (optional)
        pageSize - Maximum number of results to return in this page (server may return fewer) (optional, default to 1000)
        sortAscending - (optional)
        sortBy - Field by which records are sorted (optional)
        type - Type of certificate to return (optional)
        asyncCallback - Receives the status (progress, result or error) of the operation invocation.
        invocationConfig - Configuration for the method invocation.