Class: Google::Apis::BigqueryV2::Job

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Job

Returns a new instance of Job



1202
1203
1204
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1202

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#configurationGoogle::Apis::BigqueryV2::JobConfiguration

[Required] Describes the job configuration. Corresponds to the JSON property configuration



1158
1159
1160
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1158

def configuration
  @configuration
end

#etagString

[Output-only] A hash of this resource. Corresponds to the JSON property etag

Returns:

  • (String)


1163
1164
1165
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1163

def etag
  @etag
end

#idString

[Output-only] Opaque ID field of the job Corresponds to the JSON property id

Returns:

  • (String)


1168
1169
1170
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1168

def id
  @id
end

#job_referenceGoogle::Apis::BigqueryV2::JobReference

[Optional] Reference describing the unique-per-user name of the job. Corresponds to the JSON property jobReference



1173
1174
1175
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1173

def job_reference
  @job_reference
end

#kindString

[Output-only] The type of the resource. Corresponds to the JSON property kind

Returns:

  • (String)


1178
1179
1180
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1178

def kind
  @kind
end

[Output-only] A URL that can be used to access this resource again. Corresponds to the JSON property selfLink

Returns:

  • (String)


1183
1184
1185
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1183

def self_link
  @self_link
end

#statisticsGoogle::Apis::BigqueryV2::JobStatistics

[Output-only] Information about the job, including starting time and ending time of the job. Corresponds to the JSON property statistics



1189
1190
1191
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1189

def statistics
  @statistics
end

#statusGoogle::Apis::BigqueryV2::JobStatus

[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



1195
1196
1197
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1195

def status
  @status
end

#user_emailString

[Output-only] Email address of the user who ran the job. Corresponds to the JSON property user_email

Returns:

  • (String)


1200
1201
1202
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1200

def user_email
  @user_email
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1207

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