class Google::Apis::BigqueryV2::JobStatus

Attributes

error_result[RW]
Output-only

Final error result of the job. If present, indicates that the

job has completed and was unsuccessful. Corresponds to the JSON property `errorResult` @return [Google::Apis::BigqueryV2::ErrorProto]

errors[RW]
Output-only

All errors encountered during the running of the job. Errors

here do not necessarily mean that the job has completed or was unsuccessful. Corresponds to the JSON property `errors` @return [Array<Google::Apis::BigqueryV2::ErrorProto>]

state[RW]
Output-only

Running state of the job.

Corresponds to the JSON property `state` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/bigquery_v2/classes.rb, line 1796
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/bigquery_v2/classes.rb, line 1801
def update!(**args)
  @error_result = args[:error_result] if args.key?(:error_result)
  @errors = args[:errors] if args.key?(:errors)
  @state = args[:state] if args.key?(:state)
end