Class: Google::Apis::BigqueryV2::DatasetList

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

Defined Under Namespace

Classes: Dataset

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DatasetList

Returns a new instance of DatasetList.



1601
1602
1603
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1601

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

Instance Attribute Details

#datasetsArray<Google::Apis::BigqueryV2::DatasetList::Dataset>

An array of the dataset resources in the project. Each resource contains basic information. For full information about a particular dataset resource, use the Datasets: get method. This property is omitted when there are no datasets in the project. Corresponds to the JSON property datasets



1582
1583
1584
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1582

def datasets
  @datasets
end

#etagString

A hash value of the results page. You can use this property to determine if the page has changed since the last request. Corresponds to the JSON property etag

Returns:

  • (String)


1588
1589
1590
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1588

def etag
  @etag
end

#kindString

The list type. This property always returns the value "bigquery#datasetList". Corresponds to the JSON property kind

Returns:

  • (String)


1593
1594
1595
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1593

def kind
  @kind
end

#next_page_tokenString

A token that can be used to request the next results page. This property is omitted on the final results page. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1599
1600
1601
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1599

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1606
1607
1608
1609
1610
1611
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1606

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