class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1ExportDataOperationResponse
Response used for ExportDataset longrunning operation.
Attributes
Output only. The name of annotated dataset in format “projects//datasets// annotatedDatasets/*”. Corresponds to the JSON property `annotatedDataset` @return [String]
Ouptut only. The name of dataset. “projects//datasets/” Corresponds to the JSON property `dataset` @return [String]
Output only. Number of examples exported successfully. Corresponds to the JSON property `exportCount` @return [Fixnum]
Statistics about annotation specs. Corresponds to the JSON property `labelStats` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1LabelStats]
The configuration of output data. Corresponds to the JSON property `outputConfig` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1OutputConfig]
Output only. Total number of examples requested to export Corresponds to the JSON property `totalCount` @return [Fixnum]
Public Class Methods
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 2202 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 2207 def update!(**args) @annotated_dataset = args[:annotated_dataset] if args.key?(:annotated_dataset) @dataset = args[:dataset] if args.key?(:dataset) @export_count = args[:export_count] if args.key?(:export_count) @label_stats = args[:label_stats] if args.key?(:label_stats) @output_config = args[:output_config] if args.key?(:output_config) @total_count = args[:total_count] if args.key?(:total_count) end