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
-
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 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 lib/google/apis/bigquery_v2/classes.rb, line 4357 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/bigquery_v2/classes.rb, line 4362 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