Class: Google::Apis::BigqueryV2::JobStatus
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::JobStatus
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/bigquery_v2/classes.rb,
generated/google/apis/bigquery_v2/representations.rb,
generated/google/apis/bigquery_v2/representations.rb
Instance Attribute Summary collapse
-
#error_result ⇒ Google::Apis::BigqueryV2::ErrorProto
[Output-only] Final error result of the job.
-
#errors ⇒ Array<Google::Apis::BigqueryV2::ErrorProto>
[Output-only] The first errors encountered during the running of the job.
-
#state ⇒ String
[Output-only] Running state of the job.
Instance Method Summary collapse
-
#initialize(**args) ⇒ JobStatus
constructor
A new instance of JobStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ JobStatus
Returns a new instance of JobStatus
2111 2112 2113 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2111 def initialize(**args) update!(**args) end |
Instance Attribute Details
#error_result ⇒ Google::Apis::BigqueryV2::ErrorProto
[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
2096 2097 2098 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2096 def error_result @error_result end |
#errors ⇒ Array<Google::Apis::BigqueryV2::ErrorProto>
[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
2104 2105 2106 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2104 def errors @errors end |
#state ⇒ String
[Output-only] Running state of the job.
Corresponds to the JSON property state
2109 2110 2111 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2109 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2116 2117 2118 2119 2120 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2116 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 |