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.
14165 14166 14167 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14165 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
14157 14158 14159 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14157 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
14163 14164 14165 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14163 def update_mask @update_mask end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14170 14171 14172 14173 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14170 def update!(**args) @deployed_model = args[:deployed_model] if args.key?(:deployed_model) @update_mask = args[:update_mask] if args.key?(:update_mask) end |