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

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

Response format for a page of results when listing datasets.

Defined Under Namespace

Classes: Dataset

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DatasetList

Returns a new instance of DatasetList.



2173
2174
2175
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2173

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



2146
2147
2148
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2146

def datasets
  @datasets
end

#etagString

Output only. 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)


2152
2153
2154
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2152

def etag
  @etag
end

#kindString

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

Returns:

  • (String)


2158
2159
2160
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2158

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)


2164
2165
2166
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2164

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


2171
2172
2173
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2171

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2178
2179
2180
2181
2182
2183
2184
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2178

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)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end