Class: Google::Apis::BigqueryV2::ListModelsResponse
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::ListModelsResponse
- 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
Instance Attribute Summary collapse
-
#models ⇒ Array<Google::Apis::BigqueryV2::Model>
Models in the requested dataset.
-
#next_page_token ⇒ String
A token to request the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListModelsResponse
constructor
A new instance of ListModelsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListModelsResponse
Returns a new instance of ListModelsResponse
3358 3359 3360 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3358 def initialize(**args) update!(**args) end |
Instance Attribute Details
#models ⇒ Array<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
3351 3352 3353 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3351 def models @models end |
#next_page_token ⇒ String
A token to request the next page of results.
Corresponds to the JSON property nextPageToken
3356 3357 3358 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3356 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3363 3364 3365 3366 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3363 def update!(**args) @models = args[:models] if args.key?(:models) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |