你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

DeidentificationClient.GetJob Method

Definition

Overloads

GetJob(String, RequestContext)

[Protocol Method] Get a de-identification job.

GetJob(String, CancellationToken)

Get a de-identification job.

GetJob(String, RequestContext)

Source:
DeidentificationClient.cs
Source:
DeidentificationClient.cs

[Protocol Method] Get a de-identification job.

public virtual Azure.Response GetJob(string jobName, Azure.RequestContext context);
public virtual Azure.Response GetJob(string name, Azure.RequestContext context);
abstract member GetJob : string * Azure.RequestContext -> Azure.Response
override this.GetJob : string * Azure.RequestContext -> Azure.Response
abstract member GetJob : string * Azure.RequestContext -> Azure.Response
override this.GetJob : string * Azure.RequestContext -> Azure.Response
Public Overridable Function GetJob (jobName As String, context As RequestContext) As Response
Public Overridable Function GetJob (name As String, context As RequestContext) As 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 GetJob and parse the result.

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

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

GetJob(String, CancellationToken)

Source:
DeidentificationClient.cs
Source:
DeidentificationClient.cs

Get a de-identification job.

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

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

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

Remarks

Resource read operation template.

Applies to