Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MigratableResourceAutomlDataset
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MigratableResourceAutomlDataset
- 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
Represents one Dataset in automl.googleapis.com.
Instance Attribute Summary collapse
-
#dataset ⇒ String
Full resource name of automl Dataset.
-
#dataset_display_name ⇒ String
The Dataset's display name in automl.googleapis.com.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1MigratableResourceAutomlDataset
constructor
A new instance of GoogleCloudAiplatformV1MigratableResourceAutomlDataset.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1MigratableResourceAutomlDataset
Returns a new instance of GoogleCloudAiplatformV1MigratableResourceAutomlDataset.
14266 14267 14268 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14266 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dataset ⇒ String
Full resource name of automl Dataset. Format: projects/
project/locations/
location/datasets/
dataset`.
Corresponds to the JSON property
dataset`
14259 14260 14261 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14259 def dataset @dataset end |
#dataset_display_name ⇒ String
The Dataset's display name in automl.googleapis.com.
Corresponds to the JSON property datasetDisplayName
14264 14265 14266 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14264 def dataset_display_name @dataset_display_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14271 14272 14273 14274 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14271 def update!(**args) @dataset = args[:dataset] if args.key?(:dataset) @dataset_display_name = args[:dataset_display_name] if args.key?(:dataset_display_name) end |