class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1LabelOperationMetadata

Metadata of a labeling operation, such as LabelImage or LabelVideo. Next tag: 23

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 labeling request was created. Corresponds to the JSON property `createTime` @return [String]

dataset[RW]

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

image_bounding_box_details[RW]

Details of a LabelImageBoundingBox operation metadata. Corresponds to the JSON property `imageBoundingBoxDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1LabelImageBoundingBoxOperationMetadata]

image_bounding_poly_details[RW]

Details of LabelImageBoundingPoly operation metadata. Corresponds to the JSON property `imageBoundingPolyDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1LabelImageBoundingPolyOperationMetadata]

image_classification_details[RW]

Metadata of a LabelImageClassification operation. Corresponds to the JSON property `imageClassificationDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1LabelImageClassificationOperationMetadata]

image_oriented_bounding_box_details[RW]

Details of a LabelImageOrientedBoundingBox operation metadata. Corresponds to the JSON property `imageOrientedBoundingBoxDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1LabelImageOrientedBoundingBoxOperationMetadata]

image_polyline_details[RW]

Details of LabelImagePolyline operation metadata. Corresponds to the JSON property `imagePolylineDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1LabelImagePolylineOperationMetadata]

image_segmentation_details[RW]

Details of a LabelImageSegmentation operation metadata. Corresponds to the JSON property `imageSegmentationDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1LabelImageSegmentationOperationMetadata]

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>]

progress_percent[RW]

Output only. Progress of label operation. Range: [0, 100]. Corresponds to the JSON property `progressPercent` @return [Fixnum]

text_classification_details[RW]

Details of a LabelTextClassification operation metadata. Corresponds to the JSON property `textClassificationDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1LabelTextClassificationOperationMetadata]

text_entity_extraction_details[RW]

Details of a LabelTextEntityExtraction operation metadata. Corresponds to the JSON property `textEntityExtractionDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1LabelTextEntityExtractionOperationMetadata]

video_classification_details[RW]

Details of a LabelVideoClassification operation metadata. Corresponds to the JSON property `videoClassificationDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1LabelVideoClassificationOperationMetadata]

video_event_details[RW]

Details of a LabelVideoEvent operation metadata. Corresponds to the JSON property `videoEventDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1LabelVideoEventOperationMetadata]

video_object_detection_details[RW]

Details of a LabelVideoObjectDetection operation metadata. Corresponds to the JSON property `videoObjectDetectionDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1LabelVideoObjectDetectionOperationMetadata]

video_object_tracking_details[RW]

Details of a LabelVideoObjectTracking operation metadata. Corresponds to the JSON property `videoObjectTrackingDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1LabelVideoObjectTrackingOperationMetadata]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 540
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 545
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)
  @image_bounding_box_details = args[:image_bounding_box_details] if args.key?(:image_bounding_box_details)
  @image_bounding_poly_details = args[:image_bounding_poly_details] if args.key?(:image_bounding_poly_details)
  @image_classification_details = args[:image_classification_details] if args.key?(:image_classification_details)
  @image_oriented_bounding_box_details = args[:image_oriented_bounding_box_details] if args.key?(:image_oriented_bounding_box_details)
  @image_polyline_details = args[:image_polyline_details] if args.key?(:image_polyline_details)
  @image_segmentation_details = args[:image_segmentation_details] if args.key?(:image_segmentation_details)
  @partial_failures = args[:partial_failures] if args.key?(:partial_failures)
  @progress_percent = args[:progress_percent] if args.key?(:progress_percent)
  @text_classification_details = args[:text_classification_details] if args.key?(:text_classification_details)
  @text_entity_extraction_details = args[:text_entity_extraction_details] if args.key?(:text_entity_extraction_details)
  @video_classification_details = args[:video_classification_details] if args.key?(:video_classification_details)
  @video_event_details = args[:video_event_details] if args.key?(:video_event_details)
  @video_object_detection_details = args[:video_object_detection_details] if args.key?(:video_object_detection_details)
  @video_object_tracking_details = args[:video_object_tracking_details] if args.key?(:video_object_tracking_details)
end