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

Defined Under Namespace

Classes: Job

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ JobList

Returns a new instance of JobList.



4413
4414
4415
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4413

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)


4396
4397
4398
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4396

def etag
  @etag
end

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

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



4401
4402
4403
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4401

def jobs
  @jobs
end

#kindString

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

Returns:

  • (String)


4406
4407
4408
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4406

def kind
  @kind
end

#next_page_tokenString

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

Returns:

  • (String)


4411
4412
4413
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4411

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4418
4419
4420
4421
4422
4423
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4418

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)
end