class Google::Apis::BigqueryV2::DatasetList

Attributes

datasets[RW]

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>]

etag[RW]

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]

kind[RW]

The list type. This property always returns the value “bigquery#datasetList”. Corresponds to the JSON property `kind` @return [String]

next_page_token[RW]

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

new(**args) click to toggle source
# File generated/google/apis/bigquery_v2/classes.rb, line 456
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/bigquery_v2/classes.rb, line 461
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