Search in sources :

Example 1 with FileListFromComputeNodeHeaders

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

the class FilesImpl method listFromComputeNode.

/**
     * Lists all of the files in task directories on the specified compute node.
     *
     * @param poolId The id of the pool that contains the compute node.
     * @param nodeId The id of the compute node whose files you want to list.
     * @param recursive Whether to list children of a directory.
     * @param fileListFromComputeNodeOptions 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<NodeFile> object wrapped in {@link ServiceResponseWithHeaders} if successful.
     */
public ServiceResponseWithHeaders<PagedList<NodeFile>, FileListFromComputeNodeHeaders> listFromComputeNode(final String poolId, final String nodeId, final Boolean recursive, final FileListFromComputeNodeOptions fileListFromComputeNodeOptions) throws BatchErrorException, IOException, IllegalArgumentException {
    if (poolId == null) {
        throw new IllegalArgumentException("Parameter poolId is required and cannot be null.");
    }
    if (nodeId == null) {
        throw new IllegalArgumentException("Parameter nodeId 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(fileListFromComputeNodeOptions);
    String filter = null;
    if (fileListFromComputeNodeOptions != null) {
        filter = fileListFromComputeNodeOptions.filter();
    }
    Integer maxResults = null;
    if (fileListFromComputeNodeOptions != null) {
        maxResults = fileListFromComputeNodeOptions.maxResults();
    }
    Integer timeout = null;
    if (fileListFromComputeNodeOptions != null) {
        timeout = fileListFromComputeNodeOptions.timeout();
    }
    String clientRequestId = null;
    if (fileListFromComputeNodeOptions != null) {
        clientRequestId = fileListFromComputeNodeOptions.clientRequestId();
    }
    Boolean returnClientRequestId = null;
    if (fileListFromComputeNodeOptions != null) {
        returnClientRequestId = fileListFromComputeNodeOptions.returnClientRequestId();
    }
    DateTime ocpDate = null;
    if (fileListFromComputeNodeOptions != null) {
        ocpDate = fileListFromComputeNodeOptions.ocpDate();
    }
    DateTimeRfc1123 ocpDateConverted = null;
    if (ocpDate != null) {
        ocpDateConverted = new DateTimeRfc1123(ocpDate);
    }
    Call<ResponseBody> call = service.listFromComputeNode(poolId, nodeId, recursive, this.client.apiVersion(), this.client.acceptLanguage(), filter, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    ServiceResponseWithHeaders<PageImpl<NodeFile>, FileListFromComputeNodeHeaders> response = listFromComputeNodeDelegate(call.execute());
    PagedList<NodeFile> result = new PagedList<NodeFile>(response.getBody()) {

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

Example 2 with FileListFromComputeNodeHeaders

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

the class FileOperations method listFilesFromComputeNode.

/**
     * Enumerates files on the specified compute node.
     *
     * @param poolId The ID of the pool that contains the compute node.
     * @param nodeId The ID of the compute node.
     * @param recursive If true, recursively enumerates all files on the compute node. If false, enumerates only the files in the compute node root directory.
     * @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 NodeFile}
     * @throws BatchErrorException Exception thrown from REST call
     * @throws IOException Exception thrown from serialization/deserialization
     */
public List<NodeFile> listFilesFromComputeNode(String poolId, String nodeId, Boolean recursive, DetailLevel detailLevel, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {
    FileListFromComputeNodeOptions options = new FileListFromComputeNodeOptions();
    BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors);
    bhMgr.appendDetailLevelToPerCallBehaviors(detailLevel);
    bhMgr.applyRequestBehaviors(options);
    ServiceResponseWithHeaders<PagedList<NodeFile>, FileListFromComputeNodeHeaders> response = this._parentBatchClient.protocolLayer().files().listFromComputeNode(poolId, nodeId, recursive, options);
    return response.getBody();
}
Also used : PagedList(com.microsoft.azure.PagedList) FileListFromComputeNodeHeaders(com.microsoft.azure.batch.protocol.models.FileListFromComputeNodeHeaders) FileListFromComputeNodeOptions(com.microsoft.azure.batch.protocol.models.FileListFromComputeNodeOptions)

Example 3 with FileListFromComputeNodeHeaders

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

the class FilesImpl method listFromComputeNode.

/**
     * Lists all of the files in task directories on the specified compute node.
     *
     * @param poolId The id of the pool that contains the compute node.
     * @param nodeId The id of the compute node whose files you want to list.
     * @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;NodeFile&gt; object wrapped in {@link ServiceResponseWithHeaders} if successful.
     */
public ServiceResponseWithHeaders<PagedList<NodeFile>, FileListFromComputeNodeHeaders> listFromComputeNode(final String poolId, final String nodeId) throws BatchErrorException, IOException, IllegalArgumentException {
    if (poolId == null) {
        throw new IllegalArgumentException("Parameter poolId is required and cannot be null.");
    }
    if (nodeId == null) {
        throw new IllegalArgumentException("Parameter nodeId 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 Boolean recursive = null;
    final FileListFromComputeNodeOptions fileListFromComputeNodeOptions = 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.listFromComputeNode(poolId, nodeId, recursive, this.client.apiVersion(), this.client.acceptLanguage(), filter, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    ServiceResponseWithHeaders<PageImpl<NodeFile>, FileListFromComputeNodeHeaders> response = listFromComputeNodeDelegate(call.execute());
    PagedList<NodeFile> result = new PagedList<NodeFile>(response.getBody()) {

        @Override
        public Page<NodeFile> nextPage(String nextPageLink) throws BatchErrorException, IOException {
            return listFromComputeNodeNext(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) DateTime(org.joda.time.DateTime) ServiceResponseWithHeaders(com.microsoft.rest.ServiceResponseWithHeaders) FileListFromComputeNodeOptions(com.microsoft.azure.batch.protocol.models.FileListFromComputeNodeOptions) ResponseBody(okhttp3.ResponseBody) FileListFromComputeNodeHeaders(com.microsoft.azure.batch.protocol.models.FileListFromComputeNodeHeaders) DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123) NodeFile(com.microsoft.azure.batch.protocol.models.NodeFile)

Aggregations

PagedList (com.microsoft.azure.PagedList)3 FileListFromComputeNodeHeaders (com.microsoft.azure.batch.protocol.models.FileListFromComputeNodeHeaders)3 FileListFromComputeNodeOptions (com.microsoft.azure.batch.protocol.models.FileListFromComputeNodeOptions)2 NodeFile (com.microsoft.azure.batch.protocol.models.NodeFile)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 FileListFromComputeNodeNextOptions (com.microsoft.azure.batch.protocol.models.FileListFromComputeNodeNextOptions)1