class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1p2alpha1ExportDataOperationMetadata

Metadata of an ExportData operation.

Attributes

annotated_dataset[RW]

Output only. The name of annotated dataset in format “projects//datasets// annotatedDatasets/*”. Corresponds to the JSON property `annotatedDataset` @return [String]

create_time[RW]

Output only. Timestamp when export dataset request was created. Corresponds to the JSON property `createTime` @return [String]

dataset[RW]

Output only. The name of dataset to be exported. “projects//datasets/” Corresponds to the JSON property `dataset` @return [String]

partial_failures[RW]

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

new(**args) click to toggle source
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 5420
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 5425
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