Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ListModelsResponse
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ListModelsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
Response message for ModelService.ListModels
Instance Attribute Summary collapse
-
#models ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Model>
List of Models in the requested page.
-
#next_page_token ⇒ String
A token to retrieve next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1ListModelsResponse
constructor
A new instance of GoogleCloudAiplatformV1ListModelsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1ListModelsResponse
Returns a new instance of GoogleCloudAiplatformV1ListModelsResponse.
13001 13002 13003 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13001 def initialize(**args) update!(**args) end |
Instance Attribute Details
#models ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Model>
List of Models in the requested page.
Corresponds to the JSON property models
12993 12994 12995 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 12993 def models @models end |
#next_page_token ⇒ String
A token to retrieve next page of results. Pass to ListModelsRequest.page_token
to obtain that page.
Corresponds to the JSON property nextPageToken
12999 13000 13001 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 12999 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13006 13007 13008 13009 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13006 def update!(**args) @models = args[:models] if args.key?(:models) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |