class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1LabelOperationMetadata
Metadata of a labeling operation, such as LabelImage or LabelVideo. Next tag: 23
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 labeling request was created. Corresponds to the JSON property `createTime` @return [String]
Output only. The name of dataset to be labeled. “projects//datasets/” Corresponds to the JSON property `dataset` @return [String]
Details of a LabelImageBoundingBox operation metadata. Corresponds to the JSON property `imageBoundingBoxDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1LabelImageBoundingBoxOperationMetadata]
Details of LabelImageBoundingPoly operation metadata. Corresponds to the JSON property `imageBoundingPolyDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1LabelImageBoundingPolyOperationMetadata]
Metadata of a LabelImageClassification operation. Corresponds to the JSON property `imageClassificationDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1LabelImageClassificationOperationMetadata]
Details of a LabelImageOrientedBoundingBox operation metadata. Corresponds to the JSON property `imageOrientedBoundingBoxDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1LabelImageOrientedBoundingBoxOperationMetadata]
Details of LabelImagePolyline operation metadata. Corresponds to the JSON property `imagePolylineDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1LabelImagePolylineOperationMetadata]
Details of a LabelImageSegmentation operation metadata. Corresponds to the JSON property `imageSegmentationDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1LabelImageSegmentationOperationMetadata]
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>]
Output only. Progress of label operation. Range: [0, 100]. Corresponds to the JSON property `progressPercent` @return [Fixnum]
Details of a LabelTextClassification operation metadata. Corresponds to the JSON property `textClassificationDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1LabelTextClassificationOperationMetadata]
Details of a LabelTextEntityExtraction operation metadata. Corresponds to the JSON property `textEntityExtractionDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1LabelTextEntityExtractionOperationMetadata]
Details of a LabelVideoClassification operation metadata. Corresponds to the JSON property `videoClassificationDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1LabelVideoClassificationOperationMetadata]
Details of a LabelVideoEvent operation metadata. Corresponds to the JSON property `videoEventDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1LabelVideoEventOperationMetadata]
Details of a LabelVideoObjectDetection operation metadata. Corresponds to the JSON property `videoObjectDetectionDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1LabelVideoObjectDetectionOperationMetadata]
Details of a LabelVideoObjectTracking operation metadata. Corresponds to the JSON property `videoObjectTrackingDetails` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1LabelVideoObjectTrackingOperationMetadata]
Public Class Methods
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 3189 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 3194 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