Search in sources :

Example 1 with AccountListNodeAgentSkusOptions

use of com.microsoft.azure.batch.protocol.models.AccountListNodeAgentSkusOptions 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<NodeAgentSku> 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 2 with AccountListNodeAgentSkusOptions

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

the class AccountsImpl method listNodeAgentSkusAsync.

/**
     * Lists all node agent SKUs supported by the Azure Batch service.
     *
     * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
     * @throws IllegalArgumentException thrown if callback is null
     * @return the {@link Call} object
     */
public ServiceCall listNodeAgentSkusAsync(final ListOperationCallback<NodeAgentSku> serviceCallback) throws IllegalArgumentException {
    if (serviceCallback == null) {
        throw new IllegalArgumentException("ServiceCallback is required for async calls.");
    }
    if (this.client.apiVersion() == null) {
        serviceCallback.failure(new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."));
        return 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());
    final ServiceCall serviceCall = new ServiceCall(call);
    call.enqueue(new ServiceResponseCallback<List<NodeAgentSku>>(serviceCallback) {

        @Override
        public void onResponse(Call<ResponseBody> call, Response<ResponseBody> response) {
            try {
                ServiceResponseWithHeaders<PageImpl<NodeAgentSku>, AccountListNodeAgentSkusHeaders> result = listNodeAgentSkusDelegate(response);
                serviceCallback.load(result.getBody().getItems());
                if (result.getBody().getNextPageLink() != null && serviceCallback.progress(result.getBody().getItems()) == ListOperationCallback.PagingBahavior.CONTINUE) {
                    listNodeAgentSkusNextAsync(result.getBody().getNextPageLink(), null, serviceCall, serviceCallback);
                } else {
                    serviceCallback.success(new ServiceResponseWithHeaders<>(serviceCallback.get(), result.getHeaders(), result.getResponse()));
                }
            } catch (BatchErrorException | IOException exception) {
                serviceCallback.failure(exception);
            }
        }
    });
    return serviceCall;
}
Also used : ServiceCall(com.microsoft.rest.ServiceCall) 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) PagedList(com.microsoft.azure.PagedList) List(java.util.List) NodeAgentSku(com.microsoft.azure.batch.protocol.models.NodeAgentSku)

Example 3 with AccountListNodeAgentSkusOptions

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

the class AccountOperations method listNodeAgentSkus.

/**
     * Enumerates the node agent SKU values supported by Batch Service.
     *
     * @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 NodeAgentSku} that can be used to enumerate node agent SKU values
     * @throws BatchErrorException Exception thrown from REST call
     * @throws IOException Exception thrown from serialization/deserialization
     */
public List<NodeAgentSku> listNodeAgentSkus(DetailLevel detailLevel, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {
    AccountListNodeAgentSkusOptions options = new AccountListNodeAgentSkusOptions();
    BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors);
    bhMgr.appendDetailLevelToPerCallBehaviors(detailLevel);
    bhMgr.applyRequestBehaviors(options);
    ServiceResponseWithHeaders<PagedList<NodeAgentSku>, AccountListNodeAgentSkusHeaders> response = this._parentBatchClient.protocolLayer().accounts().listNodeAgentSkus(options);
    return response.getBody();
}
Also used : PagedList(com.microsoft.azure.PagedList) AccountListNodeAgentSkusHeaders(com.microsoft.azure.batch.protocol.models.AccountListNodeAgentSkusHeaders) AccountListNodeAgentSkusOptions(com.microsoft.azure.batch.protocol.models.AccountListNodeAgentSkusOptions)

Aggregations

PagedList (com.microsoft.azure.PagedList)3 AccountListNodeAgentSkusOptions (com.microsoft.azure.batch.protocol.models.AccountListNodeAgentSkusOptions)3 AccountListNodeAgentSkusHeaders (com.microsoft.azure.batch.protocol.models.AccountListNodeAgentSkusHeaders)2 NodeAgentSku (com.microsoft.azure.batch.protocol.models.NodeAgentSku)2 DateTimeRfc1123 (com.microsoft.rest.DateTimeRfc1123)2 ServiceResponseWithHeaders (com.microsoft.rest.ServiceResponseWithHeaders)2 ResponseBody (okhttp3.ResponseBody)2 DateTime (org.joda.time.DateTime)2 PageImpl (com.microsoft.azure.batch.protocol.models.PageImpl)1 ServiceCall (com.microsoft.rest.ServiceCall)1 List (java.util.List)1