Search in sources :

Example 1 with JobTerminateParameter

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

the class JobsImpl method terminateAsync.

/**
     * Terminates the specified job, marking it as completed.
     *
     * @param jobId The id of the job to terminate.
     * @param terminateReason The text you want to appear as the job's TerminateReason. The default is 'UserTerminate'.
     * @param jobTerminateOptions 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 terminateAsync(String jobId, String terminateReason, JobTerminateOptions jobTerminateOptions, 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 (this.client.apiVersion() == null) {
        serviceCallback.failure(new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."));
        return null;
    }
    Validator.validate(jobTerminateOptions, serviceCallback);
    Integer timeout = null;
    if (jobTerminateOptions != null) {
        timeout = jobTerminateOptions.timeout();
    }
    String clientRequestId = null;
    if (jobTerminateOptions != null) {
        clientRequestId = jobTerminateOptions.clientRequestId();
    }
    Boolean returnClientRequestId = null;
    if (jobTerminateOptions != null) {
        returnClientRequestId = jobTerminateOptions.returnClientRequestId();
    }
    DateTime ocpDate = null;
    if (jobTerminateOptions != null) {
        ocpDate = jobTerminateOptions.ocpDate();
    }
    String ifMatch = null;
    if (jobTerminateOptions != null) {
        ifMatch = jobTerminateOptions.ifMatch();
    }
    String ifNoneMatch = null;
    if (jobTerminateOptions != null) {
        ifNoneMatch = jobTerminateOptions.ifNoneMatch();
    }
    DateTime ifModifiedSince = null;
    if (jobTerminateOptions != null) {
        ifModifiedSince = jobTerminateOptions.ifModifiedSince();
    }
    DateTime ifUnmodifiedSince = null;
    if (jobTerminateOptions != null) {
        ifUnmodifiedSince = jobTerminateOptions.ifUnmodifiedSince();
    }
    JobTerminateParameter jobTerminateParameter = null;
    if (terminateReason != null) {
        jobTerminateParameter = new JobTerminateParameter();
        jobTerminateParameter.withTerminateReason(terminateReason);
    }
    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.terminate(jobId, this.client.apiVersion(), this.client.acceptLanguage(), timeout, clientRequestId, returnClientRequestId, ocpDateConverted, ifMatch, ifNoneMatch, ifModifiedSinceConverted, ifUnmodifiedSinceConverted, jobTerminateParameter, 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(terminateDelegate(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) DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123) JobTerminateParameter(com.microsoft.azure.batch.protocol.models.JobTerminateParameter)

Example 2 with JobTerminateParameter

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

the class JobsImpl method terminate.

/**
     * Terminates the specified job, marking it as completed.
     *
     * @param jobId The id of the job to terminate.
     * @param terminateReason The text you want to appear as the job's TerminateReason. The default is 'UserTerminate'.
     * @param jobTerminateOptions 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 {@link ServiceResponseWithHeaders} object if successful.
     */
public ServiceResponseWithHeaders<Void, JobTerminateHeaders> terminate(String jobId, String terminateReason, JobTerminateOptions jobTerminateOptions) throws BatchErrorException, IOException, IllegalArgumentException {
    if (jobId == null) {
        throw new IllegalArgumentException("Parameter jobId 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(jobTerminateOptions);
    Integer timeout = null;
    if (jobTerminateOptions != null) {
        timeout = jobTerminateOptions.timeout();
    }
    String clientRequestId = null;
    if (jobTerminateOptions != null) {
        clientRequestId = jobTerminateOptions.clientRequestId();
    }
    Boolean returnClientRequestId = null;
    if (jobTerminateOptions != null) {
        returnClientRequestId = jobTerminateOptions.returnClientRequestId();
    }
    DateTime ocpDate = null;
    if (jobTerminateOptions != null) {
        ocpDate = jobTerminateOptions.ocpDate();
    }
    String ifMatch = null;
    if (jobTerminateOptions != null) {
        ifMatch = jobTerminateOptions.ifMatch();
    }
    String ifNoneMatch = null;
    if (jobTerminateOptions != null) {
        ifNoneMatch = jobTerminateOptions.ifNoneMatch();
    }
    DateTime ifModifiedSince = null;
    if (jobTerminateOptions != null) {
        ifModifiedSince = jobTerminateOptions.ifModifiedSince();
    }
    DateTime ifUnmodifiedSince = null;
    if (jobTerminateOptions != null) {
        ifUnmodifiedSince = jobTerminateOptions.ifUnmodifiedSince();
    }
    JobTerminateParameter jobTerminateParameter = null;
    if (terminateReason != null) {
        jobTerminateParameter = new JobTerminateParameter();
        jobTerminateParameter.withTerminateReason(terminateReason);
    }
    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.terminate(jobId, this.client.apiVersion(), this.client.acceptLanguage(), timeout, clientRequestId, returnClientRequestId, ocpDateConverted, ifMatch, ifNoneMatch, ifModifiedSinceConverted, ifUnmodifiedSinceConverted, jobTerminateParameter, this.client.userAgent());
    return terminateDelegate(call.execute());
}
Also used : DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123) JobTerminateParameter(com.microsoft.azure.batch.protocol.models.JobTerminateParameter) DateTime(org.joda.time.DateTime) ResponseBody(okhttp3.ResponseBody)

Example 3 with JobTerminateParameter

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

the class JobsImpl method terminateAsync.

/**
     * Terminates the specified job, marking it as completed.
     *
     * @param jobId The id of the job to terminate.
     * @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 terminateAsync(String jobId, 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 (this.client.apiVersion() == null) {
        serviceCallback.failure(new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."));
        return null;
    }
    final String terminateReason = null;
    final JobTerminateOptions jobTerminateOptions = 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;
    JobTerminateParameter jobTerminateParameter = new JobTerminateParameter();
    jobTerminateParameter.withTerminateReason(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.terminate(jobId, this.client.apiVersion(), this.client.acceptLanguage(), timeout, clientRequestId, returnClientRequestId, ocpDateConverted, ifMatch, ifNoneMatch, ifModifiedSinceConverted, ifUnmodifiedSinceConverted, jobTerminateParameter, 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(terminateDelegate(response));
            } catch (BatchErrorException | IOException exception) {
                serviceCallback.failure(exception);
            }
        }
    });
    return serviceCall;
}
Also used : ServiceCall(com.microsoft.rest.ServiceCall) JobTerminateOptions(com.microsoft.azure.batch.protocol.models.JobTerminateOptions) DateTime(org.joda.time.DateTime) ResponseBody(okhttp3.ResponseBody) DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123) JobTerminateParameter(com.microsoft.azure.batch.protocol.models.JobTerminateParameter)

Example 4 with JobTerminateParameter

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

the class JobsImpl method terminate.

/**
     * Terminates the specified job, marking it as completed.
     *
     * @param jobId The id of the job to terminate.
     * @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, JobTerminateHeaders> terminate(String jobId) throws BatchErrorException, IOException, IllegalArgumentException {
    if (jobId == null) {
        throw new IllegalArgumentException("Parameter jobId 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 String terminateReason = null;
    final JobTerminateOptions jobTerminateOptions = 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;
    JobTerminateParameter jobTerminateParameter = new JobTerminateParameter();
    jobTerminateParameter.withTerminateReason(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.terminate(jobId, this.client.apiVersion(), this.client.acceptLanguage(), timeout, clientRequestId, returnClientRequestId, ocpDateConverted, ifMatch, ifNoneMatch, ifModifiedSinceConverted, ifUnmodifiedSinceConverted, jobTerminateParameter, this.client.userAgent());
    return terminateDelegate(call.execute());
}
Also used : DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123) JobTerminateParameter(com.microsoft.azure.batch.protocol.models.JobTerminateParameter) JobTerminateOptions(com.microsoft.azure.batch.protocol.models.JobTerminateOptions) DateTime(org.joda.time.DateTime) ResponseBody(okhttp3.ResponseBody)

Aggregations

JobTerminateParameter (com.microsoft.azure.batch.protocol.models.JobTerminateParameter)4 DateTimeRfc1123 (com.microsoft.rest.DateTimeRfc1123)4 ResponseBody (okhttp3.ResponseBody)4 DateTime (org.joda.time.DateTime)4 JobTerminateOptions (com.microsoft.azure.batch.protocol.models.JobTerminateOptions)2 ServiceCall (com.microsoft.rest.ServiceCall)2