Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MigratableResourceDataLabelingDataset
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MigratableResourceDataLabelingDataset
- 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 datalabeling.googleapis.com.
Instance Attribute Summary collapse
-
#data_labeling_annotated_datasets ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MigratableResourceDataLabelingDatasetDataLabelingAnnotatedDataset>
The migratable AnnotatedDataset in datalabeling.googleapis.com belongs to the data labeling Dataset.
-
#dataset ⇒ String
Full resource name of data labeling Dataset.
-
#dataset_display_name ⇒ String
The Dataset's display name in datalabeling.googleapis.com.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1MigratableResourceDataLabelingDataset
constructor
A new instance of GoogleCloudAiplatformV1MigratableResourceDataLabelingDataset.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1MigratableResourceDataLabelingDataset
Returns a new instance of GoogleCloudAiplatformV1MigratableResourceDataLabelingDataset.
10889 10890 10891 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10889 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_labeling_annotated_datasets ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MigratableResourceDataLabelingDatasetDataLabelingAnnotatedDataset>
The migratable AnnotatedDataset in datalabeling.googleapis.com belongs to the
data labeling Dataset.
Corresponds to the JSON property dataLabelingAnnotatedDatasets
10876 10877 10878 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10876 def data_labeling_annotated_datasets @data_labeling_annotated_datasets end |
#dataset ⇒ String
Full resource name of data labeling Dataset. Format: projects/project/
datasets/dataset`.
Corresponds to the JSON propertydataset`
10882 10883 10884 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10882 def dataset @dataset end |
#dataset_display_name ⇒ String
The Dataset's display name in datalabeling.googleapis.com.
Corresponds to the JSON property datasetDisplayName
10887 10888 10889 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10887 def dataset_display_name @dataset_display_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10894 10895 10896 10897 10898 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10894 def update!(**args) @data_labeling_annotated_datasets = args[:data_labeling_annotated_datasets] if args.key?(:data_labeling_annotated_datasets) @dataset = args[:dataset] if args.key?(:dataset) @dataset_display_name = args[:dataset_display_name] if args.key?(:dataset_display_name) end |