Class: Google::Apis::BigqueryV2::JobList

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb

Overview

JobList is the response format for a jobs.list call.

Defined Under Namespace

Classes: Job

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ JobList

Returns a new instance of JobList.



5279
5280
5281
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5279

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

Instance Attribute Details

#etagString

A hash of this page of results. Corresponds to the JSON property etag

Returns:

  • (String)


5255
5256
5257
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5255

def etag
  @etag
end

#jobsArray<Google::Apis::BigqueryV2::JobList::Job>

List of jobs that were requested. Corresponds to the JSON property jobs



5260
5261
5262
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5260

def jobs
  @jobs
end

#kindString

The resource type of the response. Corresponds to the JSON property kind

Returns:

  • (String)


5265
5266
5267
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5265

def kind
  @kind
end

#next_page_tokenString

A token to request the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


5270
5271
5272
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5270

def next_page_token
  @next_page_token
end

#unreachableArray<String>

A list of skipped locations that were unreachable. For more information about BigQuery locations, see: https://cloud.google.com/bigquery/docs/locations. Example: "europe-west5" Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


5277
5278
5279
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5277

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5284
5285
5286
5287
5288
5289
5290
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5284

def update!(**args)
  @etag = args[:etag] if args.key?(:etag)
  @jobs = args[:jobs] if args.key?(:jobs)
  @kind = args[:kind] if args.key?(:kind)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end