Search in sources :

Example 6 with ComputeNode

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

the class ComputeNodesImpl method listAsync.

/**
     * Lists the compute nodes in the specified pool.
     *
     * @param poolId The id of the pool from which you want to list nodes.
     * @param computeNodeListOptions Additional parameters for the operation
     * @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 listAsync(final String poolId, final ComputeNodeListOptions computeNodeListOptions, final ListOperationCallback<ComputeNode> serviceCallback) throws IllegalArgumentException {
    if (serviceCallback == null) {
        throw new IllegalArgumentException("ServiceCallback is required for async calls.");
    }
    if (poolId == null) {
        serviceCallback.failure(new IllegalArgumentException("Parameter poolId is required and cannot be null."));
        return null;
    }
    if (this.client.apiVersion() == null) {
        serviceCallback.failure(new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."));
        return null;
    }
    Validator.validate(computeNodeListOptions, serviceCallback);
    String filter = null;
    if (computeNodeListOptions != null) {
        filter = computeNodeListOptions.filter();
    }
    String select = null;
    if (computeNodeListOptions != null) {
        select = computeNodeListOptions.select();
    }
    Integer maxResults = null;
    if (computeNodeListOptions != null) {
        maxResults = computeNodeListOptions.maxResults();
    }
    Integer timeout = null;
    if (computeNodeListOptions != null) {
        timeout = computeNodeListOptions.timeout();
    }
    String clientRequestId = null;
    if (computeNodeListOptions != null) {
        clientRequestId = computeNodeListOptions.clientRequestId();
    }
    Boolean returnClientRequestId = null;
    if (computeNodeListOptions != null) {
        returnClientRequestId = computeNodeListOptions.returnClientRequestId();
    }
    DateTime ocpDate = null;
    if (computeNodeListOptions != null) {
        ocpDate = computeNodeListOptions.ocpDate();
    }
    DateTimeRfc1123 ocpDateConverted = null;
    if (ocpDate != null) {
        ocpDateConverted = new DateTimeRfc1123(ocpDate);
    }
    Call<ResponseBody> call = service.list(poolId, this.client.apiVersion(), this.client.acceptLanguage(), filter, select, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    final ServiceCall serviceCall = new ServiceCall(call);
    call.enqueue(new ServiceResponseCallback<List<ComputeNode>>(serviceCallback) {

        @Override
        public void onResponse(Call<ResponseBody> call, Response<ResponseBody> response) {
            try {
                ServiceResponseWithHeaders<PageImpl<ComputeNode>, ComputeNodeListHeaders> result = listDelegate(response);
                serviceCallback.load(result.getBody().getItems());
                if (result.getBody().getNextPageLink() != null && serviceCallback.progress(result.getBody().getItems()) == ListOperationCallback.PagingBahavior.CONTINUE) {
                    ComputeNodeListNextOptions computeNodeListNextOptions = null;
                    if (computeNodeListOptions != null) {
                        computeNodeListNextOptions = new ComputeNodeListNextOptions();
                        computeNodeListNextOptions.withClientRequestId(computeNodeListOptions.clientRequestId());
                        computeNodeListNextOptions.withReturnClientRequestId(computeNodeListOptions.returnClientRequestId());
                        computeNodeListNextOptions.withOcpDate(computeNodeListOptions.ocpDate());
                    }
                    listNextAsync(result.getBody().getNextPageLink(), computeNodeListNextOptions, serviceCall, serviceCallback);
                } else {
                    serviceCallback.success(new ServiceResponseWithHeaders<>(serviceCallback.get(), result.getHeaders(), result.getResponse()));
                }
            } catch (BatchErrorException | IOException exception) {
                serviceCallback.failure(exception);
            }
        }
    });
    return serviceCall;
}
Also used : ComputeNode(com.microsoft.azure.batch.protocol.models.ComputeNode) ServiceCall(com.microsoft.rest.ServiceCall) DateTime(org.joda.time.DateTime) ServiceResponseWithHeaders(com.microsoft.rest.ServiceResponseWithHeaders) ResponseBody(okhttp3.ResponseBody) ComputeNodeListNextOptions(com.microsoft.azure.batch.protocol.models.ComputeNodeListNextOptions) DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123) List(java.util.List) PagedList(com.microsoft.azure.PagedList)

Example 7 with ComputeNode

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

the class ComputeNodesImpl method getAsync.

/**
     * Gets information about the specified compute node.
     *
     * @param poolId The id of the pool that contains the compute node.
     * @param nodeId The id of the compute node that you want to get information about.
     * @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 getAsync(String poolId, String nodeId, final ServiceCallback<ComputeNode> serviceCallback) throws IllegalArgumentException {
    if (serviceCallback == null) {
        throw new IllegalArgumentException("ServiceCallback is required for async calls.");
    }
    if (poolId == null) {
        serviceCallback.failure(new IllegalArgumentException("Parameter poolId is required and cannot be null."));
        return null;
    }
    if (nodeId == null) {
        serviceCallback.failure(new IllegalArgumentException("Parameter nodeId is required and cannot be null."));
        return null;
    }
    if (this.client.apiVersion() == null) {
        serviceCallback.failure(new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."));
        return null;
    }
    final ComputeNodeGetOptions computeNodeGetOptions = null;
    String select = 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.get(poolId, nodeId, this.client.apiVersion(), this.client.acceptLanguage(), select, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    final ServiceCall serviceCall = new ServiceCall(call);
    call.enqueue(new ServiceResponseCallback<ComputeNode>(serviceCallback) {

        @Override
        public void onResponse(Call<ResponseBody> call, Response<ResponseBody> response) {
            try {
                serviceCallback.success(getDelegate(response));
            } catch (BatchErrorException | IOException exception) {
                serviceCallback.failure(exception);
            }
        }
    });
    return serviceCall;
}
Also used : ComputeNode(com.microsoft.azure.batch.protocol.models.ComputeNode) ServiceCall(com.microsoft.rest.ServiceCall) ComputeNodeGetOptions(com.microsoft.azure.batch.protocol.models.ComputeNodeGetOptions) DateTime(org.joda.time.DateTime) ResponseBody(okhttp3.ResponseBody) DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123)

Example 8 with ComputeNode

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

the class ComputeNodesImpl method getAsync.

/**
     * Gets information about the specified compute node.
     *
     * @param poolId The id of the pool that contains the compute node.
     * @param nodeId The id of the compute node that you want to get information about.
     * @param computeNodeGetOptions Additional parameters for the operation
     * @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 getAsync(String poolId, String nodeId, ComputeNodeGetOptions computeNodeGetOptions, final ServiceCallback<ComputeNode> serviceCallback) throws IllegalArgumentException {
    if (serviceCallback == null) {
        throw new IllegalArgumentException("ServiceCallback is required for async calls.");
    }
    if (poolId == null) {
        serviceCallback.failure(new IllegalArgumentException("Parameter poolId is required and cannot be null."));
        return null;
    }
    if (nodeId == null) {
        serviceCallback.failure(new IllegalArgumentException("Parameter nodeId is required and cannot be null."));
        return null;
    }
    if (this.client.apiVersion() == null) {
        serviceCallback.failure(new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."));
        return null;
    }
    Validator.validate(computeNodeGetOptions, serviceCallback);
    String select = null;
    if (computeNodeGetOptions != null) {
        select = computeNodeGetOptions.select();
    }
    Integer timeout = null;
    if (computeNodeGetOptions != null) {
        timeout = computeNodeGetOptions.timeout();
    }
    String clientRequestId = null;
    if (computeNodeGetOptions != null) {
        clientRequestId = computeNodeGetOptions.clientRequestId();
    }
    Boolean returnClientRequestId = null;
    if (computeNodeGetOptions != null) {
        returnClientRequestId = computeNodeGetOptions.returnClientRequestId();
    }
    DateTime ocpDate = null;
    if (computeNodeGetOptions != null) {
        ocpDate = computeNodeGetOptions.ocpDate();
    }
    DateTimeRfc1123 ocpDateConverted = null;
    if (ocpDate != null) {
        ocpDateConverted = new DateTimeRfc1123(ocpDate);
    }
    Call<ResponseBody> call = service.get(poolId, nodeId, this.client.apiVersion(), this.client.acceptLanguage(), select, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    final ServiceCall serviceCall = new ServiceCall(call);
    call.enqueue(new ServiceResponseCallback<ComputeNode>(serviceCallback) {

        @Override
        public void onResponse(Call<ResponseBody> call, Response<ResponseBody> response) {
            try {
                serviceCallback.success(getDelegate(response));
            } catch (BatchErrorException | IOException exception) {
                serviceCallback.failure(exception);
            }
        }
    });
    return serviceCall;
}
Also used : ComputeNode(com.microsoft.azure.batch.protocol.models.ComputeNode) ServiceCall(com.microsoft.rest.ServiceCall) DateTime(org.joda.time.DateTime) ResponseBody(okhttp3.ResponseBody) DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123)

Aggregations

ComputeNode (com.microsoft.azure.batch.protocol.models.ComputeNode)8 DateTimeRfc1123 (com.microsoft.rest.DateTimeRfc1123)8 ResponseBody (okhttp3.ResponseBody)8 DateTime (org.joda.time.DateTime)8 PagedList (com.microsoft.azure.PagedList)6 ServiceResponseWithHeaders (com.microsoft.rest.ServiceResponseWithHeaders)6 ServiceCall (com.microsoft.rest.ServiceCall)4 List (java.util.List)4 ComputeNodeListNextOptions (com.microsoft.azure.batch.protocol.models.ComputeNodeListNextOptions)3 ComputeNodeListHeaders (com.microsoft.azure.batch.protocol.models.ComputeNodeListHeaders)2 ComputeNodeListOptions (com.microsoft.azure.batch.protocol.models.ComputeNodeListOptions)2 PageImpl (com.microsoft.azure.batch.protocol.models.PageImpl)2 ComputeNodeGetOptions (com.microsoft.azure.batch.protocol.models.ComputeNodeGetOptions)1