Search in sources :

Example 6 with PageImpl

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

the class ApplicationsImpl method list.

/**
     * Lists all of the applications available in 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<ApplicationSummary> object wrapped in {@link ServiceResponseWithHeaders} if successful.
     */
public ServiceResponseWithHeaders<PagedList<ApplicationSummary>, ApplicationListHeaders> list() throws BatchErrorException, IOException, IllegalArgumentException {
    if (this.client.apiVersion() == null) {
        throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
    }
    final ApplicationListOptions applicationListOptions = 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(), maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    ServiceResponseWithHeaders<PageImpl<ApplicationSummary>, ApplicationListHeaders> response = listDelegate(call.execute());
    PagedList<ApplicationSummary> result = new PagedList<ApplicationSummary>(response.getBody()) {

        @Override
        public Page<ApplicationSummary> 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) ApplicationSummary(com.microsoft.azure.batch.protocol.models.ApplicationSummary) DateTime(org.joda.time.DateTime) ServiceResponseWithHeaders(com.microsoft.rest.ServiceResponseWithHeaders) ResponseBody(okhttp3.ResponseBody) ApplicationListHeaders(com.microsoft.azure.batch.protocol.models.ApplicationListHeaders) DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123) ApplicationListOptions(com.microsoft.azure.batch.protocol.models.ApplicationListOptions)

Example 7 with PageImpl

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

the class AccountsImpl method listNodeAgentSkus.

/**
     * Lists all node agent SKUs supported by the Azure Batch service.
     *
     * @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;NodeAgentSku&gt; object wrapped in {@link ServiceResponseWithHeaders} if successful.
     */
public ServiceResponseWithHeaders<PagedList<NodeAgentSku>, AccountListNodeAgentSkusHeaders> listNodeAgentSkus() throws BatchErrorException, IOException, IllegalArgumentException {
    if (this.client.apiVersion() == null) {
        throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
    }
    final AccountListNodeAgentSkusOptions accountListNodeAgentSkusOptions = null;
    String filter = 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.listNodeAgentSkus(this.client.apiVersion(), this.client.acceptLanguage(), filter, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    ServiceResponseWithHeaders<PageImpl<NodeAgentSku>, AccountListNodeAgentSkusHeaders> response = listNodeAgentSkusDelegate(call.execute());
    PagedList<NodeAgentSku> result = new PagedList<NodeAgentSku>(response.getBody()) {

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

Example 8 with PageImpl

use of com.microsoft.azure.batch.protocol.models.PageImpl 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&lt;Certificate&gt; 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 9 with PageImpl

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

the class JobSchedulesImpl method list.

/**
     * Lists all of the job schedules in the specified account.
     *
     * @param jobScheduleListOptions 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&lt;CloudJobSchedule&gt; object wrapped in {@link ServiceResponseWithHeaders} if successful.
     */
public ServiceResponseWithHeaders<PagedList<CloudJobSchedule>, JobScheduleListHeaders> list(final JobScheduleListOptions jobScheduleListOptions) throws BatchErrorException, IOException, IllegalArgumentException {
    if (this.client.apiVersion() == null) {
        throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
    }
    Validator.validate(jobScheduleListOptions);
    String filter = null;
    if (jobScheduleListOptions != null) {
        filter = jobScheduleListOptions.filter();
    }
    String select = null;
    if (jobScheduleListOptions != null) {
        select = jobScheduleListOptions.select();
    }
    String expand = null;
    if (jobScheduleListOptions != null) {
        expand = jobScheduleListOptions.expand();
    }
    Integer maxResults = null;
    if (jobScheduleListOptions != null) {
        maxResults = jobScheduleListOptions.maxResults();
    }
    Integer timeout = null;
    if (jobScheduleListOptions != null) {
        timeout = jobScheduleListOptions.timeout();
    }
    String clientRequestId = null;
    if (jobScheduleListOptions != null) {
        clientRequestId = jobScheduleListOptions.clientRequestId();
    }
    Boolean returnClientRequestId = null;
    if (jobScheduleListOptions != null) {
        returnClientRequestId = jobScheduleListOptions.returnClientRequestId();
    }
    DateTime ocpDate = null;
    if (jobScheduleListOptions != null) {
        ocpDate = jobScheduleListOptions.ocpDate();
    }
    DateTimeRfc1123 ocpDateConverted = null;
    if (ocpDate != null) {
        ocpDateConverted = new DateTimeRfc1123(ocpDate);
    }
    Call<ResponseBody> call = service.list(this.client.apiVersion(), this.client.acceptLanguage(), filter, select, expand, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    ServiceResponseWithHeaders<PageImpl<CloudJobSchedule>, JobScheduleListHeaders> response = listDelegate(call.execute());
    PagedList<CloudJobSchedule> result = new PagedList<CloudJobSchedule>(response.getBody()) {

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

Example 10 with PageImpl

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

the class JobSchedulesImpl method list.

/**
     * Lists all of the job schedules in 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;CloudJobSchedule&gt; object wrapped in {@link ServiceResponseWithHeaders} if successful.
     */
public ServiceResponseWithHeaders<PagedList<CloudJobSchedule>, JobScheduleListHeaders> list() throws BatchErrorException, IOException, IllegalArgumentException {
    if (this.client.apiVersion() == null) {
        throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
    }
    final JobScheduleListOptions jobScheduleListOptions = null;
    String filter = null;
    String select = null;
    String expand = 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, expand, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    ServiceResponseWithHeaders<PageImpl<CloudJobSchedule>, JobScheduleListHeaders> response = listDelegate(call.execute());
    PagedList<CloudJobSchedule> result = new PagedList<CloudJobSchedule>(response.getBody()) {

        @Override
        public Page<CloudJobSchedule> 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) CloudJobSchedule(com.microsoft.azure.batch.protocol.models.CloudJobSchedule) JobScheduleListHeaders(com.microsoft.azure.batch.protocol.models.JobScheduleListHeaders) DateTime(org.joda.time.DateTime) ServiceResponseWithHeaders(com.microsoft.rest.ServiceResponseWithHeaders) ResponseBody(okhttp3.ResponseBody) JobScheduleListOptions(com.microsoft.azure.batch.protocol.models.JobScheduleListOptions) DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123)

Aggregations

PagedList (com.microsoft.azure.PagedList)26 PageImpl (com.microsoft.azure.batch.protocol.models.PageImpl)26 DateTimeRfc1123 (com.microsoft.rest.DateTimeRfc1123)26 ServiceResponseWithHeaders (com.microsoft.rest.ServiceResponseWithHeaders)26 ResponseBody (okhttp3.ResponseBody)26 DateTime (org.joda.time.DateTime)26 CloudJob (com.microsoft.azure.batch.protocol.models.CloudJob)4 NodeFile (com.microsoft.azure.batch.protocol.models.NodeFile)4 AccountListNodeAgentSkusHeaders (com.microsoft.azure.batch.protocol.models.AccountListNodeAgentSkusHeaders)2 ApplicationListHeaders (com.microsoft.azure.batch.protocol.models.ApplicationListHeaders)2 ApplicationSummary (com.microsoft.azure.batch.protocol.models.ApplicationSummary)2 Certificate (com.microsoft.azure.batch.protocol.models.Certificate)2 CertificateListHeaders (com.microsoft.azure.batch.protocol.models.CertificateListHeaders)2 CloudJobSchedule (com.microsoft.azure.batch.protocol.models.CloudJobSchedule)2 CloudPool (com.microsoft.azure.batch.protocol.models.CloudPool)2 CloudTask (com.microsoft.azure.batch.protocol.models.CloudTask)2 ComputeNode (com.microsoft.azure.batch.protocol.models.ComputeNode)2 ComputeNodeListHeaders (com.microsoft.azure.batch.protocol.models.ComputeNodeListHeaders)2 FileListFromComputeNodeHeaders (com.microsoft.azure.batch.protocol.models.FileListFromComputeNodeHeaders)2 FileListFromTaskHeaders (com.microsoft.azure.batch.protocol.models.FileListFromTaskHeaders)2