Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MigratableResourceAutomlDataset

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

Represents one Dataset in automl.googleapis.com.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1MigratableResourceAutomlDataset

Returns a new instance of GoogleCloudAiplatformV1beta1MigratableResourceAutomlDataset.



14901
14902
14903
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14901

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

Instance Attribute Details

#datasetString

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

Returns:

  • (String)


14894
14895
14896
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14894

def dataset
  @dataset
end

#dataset_display_nameString

The Dataset's display name in automl.googleapis.com. Corresponds to the JSON property datasetDisplayName

Returns:

  • (String)


14899
14900
14901
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14899

def dataset_display_name
  @dataset_display_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



14906
14907
14908
14909
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 14906

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