class Google::Apis::BigqueryV2::JobList::Job
Attributes
- Full-projection-only
-
Specifies the job configuration.
Corresponds to the JSON property `configuration` @return [Google::Apis::BigqueryV2::JobConfiguration]
A result object that will be present only if the job has failed. Corresponds to the JSON property `errorResult` @return [Google::Apis::BigqueryV2::ErrorProto]
Unique opaque ID of the job. Corresponds to the JSON property `id` @return [String]
Job reference uniquely identifying the job. Corresponds to the JSON property `jobReference` @return [Google::Apis::BigqueryV2::JobReference]
The resource type. Corresponds to the JSON property `kind` @return [String]
Running state of the job. When the state is DONE, errorResult can be checked to determine whether the job succeeded or failed. Corresponds to the JSON property `state` @return [String]
- Output-only
-
Information about the job, including starting time and ending
time of the job. Corresponds to the JSON property `statistics` @return [Google::Apis::BigqueryV2::JobStatistics]
- Full-projection-only
-
Describes the state of the job.
Corresponds to the JSON property `status` @return [Google::Apis::BigqueryV2::JobStatus]
- Full-projection-only
-
Email address of the user who ran the job.
Corresponds to the JSON property `user_email` @return [String]
Public Class Methods
# File generated/google/apis/bigquery_v2/classes.rb, line 1557 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/bigquery_v2/classes.rb, line 1562 def update!(**args) @configuration = args[:configuration] if args.key?(:configuration) @error_result = args[:error_result] if args.key?(:error_result) @id = args[:id] if args.key?(:id) @job_reference = args[:job_reference] if args.key?(:job_reference) @kind = args[:kind] if args.key?(:kind) @state = args[:state] if args.key?(:state) @statistics = args[:statistics] if args.key?(:statistics) @status = args[:status] if args.key?(:status) @user_email = args[:user_email] if args.key?(:user_email) end