Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MigratableResource
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MigratableResource
- 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
Represents one resource that exists in automl.googleapis.com, datalabeling. googleapis.com or ml.googleapis.com.
Instance Attribute Summary collapse
-
#automl_dataset ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MigratableResourceAutomlDataset
Represents one Dataset in automl.googleapis.com.
-
#automl_model ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MigratableResourceAutomlModel
Represents one Model in automl.googleapis.com.
-
#data_labeling_dataset ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MigratableResourceDataLabelingDataset
Represents one Dataset in datalabeling.googleapis.com.
-
#last_migrate_time ⇒ String
Output only.
-
#last_update_time ⇒ String
Output only.
-
#ml_engine_model_version ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MigratableResourceMlEngineModelVersion
Represents one model Version in ml.googleapis.com.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1MigratableResource
constructor
A new instance of GoogleCloudAiplatformV1beta1MigratableResource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1MigratableResource
Returns a new instance of GoogleCloudAiplatformV1beta1MigratableResource.
14595 14596 14597 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14595 def initialize(**args) update!(**args) end |
Instance Attribute Details
#automl_dataset ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MigratableResourceAutomlDataset
Represents one Dataset in automl.googleapis.com.
Corresponds to the JSON property automlDataset
14566 14567 14568 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14566 def automl_dataset @automl_dataset end |
#automl_model ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MigratableResourceAutomlModel
Represents one Model in automl.googleapis.com.
Corresponds to the JSON property automlModel
14571 14572 14573 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14571 def automl_model @automl_model end |
#data_labeling_dataset ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MigratableResourceDataLabelingDataset
Represents one Dataset in datalabeling.googleapis.com.
Corresponds to the JSON property dataLabelingDataset
14576 14577 14578 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14576 def data_labeling_dataset @data_labeling_dataset end |
#last_migrate_time ⇒ String
Output only. Timestamp when the last migration attempt on this
MigratableResource started. Will not be set if there's no migration attempt on
this MigratableResource.
Corresponds to the JSON property lastMigrateTime
14583 14584 14585 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14583 def last_migrate_time @last_migrate_time end |
#last_update_time ⇒ String
Output only. Timestamp when this MigratableResource was last updated.
Corresponds to the JSON property lastUpdateTime
14588 14589 14590 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14588 def last_update_time @last_update_time end |
#ml_engine_model_version ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MigratableResourceMlEngineModelVersion
Represents one model Version in ml.googleapis.com.
Corresponds to the JSON property mlEngineModelVersion
14593 14594 14595 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14593 def ml_engine_model_version @ml_engine_model_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14600 14601 14602 14603 14604 14605 14606 14607 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14600 def update!(**args) @automl_dataset = args[:automl_dataset] if args.key?(:automl_dataset) @automl_model = args[:automl_model] if args.key?(:automl_model) @data_labeling_dataset = args[:data_labeling_dataset] if args.key?(:data_labeling_dataset) @last_migrate_time = args[:last_migrate_time] if args.key?(:last_migrate_time) @last_update_time = args[:last_update_time] if args.key?(:last_update_time) @ml_engine_model_version = args[:ml_engine_model_version] if args.key?(:ml_engine_model_version) end |