Search in sources :

Example 1 with CertificateListHeaders

use of com.microsoft.azure.batch.protocol.models.CertificateListHeaders in project azure-sdk-for-java by Azure.

the class CertificatesImpl method list.

/**
     * Lists all of the certificates that have been added to the specified account.
     *
     * @param certificateListOptions Additional parameters for the operation
     * @throws BatchErrorException exception thrown from REST call
     * @throws IOException exception thrown from serialization/deserialization
     * @throws IllegalArgumentException exception thrown from invalid parameters
     * @return the List<Certificate> object wrapped in {@link ServiceResponseWithHeaders} if successful.
     */
public ServiceResponseWithHeaders<PagedList<Certificate>, CertificateListHeaders> list(final CertificateListOptions certificateListOptions) throws BatchErrorException, IOException, IllegalArgumentException {
    if (this.client.apiVersion() == null) {
        throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
    }
    Validator.validate(certificateListOptions);
    String filter = null;
    if (certificateListOptions != null) {
        filter = certificateListOptions.filter();
    }
    String select = null;
    if (certificateListOptions != null) {
        select = certificateListOptions.select();
    }
    Integer maxResults = null;
    if (certificateListOptions != null) {
        maxResults = certificateListOptions.maxResults();
    }
    Integer timeout = null;
    if (certificateListOptions != null) {
        timeout = certificateListOptions.timeout();
    }
    String clientRequestId = null;
    if (certificateListOptions != null) {
        clientRequestId = certificateListOptions.clientRequestId();
    }
    Boolean returnClientRequestId = null;
    if (certificateListOptions != null) {
        returnClientRequestId = certificateListOptions.returnClientRequestId();
    }
    DateTime ocpDate = null;
    if (certificateListOptions != null) {
        ocpDate = certificateListOptions.ocpDate();
    }
    DateTimeRfc1123 ocpDateConverted = null;
    if (ocpDate != null) {
        ocpDateConverted = new DateTimeRfc1123(ocpDate);
    }
    Call<ResponseBody> call = service.list(this.client.apiVersion(), this.client.acceptLanguage(), filter, select, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    ServiceResponseWithHeaders<PageImpl<Certificate>, CertificateListHeaders> response = listDelegate(call.execute());
    PagedList<Certificate> result = new PagedList<Certificate>(response.getBody()) {

        @Override
        public Page<Certificate> nextPage(String nextPageLink) throws BatchErrorException, IOException {
            CertificateListNextOptions certificateListNextOptions = null;
            if (certificateListOptions != null) {
                certificateListNextOptions = new CertificateListNextOptions();
                certificateListNextOptions.withClientRequestId(certificateListOptions.clientRequestId());
                certificateListNextOptions.withReturnClientRequestId(certificateListOptions.returnClientRequestId());
                certificateListNextOptions.withOcpDate(certificateListOptions.ocpDate());
            }
            return listNext(nextPageLink, certificateListNextOptions).getBody();
        }
    };
    return new ServiceResponseWithHeaders<>(result, response.getHeaders(), response.getResponse());
}
Also used : PageImpl(com.microsoft.azure.batch.protocol.models.PageImpl) PagedList(com.microsoft.azure.PagedList) CertificateListHeaders(com.microsoft.azure.batch.protocol.models.CertificateListHeaders) DateTime(org.joda.time.DateTime) ServiceResponseWithHeaders(com.microsoft.rest.ServiceResponseWithHeaders) ResponseBody(okhttp3.ResponseBody) DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123) CertificateListNextOptions(com.microsoft.azure.batch.protocol.models.CertificateListNextOptions) Certificate(com.microsoft.azure.batch.protocol.models.Certificate)

Example 2 with CertificateListHeaders

use of com.microsoft.azure.batch.protocol.models.CertificateListHeaders in project azure-sdk-for-java by Azure.

the class CertificatesImpl method list.

/**
     * Lists all of the certificates that have been added to the specified account.
     *
     * @throws BatchErrorException exception thrown from REST call
     * @throws IOException exception thrown from serialization/deserialization
     * @throws IllegalArgumentException exception thrown from invalid parameters
     * @return the List&lt;Certificate&gt; object wrapped in {@link ServiceResponseWithHeaders} if successful.
     */
public ServiceResponseWithHeaders<PagedList<Certificate>, CertificateListHeaders> list() throws BatchErrorException, IOException, IllegalArgumentException {
    if (this.client.apiVersion() == null) {
        throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
    }
    final CertificateListOptions certificateListOptions = null;
    String filter = null;
    String select = null;
    Integer maxResults = null;
    Integer timeout = null;
    String clientRequestId = null;
    Boolean returnClientRequestId = null;
    DateTime ocpDate = null;
    DateTimeRfc1123 ocpDateConverted = null;
    if (ocpDate != null) {
        ocpDateConverted = new DateTimeRfc1123(ocpDate);
    }
    Call<ResponseBody> call = service.list(this.client.apiVersion(), this.client.acceptLanguage(), filter, select, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    ServiceResponseWithHeaders<PageImpl<Certificate>, CertificateListHeaders> response = listDelegate(call.execute());
    PagedList<Certificate> result = new PagedList<Certificate>(response.getBody()) {

        @Override
        public Page<Certificate> nextPage(String nextPageLink) throws BatchErrorException, IOException {
            return listNext(nextPageLink, null).getBody();
        }
    };
    return new ServiceResponseWithHeaders<>(result, response.getHeaders(), response.getResponse());
}
Also used : PageImpl(com.microsoft.azure.batch.protocol.models.PageImpl) PagedList(com.microsoft.azure.PagedList) CertificateListHeaders(com.microsoft.azure.batch.protocol.models.CertificateListHeaders) DateTime(org.joda.time.DateTime) ServiceResponseWithHeaders(com.microsoft.rest.ServiceResponseWithHeaders) ResponseBody(okhttp3.ResponseBody) CertificateListOptions(com.microsoft.azure.batch.protocol.models.CertificateListOptions) DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123) Certificate(com.microsoft.azure.batch.protocol.models.Certificate)

Example 3 with CertificateListHeaders

use of com.microsoft.azure.batch.protocol.models.CertificateListHeaders in project azure-sdk-for-java by Azure.

the class CertificateOperations method listCertificates.

/**
     * Enumerates the {@link Certificate certificates} in the Batch account.
     *
     * @param detailLevel A {@link DetailLevel} used for filtering the list and for controlling which properties are retrieved from the service.
     * @param additionalBehaviors A collection of {@link BatchClientBehavior} instances that are applied to the Batch service request.
     * @return A collection of {@link Certificate certificates}
     * @throws BatchErrorException Exception thrown from REST call
     * @throws IOException Exception thrown from serialization/deserialization
     */
public List<Certificate> listCertificates(DetailLevel detailLevel, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {
    CertificateListOptions certificateListOptions = new CertificateListOptions();
    BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors);
    bhMgr.appendDetailLevelToPerCallBehaviors(detailLevel);
    bhMgr.applyRequestBehaviors(certificateListOptions);
    ServiceResponseWithHeaders<PagedList<Certificate>, CertificateListHeaders> response = this._parentBatchClient.protocolLayer().certificates().list(certificateListOptions);
    return response.getBody();
}
Also used : CertificateListOptions(com.microsoft.azure.batch.protocol.models.CertificateListOptions) PagedList(com.microsoft.azure.PagedList) CertificateListHeaders(com.microsoft.azure.batch.protocol.models.CertificateListHeaders)

Aggregations

PagedList (com.microsoft.azure.PagedList)3 CertificateListHeaders (com.microsoft.azure.batch.protocol.models.CertificateListHeaders)3 Certificate (com.microsoft.azure.batch.protocol.models.Certificate)2 CertificateListOptions (com.microsoft.azure.batch.protocol.models.CertificateListOptions)2 PageImpl (com.microsoft.azure.batch.protocol.models.PageImpl)2 DateTimeRfc1123 (com.microsoft.rest.DateTimeRfc1123)2 ServiceResponseWithHeaders (com.microsoft.rest.ServiceResponseWithHeaders)2 ResponseBody (okhttp3.ResponseBody)2 DateTime (org.joda.time.DateTime)2 CertificateListNextOptions (com.microsoft.azure.batch.protocol.models.CertificateListNextOptions)1