Share via


DeidentificationClient.CancelJob Method

Definition

Overloads

CancelJob(String, RequestContext)

[Protocol Method] Cancels a job that is in progress.

The job will be marked as canceled and the service will stop processing the job. The service will not delete any documents that have already been processed.

If the job is already complete, this will have no effect.

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
CancelJob(String, CancellationToken)

Cancels a job that is in progress.

The job will be marked as canceled and the service will stop processing the job. The service will not delete any documents that have already been processed.

If the job is already complete, this will have no effect.

CancelJob(String, RequestContext)

Source:
DeidentificationClient.cs
Source:
DeidentificationClient.cs

[Protocol Method] Cancels a job that is in progress.

The job will be marked as canceled and the service will stop processing the job. The service will not delete any documents that have already been processed.

If the job is already complete, this will have no effect.

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual Azure.Response CancelJob(string jobName, Azure.RequestContext context);
abstract member CancelJob : string * Azure.RequestContext -> Azure.Response
override this.CancelJob : string * Azure.RequestContext -> Azure.Response
Public Overridable Function CancelJob (jobName As String, context As RequestContext) As Response

Parameters

jobName
String

The name of a job.

context
RequestContext

The request options, which can override default behaviors of the client pipeline on a per-call basis.

Returns

The response returned from the service.

Exceptions

jobName is null.

jobName is an empty string, and was expected to be non-empty.

Service returned a non-success status code.

Examples

This sample shows how to call CancelJob and parse the result.

Uri endpoint = new Uri("<endpoint>");
TokenCredential credential = new DefaultAzureCredential();
DeidentificationClient client = new DeidentificationClient(endpoint, credential);

Response response = client.CancelJob("job_smith_documents_1", null);

JsonElement result = JsonDocument.Parse(response.ContentStream).RootElement;
Console.WriteLine(result.GetProperty("name").ToString());
Console.WriteLine(result.GetProperty("sourceLocation").GetProperty("___location").ToString());
Console.WriteLine(result.GetProperty("sourceLocation").GetProperty("prefix").ToString());
Console.WriteLine(result.GetProperty("targetLocation").GetProperty("___location").ToString());
Console.WriteLine(result.GetProperty("targetLocation").GetProperty("prefix").ToString());
Console.WriteLine(result.GetProperty("status").ToString());
Console.WriteLine(result.GetProperty("lastUpdatedAt").ToString());
Console.WriteLine(result.GetProperty("createdAt").ToString());

Applies to

CancelJob(String, CancellationToken)

Source:
DeidentificationClient.cs
Source:
DeidentificationClient.cs

Cancels a job that is in progress.

The job will be marked as canceled and the service will stop processing the job. The service will not delete any documents that have already been processed.

If the job is already complete, this will have no effect.

public virtual Azure.Response<Azure.Health.Deidentification.DeidentificationJob> CancelJob(string jobName, System.Threading.CancellationToken cancellationToken = default);
abstract member CancelJob : string * System.Threading.CancellationToken -> Azure.Response<Azure.Health.Deidentification.DeidentificationJob>
override this.CancelJob : string * System.Threading.CancellationToken -> Azure.Response<Azure.Health.Deidentification.DeidentificationJob>
Public Overridable Function CancelJob (jobName As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of DeidentificationJob)

Parameters

jobName
String

The name of a job.

cancellationToken
CancellationToken

The cancellation token that can be used to cancel the operation.

Returns

Exceptions

jobName is null.

jobName is an empty string, and was expected to be non-empty.

Service returned a non-success status code.

Examples

This sample shows how to call CancelJob.

Uri endpoint = new Uri("<endpoint>");
TokenCredential credential = new DefaultAzureCredential();
DeidentificationClient client = new DeidentificationClient(endpoint, credential);

Response<DeidentificationJob> response = client.CancelJob("job_smith_documents_1");

Remarks

Cancels a job that is in progress.

The job will be marked as canceled and the service will stop processing the job. The service will not delete any documents that have already been processed.

If the job is already complete, this will have no effect.

Applies to