Package com.pulumi.gcp.bigquery.outputs
Class JobStatus
- java.lang.Object
-
- com.pulumi.gcp.bigquery.outputs.JobStatus
-
public final class JobStatus extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
JobStatus.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static JobStatus.Builder
builder()
static JobStatus.Builder
builder(JobStatus defaults)
java.util.List<JobStatusErrorResult>
errorResults()
java.util.List<JobStatusError>
errors()
java.util.Optional<java.lang.String>
state()
-
-
-
Method Detail
-
errorResults
public java.util.List<JobStatusErrorResult> errorResults()
- Returns:
- (Output) Final error result of the job. If present, indicates that the job has completed and was unsuccessful. Structure is documented below.
-
errors
public java.util.List<JobStatusError> errors()
- Returns:
- (Output) The first errors encountered during the running of the job. The final message includes the number of errors that caused the process to stop. Errors here do not necessarily mean that the job has not completed or was unsuccessful. Structure is documented below.
-
state
public java.util.Optional<java.lang.String> state()
- Returns:
- (Output) Running state of the job. Valid states include 'PENDING', 'RUNNING', and 'DONE'.
-
builder
public static JobStatus.Builder builder()
-
builder
public static JobStatus.Builder builder(JobStatus defaults)
-
-