class Google::Apis::BigqueryV2::JobList::Job

Attributes

configuration[RW]
Full-projection-only

Specifies the job configuration.

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

error_result[RW]

A result object that will be present only if the job has failed. Corresponds to the JSON property `errorResult` @return [Google::Apis::BigqueryV2::ErrorProto]

id[RW]

Unique opaque ID of the job. Corresponds to the JSON property `id` @return [String]

job_reference[RW]

Job reference uniquely identifying the job. Corresponds to the JSON property `jobReference` @return [Google::Apis::BigqueryV2::JobReference]

kind[RW]

The resource type. Corresponds to the JSON property `kind` @return [String]

state[RW]

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]

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]
Full-projection-only

Describes the state of the job.

Corresponds to the JSON property `status` @return [Google::Apis::BigqueryV2::JobStatus]

user_email[RW]
Full-projection-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 generated/google/apis/bigquery_v2/classes.rb, line 1557
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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