Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1QueryDeployedModelsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1QueryDeployedModelsResponse

Returns a new instance of GoogleCloudAiplatformV1beta1QueryDeployedModelsResponse.



21590
21591
21592
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21590

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#deployed_model_refsArray<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeployedModelRef>

References to the DeployedModels that share the specified deploymentResourcePool. Corresponds to the JSON property deployedModelRefs



21566
21567
21568
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21566

def deployed_model_refs
  @deployed_model_refs
end

#deployed_modelsArray<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeployedModel>

DEPRECATED Use deployed_model_refs instead. Corresponds to the JSON property deployedModels



21571
21572
21573
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21571

def deployed_models
  @deployed_models
end

#next_page_tokenString

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

Returns:

  • (String)


21577
21578
21579
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21577

def next_page_token
  @next_page_token
end

#total_deployed_model_countFixnum

The total number of DeployedModels on this DeploymentResourcePool. Corresponds to the JSON property totalDeployedModelCount

Returns:

  • (Fixnum)


21582
21583
21584
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21582

def total_deployed_model_count
  @total_deployed_model_count
end

#total_endpoint_countFixnum

The total number of Endpoints that have DeployedModels on this DeploymentResourcePool. Corresponds to the JSON property totalEndpointCount

Returns:

  • (Fixnum)


21588
21589
21590
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21588

def total_endpoint_count
  @total_endpoint_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



21595
21596
21597
21598
21599
21600
21601
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21595

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