Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1QueryDeployedModelsResponse
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1QueryDeployedModelsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
Response message for QueryDeployedModels method.
Instance Attribute Summary collapse
-
#deployed_model_refs ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeployedModelRef>
References to the DeployedModels that share the specified deploymentResourcePool.
-
#deployed_models ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeployedModel>
DEPRECATED Use deployed_model_refs instead.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page. -
#total_deployed_model_count ⇒ Fixnum
The total number of DeployedModels on this DeploymentResourcePool.
-
#total_endpoint_count ⇒ Fixnum
The total number of Endpoints that have DeployedModels on this DeploymentResourcePool.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1QueryDeployedModelsResponse
constructor
A new instance of GoogleCloudAiplatformV1beta1QueryDeployedModelsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1QueryDeployedModelsResponse
Returns a new instance of GoogleCloudAiplatformV1beta1QueryDeployedModelsResponse.
16083 16084 16085 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16083 def initialize(**args) update!(**args) end |
Instance Attribute Details
#deployed_model_refs ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeployedModelRef>
References to the DeployedModels that share the specified
deploymentResourcePool.
Corresponds to the JSON property deployedModelRefs
16059 16060 16061 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16059 def deployed_model_refs @deployed_model_refs end |
#deployed_models ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeployedModel>
DEPRECATED Use deployed_model_refs instead.
Corresponds to the JSON property deployedModels
16064 16065 16066 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16064 def deployed_models @deployed_models end |
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
16070 16071 16072 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16070 def next_page_token @next_page_token end |
#total_deployed_model_count ⇒ Fixnum
The total number of DeployedModels on this DeploymentResourcePool.
Corresponds to the JSON property totalDeployedModelCount
16075 16076 16077 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16075 def total_deployed_model_count @total_deployed_model_count end |
#total_endpoint_count ⇒ Fixnum
The total number of Endpoints that have DeployedModels on this
DeploymentResourcePool.
Corresponds to the JSON property totalEndpointCount
16081 16082 16083 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16081 def total_endpoint_count @total_endpoint_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16088 16089 16090 16091 16092 16093 16094 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16088 def update!(**args) @deployed_model_refs = args[:deployed_model_refs] if args.key?(:deployed_model_refs) @deployed_models = args[:deployed_models] if args.key?(:deployed_models) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @total_deployed_model_count = args[:total_deployed_model_count] if args.key?(:total_deployed_model_count) @total_endpoint_count = args[:total_endpoint_count] if args.key?(:total_endpoint_count) end |