class Google::Apis::BigqueryV2::DatasetList
Attributes
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` @return [Array<Google::Apis::BigqueryV2::DatasetList::Dataset>]
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` @return [String]
The list type. This property always returns the value “bigquery#datasetList”. Corresponds to the JSON property `kind` @return [String]
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` @return [String]
Public Class Methods
# File lib/google/apis/bigquery_v2/classes.rb, line 1813 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/bigquery_v2/classes.rb, line 1818 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