class Google::Apis::BigqueryV2::Job

Attributes

configuration[RW]
Required

Describes the job configuration.

Corresponds to the JSON property `configuration` @return [Google::Apis::BigqueryV2::JobConfiguration]

etag[RW]
Output-only

A hash of this resource.

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

id[RW]
Output-only

Opaque ID field of the job

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

job_reference[RW]
Optional

Reference describing the unique-per-user name of the job.

Corresponds to the JSON property `jobReference` @return [Google::Apis::BigqueryV2::JobReference]

kind[RW]
Output-only

The type of the resource.

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

statistics[RW]
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]

status[RW]
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]

user_email[RW]
Output-only

Email address of the user who ran the job.

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

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 2928
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 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