Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MigrateResourceRequestMigrateAutomlDatasetConfig

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

Config for migrating Dataset in automl.googleapis.com to Vertex AI's Dataset.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1MigrateResourceRequestMigrateAutomlDatasetConfig

Returns a new instance of GoogleCloudAiplatformV1beta1MigrateResourceRequestMigrateAutomlDatasetConfig.



15080
15081
15082
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15080

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

Instance Attribute Details

#datasetString

Required. Full resource name of automl Dataset. Format: projects/project/ locations/location/datasets/dataset`. Corresponds to the JSON propertydataset`

Returns:

  • (String)


15072
15073
15074
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15072

def dataset
  @dataset
end

#dataset_display_nameString

Required. Display name of the Dataset in Vertex AI. System will pick a display name if unspecified. Corresponds to the JSON property datasetDisplayName

Returns:

  • (String)


15078
15079
15080
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15078

def dataset_display_name
  @dataset_display_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



15085
15086
15087
15088
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15085

def update!(**args)
  @dataset = args[:dataset] if args.key?(:dataset)
  @dataset_display_name = args[:dataset_display_name] if args.key?(:dataset_display_name)
end