Class: Google::Apis::BigqueryV2::ListModelsResponse

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 single page when listing BigQuery ML models.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListModelsResponse

Returns a new instance of ListModelsResponse.



6194
6195
6196
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6194

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

Instance Attribute Details

#modelsArray<Google::Apis::BigqueryV2::Model>

Models in the requested dataset. Only the following fields are populated: model_reference, model_type, creation_time, last_modified_time and labels. Corresponds to the JSON property models



6187
6188
6189
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6187

def models
  @models
end

#next_page_tokenString

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

Returns:

  • (String)


6192
6193
6194
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6192

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6199
6200
6201
6202
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6199

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