Class: Google::Apis::BigqueryV2::Job
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::Job
- 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
-
#configuration ⇒ Google::Apis::BigqueryV2::JobConfiguration
[Required] Describes the job configuration.
-
#etag ⇒ String
[Output-only] A hash of this resource.
-
#id ⇒ String
[Output-only] Opaque ID field of the job Corresponds to the JSON property
id
. -
#job_reference ⇒ Google::Apis::BigqueryV2::JobReference
[Optional] Reference describing the unique-per-user name of the job.
-
#kind ⇒ String
[Output-only] The type of the resource.
-
#self_link ⇒ String
[Output-only] A URL that can be used to access this resource again.
-
#statistics ⇒ Google::Apis::BigqueryV2::JobStatistics
[Output-only] Information about the job, including starting time and ending time of the job.
-
#status ⇒ Google::Apis::BigqueryV2::JobStatus
[Output-only] The status of this job.
-
#user_email ⇒ String
[Output-only] Email address of the user who ran the job.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Job
constructor
A new instance of Job.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Job
Returns a new instance of Job
1298 1299 1300 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1298 def initialize(**args) update!(**args) end |
Instance Attribute Details
#configuration ⇒ Google::Apis::BigqueryV2::JobConfiguration
[Required] Describes the job configuration.
Corresponds to the JSON property configuration
1254 1255 1256 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1254 def configuration @configuration end |
#etag ⇒ String
[Output-only] A hash of this resource.
Corresponds to the JSON property etag
1259 1260 1261 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1259 def etag @etag end |
#id ⇒ String
[Output-only] Opaque ID field of the job
Corresponds to the JSON property id
1264 1265 1266 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1264 def id @id end |
#job_reference ⇒ Google::Apis::BigqueryV2::JobReference
[Optional] Reference describing the unique-per-user name of the job.
Corresponds to the JSON property jobReference
1269 1270 1271 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1269 def job_reference @job_reference end |
#kind ⇒ String
[Output-only] The type of the resource.
Corresponds to the JSON property kind
1274 1275 1276 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1274 def kind @kind end |
#self_link ⇒ String
[Output-only] A URL that can be used to access this resource again.
Corresponds to the JSON property selfLink
1279 1280 1281 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1279 def self_link @self_link end |
#statistics ⇒ Google::Apis::BigqueryV2::JobStatistics
[Output-only] Information about the job, including starting time and ending
time of the job.
Corresponds to the JSON property statistics
1285 1286 1287 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1285 def statistics @statistics end |
#status ⇒ Google::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
1291 1292 1293 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1291 def status @status end |
#user_email ⇒ String
[Output-only] Email address of the user who ran the job.
Corresponds to the JSON property user_email
1296 1297 1298 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1296 def user_email @user_email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1303 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 |