Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MutateDeployedModelRequest
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MutateDeployedModelRequest
- 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
Request message for EndpointService.MutateDeployedModel.
Instance Attribute Summary collapse
-
#deployed_model ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DeployedModel
A deployment of a Model.
-
#update_mask ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1MutateDeployedModelRequest
constructor
A new instance of GoogleCloudAiplatformV1MutateDeployedModelRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1MutateDeployedModelRequest
Returns a new instance of GoogleCloudAiplatformV1MutateDeployedModelRequest.
15687 15688 15689 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 15687 def initialize(**args) update!(**args) end |
Instance Attribute Details
#deployed_model ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DeployedModel
A deployment of a Model. Endpoints contain one or more DeployedModels.
Corresponds to the JSON property deployedModel
15679 15680 15681 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 15679 def deployed_model @deployed_model end |
#update_mask ⇒ String
Required. The update mask applies to the resource. See google.protobuf.
FieldMask.
Corresponds to the JSON property updateMask
15685 15686 15687 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 15685 def update_mask @update_mask end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
15692 15693 15694 15695 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 15692 def update!(**args) @deployed_model = args[:deployed_model] if args.key?(:deployed_model) @update_mask = args[:update_mask] if args.key?(:update_mask) end |