class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1Dataset
Dataset is the resource to hold your data. You can request multiple labeling tasks for a dataset while each one will generate an AnnotatedDataset.
Attributes
Output only. The names of any related resources that are blocking changes to the dataset. Corresponds to the JSON property `blockingResources` @return [Array<String>]
Output only. Time the dataset is created. Corresponds to the JSON property `createTime` @return [String]
Output only. The number of data items in the dataset. Corresponds to the JSON property `dataItemCount` @return [Fixnum]
Optional. User-provided description of the annotation specification set. The description can be up to 10000 characters long. Corresponds to the JSON property `description` @return [String]
Required. The display name of the dataset. Maximum of 64 characters. Corresponds to the JSON property `displayName` @return [String]
Output only. This is populated with the original input configs where ImportData is called. It is available only after the clients import data to this dataset. Corresponds to the JSON property `inputConfigs` @return [Array<Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1InputConfig>]
Last time that the Dataset is migrated to AI Platform V2. If any of the AnnotatedDataset is migrated, the last_migration_time in Dataset is also updated. Corresponds to the JSON property `lastMigrateTime` @return [String]
Output only. Dataset resource name, format is: projects/`project_id`/datasets/` dataset_id` Corresponds to the JSON property `name` @return [String]
Public Class Methods
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 1671 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 1676 def update!(**args) @blocking_resources = args[:blocking_resources] if args.key?(:blocking_resources) @create_time = args[:create_time] if args.key?(:create_time) @data_item_count = args[:data_item_count] if args.key?(:data_item_count) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @input_configs = args[:input_configs] if args.key?(:input_configs) @last_migrate_time = args[:last_migrate_time] if args.key?(:last_migrate_time) @name = args[:name] if args.key?(:name) end