Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MigrateResourceResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1MigrateResourceResponse

Returns a new instance of GoogleCloudAiplatformV1MigrateResourceResponse.



14595
14596
14597
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14595

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#datasetString

Migrated Dataset's resource name. Corresponds to the JSON property dataset

Returns:

  • (String)


14582
14583
14584
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14582

def dataset
  @dataset
end

#migratable_resourceGoogle::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



14588
14589
14590
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14588

def migratable_resource
  @migratable_resource
end

#modelString

Migrated Model's resource name. Corresponds to the JSON property model

Returns:

  • (String)


14593
14594
14595
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14593

def model
  @model
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



14600
14601
14602
14603
14604
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14600

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