Search in sources :

Example 1 with TaskUpdateOptions

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

the class TasksImpl method updateAsync.

/**
     * Updates the properties of the specified task.
     *
     * @param jobId The id of the job containing the task.
     * @param taskId The id of the task to update.
     * @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 updateAsync(String jobId, String taskId, final ServiceCallback<Void> serviceCallback) throws IllegalArgumentException {
    if (serviceCallback == null) {
        throw new IllegalArgumentException("ServiceCallback is required for async calls.");
    }
    if (jobId == null) {
        serviceCallback.failure(new IllegalArgumentException("Parameter jobId is required and cannot be null."));
        return null;
    }
    if (taskId == null) {
        serviceCallback.failure(new IllegalArgumentException("Parameter taskId 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 TaskConstraints constraints = null;
    final TaskUpdateOptions taskUpdateOptions = null;
    Integer timeout = null;
    String clientRequestId = null;
    Boolean returnClientRequestId = null;
    DateTime ocpDate = null;
    String ifMatch = null;
    String ifNoneMatch = null;
    DateTime ifModifiedSince = null;
    DateTime ifUnmodifiedSince = null;
    TaskUpdateParameter taskUpdateParameter = new TaskUpdateParameter();
    taskUpdateParameter.withConstraints(null);
    DateTimeRfc1123 ocpDateConverted = null;
    if (ocpDate != null) {
        ocpDateConverted = new DateTimeRfc1123(ocpDate);
    }
    DateTimeRfc1123 ifModifiedSinceConverted = null;
    if (ifModifiedSince != null) {
        ifModifiedSinceConverted = new DateTimeRfc1123(ifModifiedSince);
    }
    DateTimeRfc1123 ifUnmodifiedSinceConverted = null;
    if (ifUnmodifiedSince != null) {
        ifUnmodifiedSinceConverted = new DateTimeRfc1123(ifUnmodifiedSince);
    }
    Call<ResponseBody> call = service.update(jobId, taskId, this.client.apiVersion(), this.client.acceptLanguage(), timeout, clientRequestId, returnClientRequestId, ocpDateConverted, ifMatch, ifNoneMatch, ifModifiedSinceConverted, ifUnmodifiedSinceConverted, taskUpdateParameter, this.client.userAgent());
    final ServiceCall serviceCall = new ServiceCall(call);
    call.enqueue(new ServiceResponseCallback<Void>(serviceCallback) {

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

Example 2 with TaskUpdateOptions

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

the class TasksImpl method update.

/**
     * Updates the properties of the specified task.
     *
     * @param jobId The id of the job containing the task.
     * @param taskId The id of the task to update.
     * @throws BatchErrorException exception thrown from REST call
     * @throws IOException exception thrown from serialization/deserialization
     * @throws IllegalArgumentException exception thrown from invalid parameters
     * @return the {@link ServiceResponseWithHeaders} object if successful.
     */
public ServiceResponseWithHeaders<Void, TaskUpdateHeaders> update(String jobId, 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 TaskConstraints constraints = null;
    final TaskUpdateOptions taskUpdateOptions = null;
    Integer timeout = null;
    String clientRequestId = null;
    Boolean returnClientRequestId = null;
    DateTime ocpDate = null;
    String ifMatch = null;
    String ifNoneMatch = null;
    DateTime ifModifiedSince = null;
    DateTime ifUnmodifiedSince = null;
    TaskUpdateParameter taskUpdateParameter = new TaskUpdateParameter();
    taskUpdateParameter.withConstraints(null);
    DateTimeRfc1123 ocpDateConverted = null;
    if (ocpDate != null) {
        ocpDateConverted = new DateTimeRfc1123(ocpDate);
    }
    DateTimeRfc1123 ifModifiedSinceConverted = null;
    if (ifModifiedSince != null) {
        ifModifiedSinceConverted = new DateTimeRfc1123(ifModifiedSince);
    }
    DateTimeRfc1123 ifUnmodifiedSinceConverted = null;
    if (ifUnmodifiedSince != null) {
        ifUnmodifiedSinceConverted = new DateTimeRfc1123(ifUnmodifiedSince);
    }
    Call<ResponseBody> call = service.update(jobId, taskId, this.client.apiVersion(), this.client.acceptLanguage(), timeout, clientRequestId, returnClientRequestId, ocpDateConverted, ifMatch, ifNoneMatch, ifModifiedSinceConverted, ifUnmodifiedSinceConverted, taskUpdateParameter, this.client.userAgent());
    return updateDelegate(call.execute());
}
Also used : TaskUpdateOptions(com.microsoft.azure.batch.protocol.models.TaskUpdateOptions) DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123) TaskConstraints(com.microsoft.azure.batch.protocol.models.TaskConstraints) TaskUpdateParameter(com.microsoft.azure.batch.protocol.models.TaskUpdateParameter) DateTime(org.joda.time.DateTime) ResponseBody(okhttp3.ResponseBody)

Aggregations

TaskConstraints (com.microsoft.azure.batch.protocol.models.TaskConstraints)2 TaskUpdateOptions (com.microsoft.azure.batch.protocol.models.TaskUpdateOptions)2 TaskUpdateParameter (com.microsoft.azure.batch.protocol.models.TaskUpdateParameter)2 DateTimeRfc1123 (com.microsoft.rest.DateTimeRfc1123)2 ResponseBody (okhttp3.ResponseBody)2 DateTime (org.joda.time.DateTime)2 ServiceCall (com.microsoft.rest.ServiceCall)1