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.
11599 11600 11601 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 11599 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
11591 11592 11593 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 11591 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
11597 11598 11599 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 11597 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11604 11605 11606 11607 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 11604 def update!(**args) @models = args[:models] if args.key?(:models) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |