Class: Google::Apis::MlV1::GoogleCloudMlV1ListModelsResponse
- Inherits:
-
Object
- Object
- Google::Apis::MlV1::GoogleCloudMlV1ListModelsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/ml_v1/classes.rb,
generated/google/apis/ml_v1/representations.rb,
generated/google/apis/ml_v1/representations.rb
Overview
Response message for the ListModels method.
Instance Attribute Summary collapse
-
#models ⇒ Array<Google::Apis::MlV1::GoogleCloudMlV1Model>
The list of models.
-
#next_page_token ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudMlV1ListModelsResponse
constructor
A new instance of GoogleCloudMlV1ListModelsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudMlV1ListModelsResponse
Returns a new instance of GoogleCloudMlV1ListModelsResponse.
1507 1508 1509 |
# File 'generated/google/apis/ml_v1/classes.rb', line 1507 def initialize(**args) update!(**args) end |
Instance Attribute Details
#models ⇒ Array<Google::Apis::MlV1::GoogleCloudMlV1Model>
The list of models.
Corresponds to the JSON property models
1499 1500 1501 |
# File 'generated/google/apis/ml_v1/classes.rb', line 1499 def models @models end |
#next_page_token ⇒ String
Optional. Pass this token as the page_token
field of the request for a
subsequent call.
Corresponds to the JSON property nextPageToken
1505 1506 1507 |
# File 'generated/google/apis/ml_v1/classes.rb', line 1505 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1512 1513 1514 1515 |
# File 'generated/google/apis/ml_v1/classes.rb', line 1512 def update!(**args) @models = args[:models] if args.key?(:models) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |