Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeployedModelStatus
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeployedModelStatus
- 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
Runtime status of the deployed model.
Instance Attribute Summary collapse
-
#available_replica_count ⇒ Fixnum
Output only.
-
#last_update_time ⇒ String
Output only.
-
#message ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1DeployedModelStatus
constructor
A new instance of GoogleCloudAiplatformV1beta1DeployedModelStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1DeployedModelStatus
Returns a new instance of GoogleCloudAiplatformV1beta1DeployedModelStatus.
6674 6675 6676 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6674 def initialize(**args) update!(**args) end |
Instance Attribute Details
#available_replica_count ⇒ Fixnum
Output only. The number of available replicas of the deployed model.
Corresponds to the JSON property availableReplicaCount
6662 6663 6664 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6662 def available_replica_count @available_replica_count end |
#last_update_time ⇒ String
Output only. The time at which the status was last updated.
Corresponds to the JSON property lastUpdateTime
6667 6668 6669 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6667 def last_update_time @last_update_time end |
#message ⇒ String
Output only. The latest deployed model's status message (if any).
Corresponds to the JSON property message
6672 6673 6674 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6672 def @message end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6679 6680 6681 6682 6683 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6679 def update!(**args) @available_replica_count = args[:available_replica_count] if args.key?(:available_replica_count) @last_update_time = args[:last_update_time] if args.key?(:last_update_time) @message = args[:message] if args.key?(:message) end |