次の方法で共有


DeidentificationClient.CancelJobAsync Method

Definition

Overloads

CancelJobAsync(String, RequestContext)

[Protocol Method] Cancel a de-identification job.

CancelJobAsync(String, CancellationToken)

Cancel a de-identification job.

CancelJobAsync(String, RequestContext)

Source:
DeidentificationClient.cs
Source:
DeidentificationClient.cs

[Protocol Method] Cancel a de-identification job.

public virtual System.Threading.Tasks.Task<Azure.Response> CancelJobAsync(string jobName, Azure.RequestContext context);
public virtual System.Threading.Tasks.Task<Azure.Response> CancelJobAsync(string name, Azure.RequestContext context);
abstract member CancelJobAsync : string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.CancelJobAsync : string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
abstract member CancelJobAsync : string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.CancelJobAsync : string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function CancelJobAsync (jobName As String, context As RequestContext) As Task(Of Response)
Public Overridable Function CancelJobAsync (name As String, context As RequestContext) As Task(Of Response)

Parameters

jobNamename
String

The name of a job.

context
RequestContext

The request context, 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 CancelJobAsync and parse the result.

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

Response response = await client.CancelJobAsync("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

CancelJobAsync(String, CancellationToken)

Source:
DeidentificationClient.cs
Source:
DeidentificationClient.cs

Cancel a de-identification job.

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

Parameters

jobNamename
String

The name of a job.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

jobName is null.

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

Examples

This sample shows how to call CancelJobAsync.

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

Response<DeidentificationJob> response = await client.CancelJobAsync("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