Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitorModelMonitoringTargetVertexModelSource
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitorModelMonitoringTargetVertexModelSource
- 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
Model in Vertex AI Model Registry.
Instance Attribute Summary collapse
-
#model ⇒ String
Model resource name.
-
#model_version_id ⇒ String
Model version id.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitorModelMonitoringTargetVertexModelSource
constructor
A new instance of GoogleCloudAiplatformV1beta1ModelMonitorModelMonitoringTargetVertexModelSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitorModelMonitoringTargetVertexModelSource
Returns a new instance of GoogleCloudAiplatformV1beta1ModelMonitorModelMonitoringTargetVertexModelSource.
16591 16592 16593 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16591 def initialize(**args) update!(**args) end |
Instance Attribute Details
#model ⇒ String
Model resource name. Format: projects/project/locations/location/models/
model.
Corresponds to the JSON property model
16584 16585 16586 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16584 def model @model end |
#model_version_id ⇒ String
Model version id.
Corresponds to the JSON property modelVersionId
16589 16590 16591 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16589 def model_version_id @model_version_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16596 16597 16598 16599 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16596 def update!(**args) @model = args[:model] if args.key?(:model) @model_version_id = args[:model_version_id] if args.key?(:model_version_id) end |