Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MigrateResourceResponse
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MigrateResourceResponse
- 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
Describes a successfully migrated resource.
Instance Attribute Summary collapse
-
#dataset ⇒ String
Migrated Dataset's resource name.
-
#migratable_resource ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MigratableResource
Represents one resource that exists in automl.googleapis.com, datalabeling.
-
#model ⇒ String
Migrated Model's resource name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1MigrateResourceResponse
constructor
A new instance of GoogleCloudAiplatformV1MigrateResourceResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1MigrateResourceResponse
Returns a new instance of GoogleCloudAiplatformV1MigrateResourceResponse.
17655 17656 17657 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17655 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dataset ⇒ String
Migrated Dataset's resource name.
Corresponds to the JSON property dataset
17642 17643 17644 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17642 def dataset @dataset end |
#migratable_resource ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MigratableResource
Represents one resource that exists in automl.googleapis.com, datalabeling.
googleapis.com or ml.googleapis.com.
Corresponds to the JSON property migratableResource
17648 17649 17650 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17648 def migratable_resource @migratable_resource end |
#model ⇒ String
Migrated Model's resource name.
Corresponds to the JSON property model
17653 17654 17655 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17653 def model @model end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
17660 17661 17662 17663 17664 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17660 def update!(**args) @dataset = args[:dataset] if args.key?(:dataset) @migratable_resource = args[:migratable_resource] if args.key?(:migratable_resource) @model = args[:model] if args.key?(:model) end |