Search in sources :

Example 1 with FileListFromTaskHeaders

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

the class FileOperations method listFilesFromTask.

/**
     * Enumerates the files in the specified task's directory on its compute node.
     *
     * @param jobId The ID of the job.
     * @param taskId The ID of the task.
     * @param recursive If true, performs a recursive list of all files of the task. If false, returns only the files in the root task 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> listFilesFromTask(String jobId, String taskId, Boolean recursive, DetailLevel detailLevel, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {
    FileListFromTaskOptions options = new FileListFromTaskOptions();
    BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors);
    bhMgr.appendDetailLevelToPerCallBehaviors(detailLevel);
    bhMgr.applyRequestBehaviors(options);
    ServiceResponseWithHeaders<PagedList<NodeFile>, FileListFromTaskHeaders> response = this._parentBatchClient.protocolLayer().files().listFromTask(jobId, taskId, recursive, options);
    return response.getBody();
}
Also used : FileListFromTaskHeaders(com.microsoft.azure.batch.protocol.models.FileListFromTaskHeaders) PagedList(com.microsoft.azure.PagedList) FileListFromTaskOptions(com.microsoft.azure.batch.protocol.models.FileListFromTaskOptions)

Example 2 with FileListFromTaskHeaders

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

the class FilesImpl method listFromTask.

/**
     * Lists the files in a task's directory on its compute node.
     *
     * @param jobId The id of the job that contains the task.
     * @param taskId The id of the task whose files you want to list.
     * @param recursive Whether to list children of a directory.
     * @param fileListFromTaskOptions 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;NodeFile&gt; object wrapped in {@link ServiceResponseWithHeaders} if successful.
     */
public ServiceResponseWithHeaders<PagedList<NodeFile>, FileListFromTaskHeaders> listFromTask(final String jobId, final String taskId, final Boolean recursive, final FileListFromTaskOptions fileListFromTaskOptions) throws BatchErrorException, IOException, IllegalArgumentException {
    if (jobId == null) {
        throw new IllegalArgumentException("Parameter jobId is required and cannot be null.");
    }
    if (taskId == null) {
        throw new IllegalArgumentException("Parameter taskId 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(fileListFromTaskOptions);
    String filter = null;
    if (fileListFromTaskOptions != null) {
        filter = fileListFromTaskOptions.filter();
    }
    Integer maxResults = null;
    if (fileListFromTaskOptions != null) {
        maxResults = fileListFromTaskOptions.maxResults();
    }
    Integer timeout = null;
    if (fileListFromTaskOptions != null) {
        timeout = fileListFromTaskOptions.timeout();
    }
    String clientRequestId = null;
    if (fileListFromTaskOptions != null) {
        clientRequestId = fileListFromTaskOptions.clientRequestId();
    }
    Boolean returnClientRequestId = null;
    if (fileListFromTaskOptions != null) {
        returnClientRequestId = fileListFromTaskOptions.returnClientRequestId();
    }
    DateTime ocpDate = null;
    if (fileListFromTaskOptions != null) {
        ocpDate = fileListFromTaskOptions.ocpDate();
    }
    DateTimeRfc1123 ocpDateConverted = null;
    if (ocpDate != null) {
        ocpDateConverted = new DateTimeRfc1123(ocpDate);
    }
    Call<ResponseBody> call = service.listFromTask(jobId, taskId, recursive, this.client.apiVersion(), this.client.acceptLanguage(), filter, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    ServiceResponseWithHeaders<PageImpl<NodeFile>, FileListFromTaskHeaders> response = listFromTaskDelegate(call.execute());
    PagedList<NodeFile> result = new PagedList<NodeFile>(response.getBody()) {

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

Example 3 with FileListFromTaskHeaders

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

the class FilesImpl method listFromTask.

/**
     * Lists the files in a task's directory on its compute node.
     *
     * @param jobId The id of the job that contains the task.
     * @param taskId The id of the task 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>, FileListFromTaskHeaders> listFromTask(final String jobId, final String taskId) throws BatchErrorException, IOException, IllegalArgumentException {
    if (jobId == null) {
        throw new IllegalArgumentException("Parameter jobId is required and cannot be null.");
    }
    if (taskId == null) {
        throw new IllegalArgumentException("Parameter taskId 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 FileListFromTaskOptions fileListFromTaskOptions = 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.listFromTask(jobId, taskId, recursive, this.client.apiVersion(), this.client.acceptLanguage(), filter, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    ServiceResponseWithHeaders<PageImpl<NodeFile>, FileListFromTaskHeaders> response = listFromTaskDelegate(call.execute());
    PagedList<NodeFile> result = new PagedList<NodeFile>(response.getBody()) {

        @Override
        public Page<NodeFile> nextPage(String nextPageLink) throws BatchErrorException, IOException {
            return listFromTaskNext(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) ResponseBody(okhttp3.ResponseBody) FileListFromTaskHeaders(com.microsoft.azure.batch.protocol.models.FileListFromTaskHeaders) DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123) NodeFile(com.microsoft.azure.batch.protocol.models.NodeFile) FileListFromTaskOptions(com.microsoft.azure.batch.protocol.models.FileListFromTaskOptions)

Aggregations

PagedList (com.microsoft.azure.PagedList)3 FileListFromTaskHeaders (com.microsoft.azure.batch.protocol.models.FileListFromTaskHeaders)3 FileListFromTaskOptions (com.microsoft.azure.batch.protocol.models.FileListFromTaskOptions)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 FileListFromTaskNextOptions (com.microsoft.azure.batch.protocol.models.FileListFromTaskNextOptions)1