class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1p1alpha1ExportDataOperationMetadata
Metadata of an ExportData operation.
Attributes
Output only. The name of annotated dataset in format “projects//datasets// annotatedDatasets/*”. Corresponds to the JSON property `annotatedDataset` @return [String]
Output only. Timestamp when export dataset request was created. Corresponds to the JSON property `createTime` @return [String]
Output only. The name of dataset to be exported. “projects//datasets/” Corresponds to the JSON property `dataset` @return [String]
Output only. Partial failures encountered. E.g. single files that couldn't be read. Status details field will contain standard GCP error details. Corresponds to the JSON property `partialFailures` @return [Array<Google::Apis::DatalabelingV1beta1::GoogleRpcStatus>]
Public Class Methods
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 4692 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 4697 def update!(**args) @annotated_dataset = args[:annotated_dataset] if args.key?(:annotated_dataset) @create_time = args[:create_time] if args.key?(:create_time) @dataset = args[:dataset] if args.key?(:dataset) @partial_failures = args[:partial_failures] if args.key?(:partial_failures) end