JobStatus Struct

Definition

Extensible status values shared by Foundry jobs.

public readonly struct JobStatus : IEquatable<Azure.AI.Projects.JobStatus>
type JobStatus = struct
Public Structure JobStatus
Implements IEquatable(Of JobStatus)
Inheritance
JobStatus
Implements

Constructors

Name Description
JobStatus(String)

Initializes a new instance of JobStatus.

Properties

Name Description
Cancelled

Job was cancelled by the caller.

Failed

Job failed.

InProgress

Job is actively processing.

Queued

Job is waiting to start.

Succeeded

Job completed successfully.

Methods

Name Description
Equals(JobStatus)

Indicates whether the current object is equal to another object of the same type.

ToString()

Returns the fully qualified type name of this instance.

Operators

Name Description
Equality(JobStatus, JobStatus)

Determines if two JobStatus values are the same.

Implicit(String to JobStatus)

Converts a string to a JobStatus.

Implicit(String to Nullable<JobStatus>)
Inequality(JobStatus, JobStatus)

Determines if two JobStatus values are not the same.

Applies to