Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MigratableResourceAutomlModel
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MigratableResourceAutomlModel
- 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
Represents one Model in automl.googleapis.com.
Instance Attribute Summary collapse
-
#model ⇒ String
Full resource name of automl Model.
-
#model_display_name ⇒ String
The Model's display name in automl.googleapis.com.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1MigratableResourceAutomlModel
constructor
A new instance of GoogleCloudAiplatformV1MigratableResourceAutomlModel.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1MigratableResourceAutomlModel
Returns a new instance of GoogleCloudAiplatformV1MigratableResourceAutomlModel.
14075 14076 14077 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14075 def initialize(**args) update!(**args) end |
Instance Attribute Details
#model ⇒ String
Full resource name of automl Model. Format: projects/project/locations/
location/models/model`.
Corresponds to the JSON propertymodel`
14068 14069 14070 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14068 def model @model end |
#model_display_name ⇒ String
The Model's display name in automl.googleapis.com.
Corresponds to the JSON property modelDisplayName
14073 14074 14075 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14073 def model_display_name @model_display_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14080 14081 14082 14083 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14080 def update!(**args) @model = args[:model] if args.key?(:model) @model_display_name = args[:model_display_name] if args.key?(:model_display_name) end |