123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- syntax = "proto3";
- package google.cloud.datalabeling.v1beta1;
- import "google/cloud/datalabeling/v1beta1/dataset.proto";
- import "google/cloud/datalabeling/v1beta1/human_annotation_config.proto";
- import "google/protobuf/timestamp.proto";
- import "google/rpc/status.proto";
- option csharp_namespace = "Google.Cloud.DataLabeling.V1Beta1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/datalabeling/v1beta1;datalabeling";
- option java_multiple_files = true;
- option java_package = "com.google.cloud.datalabeling.v1beta1";
- option php_namespace = "Google\\Cloud\\DataLabeling\\V1beta1";
- option ruby_package = "Google::Cloud::DataLabeling::V1beta1";
- message ImportDataOperationResponse {
-
- string dataset = 1;
-
- int32 total_count = 2;
-
- int32 import_count = 3;
- }
- message ExportDataOperationResponse {
-
-
- string dataset = 1;
-
- int32 total_count = 2;
-
- int32 export_count = 3;
-
- LabelStats label_stats = 4;
-
- OutputConfig output_config = 5;
- }
- message ImportDataOperationMetadata {
-
-
- string dataset = 1;
-
-
-
- repeated google.rpc.Status partial_failures = 2;
-
- google.protobuf.Timestamp create_time = 3;
- }
- message ExportDataOperationMetadata {
-
-
- string dataset = 1;
-
-
-
- repeated google.rpc.Status partial_failures = 2;
-
- google.protobuf.Timestamp create_time = 3;
- }
- message LabelOperationMetadata {
-
- oneof details {
-
- LabelImageClassificationOperationMetadata image_classification_details = 3;
-
- LabelImageBoundingBoxOperationMetadata image_bounding_box_details = 4;
-
- LabelImageBoundingPolyOperationMetadata image_bounding_poly_details = 11;
-
- LabelImageOrientedBoundingBoxOperationMetadata image_oriented_bounding_box_details = 14;
-
- LabelImagePolylineOperationMetadata image_polyline_details = 12;
-
- LabelImageSegmentationOperationMetadata image_segmentation_details = 15;
-
- LabelVideoClassificationOperationMetadata video_classification_details = 5;
-
- LabelVideoObjectDetectionOperationMetadata video_object_detection_details = 6;
-
- LabelVideoObjectTrackingOperationMetadata video_object_tracking_details = 7;
-
- LabelVideoEventOperationMetadata video_event_details = 8;
-
- LabelTextClassificationOperationMetadata text_classification_details = 9;
-
- LabelTextEntityExtractionOperationMetadata text_entity_extraction_details = 13;
- }
-
- int32 progress_percent = 1;
-
-
-
- repeated google.rpc.Status partial_failures = 2;
-
- google.protobuf.Timestamp create_time = 16;
- }
- message LabelImageClassificationOperationMetadata {
-
- HumanAnnotationConfig basic_config = 1;
- }
- message LabelImageBoundingBoxOperationMetadata {
-
- HumanAnnotationConfig basic_config = 1;
- }
- message LabelImageOrientedBoundingBoxOperationMetadata {
-
- HumanAnnotationConfig basic_config = 1;
- }
- message LabelImageBoundingPolyOperationMetadata {
-
- HumanAnnotationConfig basic_config = 1;
- }
- message LabelImagePolylineOperationMetadata {
-
- HumanAnnotationConfig basic_config = 1;
- }
- message LabelImageSegmentationOperationMetadata {
-
- HumanAnnotationConfig basic_config = 1;
- }
- message LabelVideoClassificationOperationMetadata {
-
- HumanAnnotationConfig basic_config = 1;
- }
- message LabelVideoObjectDetectionOperationMetadata {
-
- HumanAnnotationConfig basic_config = 1;
- }
- message LabelVideoObjectTrackingOperationMetadata {
-
- HumanAnnotationConfig basic_config = 1;
- }
- message LabelVideoEventOperationMetadata {
-
- HumanAnnotationConfig basic_config = 1;
- }
- message LabelTextClassificationOperationMetadata {
-
- HumanAnnotationConfig basic_config = 1;
- }
- message LabelTextEntityExtractionOperationMetadata {
-
- HumanAnnotationConfig basic_config = 1;
- }
- message CreateInstructionMetadata {
-
-
- string instruction = 1;
-
-
-
- repeated google.rpc.Status partial_failures = 2;
-
- google.protobuf.Timestamp create_time = 3;
- }
|