Search in sources :

Example 1 with ComputeNodeListHeaders

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

the class ComputeNodesImpl method list.

/**
     * Lists the compute nodes in the specified pool.
     *
     * @param poolId The id of the pool from which you want to list nodes.
     * @throws BatchErrorException exception thrown from REST call
     * @throws IOException exception thrown from serialization/deserialization
     * @throws IllegalArgumentException exception thrown from invalid parameters
     * @return the List<ComputeNode> object wrapped in {@link ServiceResponseWithHeaders} if successful.
     */
public ServiceResponseWithHeaders<PagedList<ComputeNode>, ComputeNodeListHeaders> list(final String poolId) throws BatchErrorException, IOException, IllegalArgumentException {
    if (poolId == null) {
        throw new IllegalArgumentException("Parameter poolId is required and cannot be null.");
    }
    if (this.client.apiVersion() == null) {
        throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
    }
    final ComputeNodeListOptions computeNodeListOptions = 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(poolId, this.client.apiVersion(), this.client.acceptLanguage(), filter, select, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    ServiceResponseWithHeaders<PageImpl<ComputeNode>, ComputeNodeListHeaders> response = listDelegate(call.execute());
    PagedList<ComputeNode> result = new PagedList<ComputeNode>(response.getBody()) {

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

Example 2 with ComputeNodeListHeaders

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

the class ComputeNodesImpl method list.

/**
     * 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
     * @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;ComputeNode&gt; object wrapped in {@link ServiceResponseWithHeaders} if successful.
     */
public ServiceResponseWithHeaders<PagedList<ComputeNode>, ComputeNodeListHeaders> list(final String poolId, final ComputeNodeListOptions computeNodeListOptions) throws BatchErrorException, IOException, IllegalArgumentException {
    if (poolId == null) {
        throw new IllegalArgumentException("Parameter poolId is required and cannot be null.");
    }
    if (this.client.apiVersion() == null) {
        throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
    }
    Validator.validate(computeNodeListOptions);
    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());
    ServiceResponseWithHeaders<PageImpl<ComputeNode>, ComputeNodeListHeaders> response = listDelegate(call.execute());
    PagedList<ComputeNode> result = new PagedList<ComputeNode>(response.getBody()) {

        @Override
        public Page<ComputeNode> nextPage(String nextPageLink) throws BatchErrorException, IOException {
            ComputeNodeListNextOptions computeNodeListNextOptions = null;
            if (computeNodeListOptions != null) {
                computeNodeListNextOptions = new ComputeNodeListNextOptions();
                computeNodeListNextOptions.withClientRequestId(computeNodeListOptions.clientRequestId());
                computeNodeListNextOptions.withReturnClientRequestId(computeNodeListOptions.returnClientRequestId());
                computeNodeListNextOptions.withOcpDate(computeNodeListOptions.ocpDate());
            }
            return listNext(nextPageLink, computeNodeListNextOptions).getBody();
        }
    };
    return new ServiceResponseWithHeaders<>(result, response.getHeaders(), response.getResponse());
}
Also used : PageImpl(com.microsoft.azure.batch.protocol.models.PageImpl) ComputeNode(com.microsoft.azure.batch.protocol.models.ComputeNode) ComputeNodeListHeaders(com.microsoft.azure.batch.protocol.models.ComputeNodeListHeaders) PagedList(com.microsoft.azure.PagedList) 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)

Aggregations

PagedList (com.microsoft.azure.PagedList)2 ComputeNode (com.microsoft.azure.batch.protocol.models.ComputeNode)2 ComputeNodeListHeaders (com.microsoft.azure.batch.protocol.models.ComputeNodeListHeaders)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 ComputeNodeListNextOptions (com.microsoft.azure.batch.protocol.models.ComputeNodeListNextOptions)1 ComputeNodeListOptions (com.microsoft.azure.batch.protocol.models.ComputeNodeListOptions)1