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.
Constructor Details
#initialize(**args) ⇒ ListModelsResponse
Returns a new instance of ListModelsResponse.
4104 4105 4106 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4104 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
4097 4098 4099 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4097 def models @models end |
#next_page_token ⇒ String
A token to request the next page of results.
Corresponds to the JSON property nextPageToken
4102 4103 4104 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4102 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4109 4110 4111 4112 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4109 def update!(**args) @models = args[:models] if args.key?(:models) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |