Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MigrateResourceRequestMigrateAutomlModelConfig
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MigrateResourceRequestMigrateAutomlModelConfig
- 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
Config for migrating Model in automl.googleapis.com to Vertex AI's Model.
Instance Attribute Summary collapse
-
#model ⇒ String
Required.
-
#model_display_name ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1MigrateResourceRequestMigrateAutomlModelConfig
constructor
A new instance of GoogleCloudAiplatformV1MigrateResourceRequestMigrateAutomlModelConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1MigrateResourceRequestMigrateAutomlModelConfig
Returns a new instance of GoogleCloudAiplatformV1MigrateResourceRequestMigrateAutomlModelConfig.
11037 11038 11039 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 11037 def initialize(**args) update!(**args) end |
Instance Attribute Details
#model ⇒ String
Required. Full resource name of automl Model. Format: projects/project/
locations/location/models/model`.
Corresponds to the JSON propertymodel`
11029 11030 11031 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 11029 def model @model end |
#model_display_name ⇒ String
Optional. Display name of the model in Vertex AI. System will pick a display
name if unspecified.
Corresponds to the JSON property modelDisplayName
11035 11036 11037 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 11035 def model_display_name @model_display_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11042 11043 11044 11045 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 11042 def update!(**args) @model = args[:model] if args.key?(:model) @model_display_name = args[:model_display_name] if args.key?(:model_display_name) end |