class Google::Apis::BigqueryV2::Job
Attributes
- Required
-
Describes the job configuration.
Corresponds to the JSON property `configuration` @return [Google::Apis::BigqueryV2::JobConfiguration]
- Output-only
-
A hash of this resource.
Corresponds to the JSON property `etag` @return [String]
- Output-only
-
Opaque ID field of the job
Corresponds to the JSON property `id` @return [String]
- Optional
-
Reference describing the unique-per-user name of the job.
Corresponds to the JSON property `jobReference` @return [Google::Apis::BigqueryV2::JobReference]
- Output-only
-
The type of the resource.
Corresponds to the JSON property `kind` @return [String]
- Output-only
-
A URL that can be used to access this resource again.
Corresponds to the JSON property `selfLink` @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]
- Output-only
-
The status of this job. Examine this value when polling an
asynchronous job to see if the job is complete. Corresponds to the JSON property `status` @return [Google::Apis::BigqueryV2::JobStatus]
- Output-only
-
Email address of the user who ran the job.
Corresponds to the JSON property `user_email` @return [String]
Public Class Methods
# File lib/google/apis/bigquery_v2/classes.rb, line 2928 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/bigquery_v2/classes.rb, line 2933 def update!(**args) @configuration = args[:configuration] if args.key?(:configuration) @etag = args[:etag] if args.key?(:etag) @id = args[:id] if args.key?(:id) @job_reference = args[:job_reference] if args.key?(:job_reference) @kind = args[:kind] if args.key?(:kind) @self_link = args[:self_link] if args.key?(:self_link) @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