fsai-proto-specs 0.0.373__py3-none-any.whl → 0.0.411__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fsai-proto-specs might be problematic. Click here for more details.

Files changed (37) hide show
  1. audit_grpc_service/protos/audit_api_pb2.py +12 -12
  2. {fsai_proto_specs-0.0.373.dist-info → fsai_proto_specs-0.0.411.dist-info}/METADATA +1 -1
  3. {fsai_proto_specs-0.0.373.dist-info → fsai_proto_specs-0.0.411.dist-info}/RECORD +35 -25
  4. global_vo_grpc_service/protos/admin_user_api_pb2.py +40 -35
  5. global_vo_grpc_service/protos/admin_user_api_pb2_grpc.py +33 -0
  6. global_vo_grpc_service/protos/category_changelog_api_pb2.py +36 -0
  7. global_vo_grpc_service/protos/category_changelog_api_pb2_grpc.py +99 -0
  8. global_vo_grpc_service/protos/correction_api_pb2.py +49 -0
  9. global_vo_grpc_service/protos/correction_api_pb2_grpc.py +198 -0
  10. global_vo_grpc_service/protos/customer_api_pb2.py +29 -0
  11. global_vo_grpc_service/protos/customer_api_pb2_grpc.py +66 -0
  12. global_vo_grpc_service/protos/detection_instance_api_pb2.py +100 -96
  13. global_vo_grpc_service/protos/detection_instance_api_pb2_grpc.py +33 -0
  14. global_vo_grpc_service/protos/image_api_pb2.py +9 -3
  15. global_vo_grpc_service/protos/image_api_pb2_grpc.py +33 -0
  16. global_vo_grpc_service/protos/image_metadata_api_pb2.py +24 -24
  17. global_vo_grpc_service/protos/image_scan_api_pb2.py +15 -11
  18. global_vo_grpc_service/protos/image_scan_api_pb2_grpc.py +33 -0
  19. global_vo_grpc_service/protos/model_assessment_api_pb2.py +45 -0
  20. global_vo_grpc_service/protos/model_assessment_api_pb2_grpc.py +133 -0
  21. global_vo_grpc_service/protos/product_changelog_api_pb2.py +44 -0
  22. global_vo_grpc_service/protos/product_changelog_api_pb2_grpc.py +166 -0
  23. global_vo_grpc_service/protos/reporting_api_pb2.py +44 -0
  24. global_vo_grpc_service/protos/reporting_api_pb2_grpc.py +138 -0
  25. global_vo_grpc_service/protos/review_api_pb2.py +70 -70
  26. global_vo_grpc_service/protos/review_api_pb2_grpc.py +13 -13
  27. global_vo_grpc_service/protos/task_api_pb2.py +7 -3
  28. global_vo_grpc_service/protos/task_api_pb2_grpc.py +33 -0
  29. global_vo_grpc_service/protos/task_image_api_pb2.py +23 -25
  30. global_vo_grpc_service/protos/utils_pb2.py +16 -16
  31. global_vo_grpc_service/protos/workflow_api_pb2.py +11 -9
  32. global_vo_grpc_service/protos/workflow_api_pb2_grpc.py +47 -15
  33. search_grpc_service/protos/search_api_pb2.py +19 -17
  34. search_grpc_service/protos/search_api_pb2_grpc.py +33 -33
  35. global_vo_grpc_service/protos/detection_instance_metadata_api_pb2.py +0 -58
  36. global_vo_grpc_service/protos/detection_instance_metadata_api_pb2_grpc.py +0 -265
  37. {fsai_proto_specs-0.0.373.dist-info → fsai_proto_specs-0.0.411.dist-info}/WHEEL +0 -0
@@ -0,0 +1,198 @@
1
+ # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2
+ """Client and server classes corresponding to protobuf-defined services."""
3
+ import grpc
4
+
5
+ from global_vo_grpc_service.protos import correction_api_pb2 as global__vo__grpc__service_dot_protos_dot_correction__api__pb2
6
+
7
+
8
+ class CorrectionApiStub(object):
9
+ """Missing associated documentation comment in .proto file."""
10
+
11
+ def __init__(self, channel):
12
+ """Constructor.
13
+
14
+ Args:
15
+ channel: A grpc.Channel.
16
+ """
17
+ self.GetCorrectionsByDetectionIds = channel.unary_unary(
18
+ '/CorrectionApi/GetCorrectionsByDetectionIds',
19
+ request_serializer=global__vo__grpc__service_dot_protos_dot_correction__api__pb2.GetCorrectionsByDetectionIdsRequest.SerializeToString,
20
+ response_deserializer=global__vo__grpc__service_dot_protos_dot_correction__api__pb2.GetCorrectionsByDetectionIdsResponse.FromString,
21
+ )
22
+ self.GetCorrectionsByAssignedTo = channel.unary_unary(
23
+ '/CorrectionApi/GetCorrectionsByAssignedTo',
24
+ request_serializer=global__vo__grpc__service_dot_protos_dot_correction__api__pb2.GetCorrectionsByAssignedToRequest.SerializeToString,
25
+ response_deserializer=global__vo__grpc__service_dot_protos_dot_correction__api__pb2.GetCorrectionsByAssignedToResponse.FromString,
26
+ )
27
+ self.GetCorrectionsByAssignedBy = channel.unary_unary(
28
+ '/CorrectionApi/GetCorrectionsByAssignedBy',
29
+ request_serializer=global__vo__grpc__service_dot_protos_dot_correction__api__pb2.GetCorrectionsByAssignedByRequest.SerializeToString,
30
+ response_deserializer=global__vo__grpc__service_dot_protos_dot_correction__api__pb2.GetCorrectionsByAssignedByResponse.FromString,
31
+ )
32
+ self.CreateCorrections = channel.unary_unary(
33
+ '/CorrectionApi/CreateCorrections',
34
+ request_serializer=global__vo__grpc__service_dot_protos_dot_correction__api__pb2.CreateCorrectionsRequest.SerializeToString,
35
+ response_deserializer=global__vo__grpc__service_dot_protos_dot_correction__api__pb2.CreateCorrectionsResponse.FromString,
36
+ )
37
+ self.CompleteCorrections = channel.unary_unary(
38
+ '/CorrectionApi/CompleteCorrections',
39
+ request_serializer=global__vo__grpc__service_dot_protos_dot_correction__api__pb2.CompleteCorrectionsRequest.SerializeToString,
40
+ response_deserializer=global__vo__grpc__service_dot_protos_dot_correction__api__pb2.CompleteCorrectionsResponse.FromString,
41
+ )
42
+
43
+
44
+ class CorrectionApiServicer(object):
45
+ """Missing associated documentation comment in .proto file."""
46
+
47
+ def GetCorrectionsByDetectionIds(self, request, context):
48
+ """Missing associated documentation comment in .proto file."""
49
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
50
+ context.set_details('Method not implemented!')
51
+ raise NotImplementedError('Method not implemented!')
52
+
53
+ def GetCorrectionsByAssignedTo(self, request, context):
54
+ """Missing associated documentation comment in .proto file."""
55
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
56
+ context.set_details('Method not implemented!')
57
+ raise NotImplementedError('Method not implemented!')
58
+
59
+ def GetCorrectionsByAssignedBy(self, request, context):
60
+ """Missing associated documentation comment in .proto file."""
61
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
62
+ context.set_details('Method not implemented!')
63
+ raise NotImplementedError('Method not implemented!')
64
+
65
+ def CreateCorrections(self, request, context):
66
+ """Missing associated documentation comment in .proto file."""
67
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
68
+ context.set_details('Method not implemented!')
69
+ raise NotImplementedError('Method not implemented!')
70
+
71
+ def CompleteCorrections(self, request, context):
72
+ """Missing associated documentation comment in .proto file."""
73
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
74
+ context.set_details('Method not implemented!')
75
+ raise NotImplementedError('Method not implemented!')
76
+
77
+
78
+ def add_CorrectionApiServicer_to_server(servicer, server):
79
+ rpc_method_handlers = {
80
+ 'GetCorrectionsByDetectionIds': grpc.unary_unary_rpc_method_handler(
81
+ servicer.GetCorrectionsByDetectionIds,
82
+ request_deserializer=global__vo__grpc__service_dot_protos_dot_correction__api__pb2.GetCorrectionsByDetectionIdsRequest.FromString,
83
+ response_serializer=global__vo__grpc__service_dot_protos_dot_correction__api__pb2.GetCorrectionsByDetectionIdsResponse.SerializeToString,
84
+ ),
85
+ 'GetCorrectionsByAssignedTo': grpc.unary_unary_rpc_method_handler(
86
+ servicer.GetCorrectionsByAssignedTo,
87
+ request_deserializer=global__vo__grpc__service_dot_protos_dot_correction__api__pb2.GetCorrectionsByAssignedToRequest.FromString,
88
+ response_serializer=global__vo__grpc__service_dot_protos_dot_correction__api__pb2.GetCorrectionsByAssignedToResponse.SerializeToString,
89
+ ),
90
+ 'GetCorrectionsByAssignedBy': grpc.unary_unary_rpc_method_handler(
91
+ servicer.GetCorrectionsByAssignedBy,
92
+ request_deserializer=global__vo__grpc__service_dot_protos_dot_correction__api__pb2.GetCorrectionsByAssignedByRequest.FromString,
93
+ response_serializer=global__vo__grpc__service_dot_protos_dot_correction__api__pb2.GetCorrectionsByAssignedByResponse.SerializeToString,
94
+ ),
95
+ 'CreateCorrections': grpc.unary_unary_rpc_method_handler(
96
+ servicer.CreateCorrections,
97
+ request_deserializer=global__vo__grpc__service_dot_protos_dot_correction__api__pb2.CreateCorrectionsRequest.FromString,
98
+ response_serializer=global__vo__grpc__service_dot_protos_dot_correction__api__pb2.CreateCorrectionsResponse.SerializeToString,
99
+ ),
100
+ 'CompleteCorrections': grpc.unary_unary_rpc_method_handler(
101
+ servicer.CompleteCorrections,
102
+ request_deserializer=global__vo__grpc__service_dot_protos_dot_correction__api__pb2.CompleteCorrectionsRequest.FromString,
103
+ response_serializer=global__vo__grpc__service_dot_protos_dot_correction__api__pb2.CompleteCorrectionsResponse.SerializeToString,
104
+ ),
105
+ }
106
+ generic_handler = grpc.method_handlers_generic_handler(
107
+ 'CorrectionApi', rpc_method_handlers)
108
+ server.add_generic_rpc_handlers((generic_handler,))
109
+
110
+
111
+ # This class is part of an EXPERIMENTAL API.
112
+ class CorrectionApi(object):
113
+ """Missing associated documentation comment in .proto file."""
114
+
115
+ @staticmethod
116
+ def GetCorrectionsByDetectionIds(request,
117
+ target,
118
+ options=(),
119
+ channel_credentials=None,
120
+ call_credentials=None,
121
+ insecure=False,
122
+ compression=None,
123
+ wait_for_ready=None,
124
+ timeout=None,
125
+ metadata=None):
126
+ return grpc.experimental.unary_unary(request, target, '/CorrectionApi/GetCorrectionsByDetectionIds',
127
+ global__vo__grpc__service_dot_protos_dot_correction__api__pb2.GetCorrectionsByDetectionIdsRequest.SerializeToString,
128
+ global__vo__grpc__service_dot_protos_dot_correction__api__pb2.GetCorrectionsByDetectionIdsResponse.FromString,
129
+ options, channel_credentials,
130
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
131
+
132
+ @staticmethod
133
+ def GetCorrectionsByAssignedTo(request,
134
+ target,
135
+ options=(),
136
+ channel_credentials=None,
137
+ call_credentials=None,
138
+ insecure=False,
139
+ compression=None,
140
+ wait_for_ready=None,
141
+ timeout=None,
142
+ metadata=None):
143
+ return grpc.experimental.unary_unary(request, target, '/CorrectionApi/GetCorrectionsByAssignedTo',
144
+ global__vo__grpc__service_dot_protos_dot_correction__api__pb2.GetCorrectionsByAssignedToRequest.SerializeToString,
145
+ global__vo__grpc__service_dot_protos_dot_correction__api__pb2.GetCorrectionsByAssignedToResponse.FromString,
146
+ options, channel_credentials,
147
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
148
+
149
+ @staticmethod
150
+ def GetCorrectionsByAssignedBy(request,
151
+ target,
152
+ options=(),
153
+ channel_credentials=None,
154
+ call_credentials=None,
155
+ insecure=False,
156
+ compression=None,
157
+ wait_for_ready=None,
158
+ timeout=None,
159
+ metadata=None):
160
+ return grpc.experimental.unary_unary(request, target, '/CorrectionApi/GetCorrectionsByAssignedBy',
161
+ global__vo__grpc__service_dot_protos_dot_correction__api__pb2.GetCorrectionsByAssignedByRequest.SerializeToString,
162
+ global__vo__grpc__service_dot_protos_dot_correction__api__pb2.GetCorrectionsByAssignedByResponse.FromString,
163
+ options, channel_credentials,
164
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
165
+
166
+ @staticmethod
167
+ def CreateCorrections(request,
168
+ target,
169
+ options=(),
170
+ channel_credentials=None,
171
+ call_credentials=None,
172
+ insecure=False,
173
+ compression=None,
174
+ wait_for_ready=None,
175
+ timeout=None,
176
+ metadata=None):
177
+ return grpc.experimental.unary_unary(request, target, '/CorrectionApi/CreateCorrections',
178
+ global__vo__grpc__service_dot_protos_dot_correction__api__pb2.CreateCorrectionsRequest.SerializeToString,
179
+ global__vo__grpc__service_dot_protos_dot_correction__api__pb2.CreateCorrectionsResponse.FromString,
180
+ options, channel_credentials,
181
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
182
+
183
+ @staticmethod
184
+ def CompleteCorrections(request,
185
+ target,
186
+ options=(),
187
+ channel_credentials=None,
188
+ call_credentials=None,
189
+ insecure=False,
190
+ compression=None,
191
+ wait_for_ready=None,
192
+ timeout=None,
193
+ metadata=None):
194
+ return grpc.experimental.unary_unary(request, target, '/CorrectionApi/CompleteCorrections',
195
+ global__vo__grpc__service_dot_protos_dot_correction__api__pb2.CompleteCorrectionsRequest.SerializeToString,
196
+ global__vo__grpc__service_dot_protos_dot_correction__api__pb2.CompleteCorrectionsResponse.FromString,
197
+ options, channel_credentials,
198
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@@ -0,0 +1,29 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: global_vo_grpc_service/protos/customer_api.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf.internal import builder as _builder
6
+ from google.protobuf import descriptor as _descriptor
7
+ from google.protobuf import descriptor_pool as _descriptor_pool
8
+ from google.protobuf import symbol_database as _symbol_database
9
+ # @@protoc_insertion_point(imports)
10
+
11
+ _sym_db = _symbol_database.Default()
12
+
13
+
14
+
15
+
16
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n0global_vo_grpc_service/protos/customer_api.proto\"7\n GetCustomerIdByWorkflowIdRequest\x12\x13\n\x0bworkflow_id\x18\x01 \x01(\x05\"8\n!GetCustomerIdByWorkflowIdResponse\x12\x13\n\x0b\x63ustomer_id\x18\x01 \x01(\x05\x32q\n\x0b\x43ustomerApi\x12\x62\n\x19GetCustomerIdByWorkflowId\x12!.GetCustomerIdByWorkflowIdRequest\x1a\".GetCustomerIdByWorkflowIdResponseb\x06proto3')
17
+
18
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
19
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'global_vo_grpc_service.protos.customer_api_pb2', globals())
20
+ if _descriptor._USE_C_DESCRIPTORS == False:
21
+
22
+ DESCRIPTOR._options = None
23
+ _GETCUSTOMERIDBYWORKFLOWIDREQUEST._serialized_start=52
24
+ _GETCUSTOMERIDBYWORKFLOWIDREQUEST._serialized_end=107
25
+ _GETCUSTOMERIDBYWORKFLOWIDRESPONSE._serialized_start=109
26
+ _GETCUSTOMERIDBYWORKFLOWIDRESPONSE._serialized_end=165
27
+ _CUSTOMERAPI._serialized_start=167
28
+ _CUSTOMERAPI._serialized_end=280
29
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,66 @@
1
+ # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2
+ """Client and server classes corresponding to protobuf-defined services."""
3
+ import grpc
4
+
5
+ from global_vo_grpc_service.protos import customer_api_pb2 as global__vo__grpc__service_dot_protos_dot_customer__api__pb2
6
+
7
+
8
+ class CustomerApiStub(object):
9
+ """Missing associated documentation comment in .proto file."""
10
+
11
+ def __init__(self, channel):
12
+ """Constructor.
13
+
14
+ Args:
15
+ channel: A grpc.Channel.
16
+ """
17
+ self.GetCustomerIdByWorkflowId = channel.unary_unary(
18
+ '/CustomerApi/GetCustomerIdByWorkflowId',
19
+ request_serializer=global__vo__grpc__service_dot_protos_dot_customer__api__pb2.GetCustomerIdByWorkflowIdRequest.SerializeToString,
20
+ response_deserializer=global__vo__grpc__service_dot_protos_dot_customer__api__pb2.GetCustomerIdByWorkflowIdResponse.FromString,
21
+ )
22
+
23
+
24
+ class CustomerApiServicer(object):
25
+ """Missing associated documentation comment in .proto file."""
26
+
27
+ def GetCustomerIdByWorkflowId(self, request, context):
28
+ """Missing associated documentation comment in .proto file."""
29
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
30
+ context.set_details('Method not implemented!')
31
+ raise NotImplementedError('Method not implemented!')
32
+
33
+
34
+ def add_CustomerApiServicer_to_server(servicer, server):
35
+ rpc_method_handlers = {
36
+ 'GetCustomerIdByWorkflowId': grpc.unary_unary_rpc_method_handler(
37
+ servicer.GetCustomerIdByWorkflowId,
38
+ request_deserializer=global__vo__grpc__service_dot_protos_dot_customer__api__pb2.GetCustomerIdByWorkflowIdRequest.FromString,
39
+ response_serializer=global__vo__grpc__service_dot_protos_dot_customer__api__pb2.GetCustomerIdByWorkflowIdResponse.SerializeToString,
40
+ ),
41
+ }
42
+ generic_handler = grpc.method_handlers_generic_handler(
43
+ 'CustomerApi', rpc_method_handlers)
44
+ server.add_generic_rpc_handlers((generic_handler,))
45
+
46
+
47
+ # This class is part of an EXPERIMENTAL API.
48
+ class CustomerApi(object):
49
+ """Missing associated documentation comment in .proto file."""
50
+
51
+ @staticmethod
52
+ def GetCustomerIdByWorkflowId(request,
53
+ target,
54
+ options=(),
55
+ channel_credentials=None,
56
+ call_credentials=None,
57
+ insecure=False,
58
+ compression=None,
59
+ wait_for_ready=None,
60
+ timeout=None,
61
+ metadata=None):
62
+ return grpc.experimental.unary_unary(request, target, '/CustomerApi/GetCustomerIdByWorkflowId',
63
+ global__vo__grpc__service_dot_protos_dot_customer__api__pb2.GetCustomerIdByWorkflowIdRequest.SerializeToString,
64
+ global__vo__grpc__service_dot_protos_dot_customer__api__pb2.GetCustomerIdByWorkflowIdResponse.FromString,
65
+ options, channel_credentials,
66
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@@ -16,7 +16,7 @@ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__
16
16
  from global_vo_grpc_service.protos import utils_pb2 as global__vo__grpc__service_dot_protos_dot_utils__pb2
17
17
 
18
18
 
19
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n:global_vo_grpc_service/protos/detection_instance_api.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a)global_vo_grpc_service/protos/utils.proto\"\xd5\x06\n\x11\x44\x65tectionInstance\x12\n\n\x02id\x18\x01 \x01(\x05\x12\x13\n\x0bworkflow_id\x18\x02 \x01(\x05\x12\x0f\n\x07part_id\x18\x03 \x01(\x05\x12\x10\n\x08image_id\x18\x04 \x01(\x05\x12\x14\n\x0c\x64\x65tection_id\x18\x05 \x01(\x05\x12\x11\n\tsource_id\x18\x06 \x01(\x05\x12\x1a\n\x08geo_bbox\x18\x07 \x01(\x0b\x32\x08.GeoBbox\x12\r\n\x05score\x18\x08 \x01(\x02\x12\x0e\n\x06height\x18\t \x01(\x02\x12/\n\x0b\x64\x65tected_at\x18\n \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\ncreated_at\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nupdated_at\x18\x0c \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\ndeleted_at\x18\r \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x13\n\x0b\x63\x61tegory_id\x18\x0e \x01(\x05\x12)\n\x16geo_point_shadow_start\x18\x0f \x01(\x0b\x32\t.GeoPoint\x12\'\n\x14geo_point_shadow_end\x18\x10 \x01(\x0b\x32\t.GeoPoint\x12\r\n\x05state\x18\x11 \x01(\t\x12\x12\n\ncreated_by\x18\x12 \x01(\x05\x12\x12\n\nupdated_by\x18\x13 \x01(\x05\x12\x17\n\x0fheight_override\x18\x14 \x01(\x02\x12\x1a\n\x12height_override_by\x18\x15 \x01(\x05\x12\x36\n\x12height_override_at\x18\x16 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x1c\n\x14height_override_desc\x18\x17 \x01(\t\x12-\n\tlocked_at\x18\x18 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x11\n\tlocked_by\x18\x19 \x01(\x05\x12\x12\n\nvisibility\x18\x1a \x01(\t\x12\x1d\n\x15\x65xclude_from_training\x18\x1b \x01(\x08\x12\r\n\x05notes\x18\x1c \x01(\t\x12\x0c\n\x04tags\x18\x1d \x01(\t\x12\x1a\n\x12shadow_discrepancy\x18\x1e \x01(\t\"N\n\'StageTrainingDetectionsByImageIdRequest\x12\x10\n\x08image_id\x18\x01 \x01(\x05\x12\x11\n\tsource_id\x18\x02 \x01(\x05\"L\n(StageTrainingDetectionsByImageIdResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\">\n*GetHumanVerifiedDetectionsByImageIdRequest\x12\x10\n\x08image_id\x18\x01 \x01(\x05\"\x93\x02\n+GetHumanVerifiedDetectionsByImageIdResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12\\\n\x13\x64\x65tection_instances\x18\x02 \x03(\x0b\x32?.GetHumanVerifiedDetectionsByImageIdResponse.DetectionInstances\x1a\x64\n\x12\x44\x65tectionInstances\x12\n\n\x02id\x18\x01 \x01(\x05\x12\x13\n\x0b\x63\x61tegory_id\x18\x02 \x01(\x05\x12\r\n\x05score\x18\x03 \x01(\x02\x12\x1e\n\npixel_bbox\x18\x04 \x01(\x0b\x32\n.PixelBbox\"U\n.GetDetectionInstancesByImageAndSourceIdRequest\x12\x10\n\x08image_id\x18\x01 \x01(\x05\x12\x11\n\tsource_id\x18\x02 \x01(\x05\"\x84\x01\n/GetDetectionInstancesByImageAndSourceIdResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12/\n\x13\x64\x65tection_instances\x18\x02 \x03(\x0b\x32\x12.DetectionInstance\"7\n$GetDetectionInstancesByH3CellRequest\x12\x0f\n\x07h3_cell\x18\x01 \x01(\t\"z\n%GetDetectionInstancesByH3CellResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12/\n\x13\x64\x65tection_instances\x18\x02 \x03(\x0b\x32\x12.DetectionInstance\"T\n\"DeleteDetectionInstanceByIdRequest\x12.\n\x12\x64\x65tection_instance\x18\x01 \x01(\x0b\x32\x12.DetectionInstance\"w\n#DeleteDetectionInstanceByIdResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12.\n\x12\x64\x65tection_instance\x18\x02 \x01(\x0b\x32\x12.DetectionInstance\"3\n$DeleteDetectionInstancesByIdsRequest\x12\x0b\n\x03ids\x18\x01 \x03(\x05\"I\n%DeleteDetectionInstancesByIdsResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\"F\n\'TransitionDetectionInstanceStateRequest\x12\n\n\x02id\x18\x01 \x01(\x05\x12\x0f\n\x07trigger\x18\x02 \x01(\t\"[\n(TransitionDetectionInstanceStateResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12\r\n\x05state\x18\x02 \x01(\t\"V\n$GetDetectionInstanceStateByIdRequest\x12.\n\x12\x64\x65tection_instance\x18\x01 \x01(\x0b\x32\x12.DetectionInstance\"y\n%GetDetectionInstanceStateByIdResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12.\n\x12\x64\x65tection_instance\x18\x02 \x01(\x0b\x32\x12.DetectionInstance\"B\n GetDetectionInstanceByIdsRequest\x12\x1e\n\x16\x64\x65tection_instance_ids\x18\x01 \x03(\x05\"S\n!GetDetectionInstanceByIdsResponse\x12.\n\x12\x64\x65tection_instance\x18\x01 \x03(\x0b\x32\x12.DetectionInstance\"Z\n(CreateDetectionInstanceViaMachineRequest\x12.\n\x12\x64\x65tection_instance\x18\x01 \x01(\x0b\x32\x12.DetectionInstance\"}\n)CreateDetectionInstanceViaMachineResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12.\n\x12\x64\x65tection_instance\x18\x02 \x01(\x0b\x32\x12.DetectionInstance\"\xbf\x01\n&CreateDetectionInstanceViaHumanRequest\x12\x10\n\x08image_id\x18\x01 \x01(\x05\x12\x13\n\x0b\x63\x61tegory_id\x18\x02 \x01(\x05\x12\x1a\n\x08geo_bbox\x18\x03 \x01(\x0b\x32\x08.GeoBbox\x12)\n\x16geo_point_shadow_start\x18\x04 \x01(\x0b\x32\t.GeoPoint\x12\'\n\x14geo_point_shadow_end\x18\x05 \x01(\x0b\x32\t.GeoPoint\"{\n\'CreateDetectionInstanceViaHumanResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12.\n\x12\x64\x65tection_instance\x18\x02 \x01(\x0b\x32\x12.DetectionInstance\"\x83\x03\n.ListUpdateDetectionInstanceFormConfigsResponse\x12n\n\x1cheight_override_desc_configs\x18\x01 \x03(\x0b\x32H.ListUpdateDetectionInstanceFormConfigsResponse.HeightOverrideDescConfig\x12\\\n\x12visibility_configs\x18\x02 \x03(\x0b\x32@.ListUpdateDetectionInstanceFormConfigsResponse.VisibilityConfig\x1a=\n\x18HeightOverrideDescConfig\x12\x0c\n\x04\x65num\x18\x01 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x1a\x44\n\x10VisibilityConfig\x12\x0c\n\x04\x65num\x18\x01 \x01(\t\x12\r\n\x05label\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\"\xd5\x01\n$ListShadowDiscrepancyConfigsResponse\x12\x61\n\x1ashadow_discrepancy_configs\x18\x01 \x03(\x0b\x32=.ListShadowDiscrepancyConfigsResponse.ShadowDiscrepancyConfig\x1aJ\n\x17ShadowDiscrepancyConfig\x12\x0c\n\x04\x65num\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\"\x9f\x01\n$GetFrequentTagsByCurrentUserResponse\x12K\n\x0ftag_frequencies\x18\x01 \x03(\x0b\x32\x32.GetFrequentTagsByCurrentUserResponse.TagFrequency\x1a*\n\x0cTagFrequency\x12\x0b\n\x03tag\x18\x01 \x01(\t\x12\r\n\x05\x63ount\x18\x02 \x01(\x05\"B\n4ProcessDetectionInstanceLocationElevationByIdRequest\x12\n\n\x02id\x18\x01 \x01(\x05\"Y\n5ProcessDetectionInstanceLocationElevationByIdResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\"<\n\x1dLockDetectionInstancesRequest\x12\x0b\n\x03ids\x18\x01 \x03(\x05\x12\x0e\n\x06\x61\x63tion\x18\x02 \x01(\t\"O\n\x1eLockDetectionInstancesResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12\x0b\n\x03ids\x18\x02 \x03(\x05\"\xe4\x01\n\x1eUpdateDetectionInstanceRequest\x12\n\n\x02id\x18\x01 \x01(\x05\x12\x13\n\x0b\x63\x61tegory_id\x18\x02 \x01(\x05\x12\x17\n\x0fheight_override\x18\x03 \x01(\x02\x12\x1c\n\x14height_override_desc\x18\x04 \x01(\t\x12\x12\n\nvisibility\x18\x05 \x01(\t\x12\x1d\n\x15\x65xclude_from_training\x18\x06 \x01(\x08\x12\r\n\x05notes\x18\x07 \x01(\t\x12\x0c\n\x04tags\x18\x08 \x01(\t\x12\x1a\n\x12shadow_discrepancy\x18\t \x01(\t\"O\n\x1fUpdateDetectionInstanceResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12\n\n\x02id\x18\x02 \x01(\x05\"X\n4UpdateDetectionInstanceCategoriesByCategoryIdRequest\x12\x0b\n\x03ids\x18\x01 \x03(\x05\x12\x13\n\x0b\x63\x61tegory_id\x18\x02 \x01(\x05\"f\n5UpdateDetectionInstanceCategoriesByCategoryIdResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12\x0b\n\x03ids\x18\x02 \x03(\x05\"\xa4\x01\n/UpdateDetectionInstanceGeoPointsViaHumanRequest\x12\x1d\n\x15\x64\x65tection_instance_id\x18\x01 \x01(\x05\x12)\n\x16geo_point_shadow_start\x18\x02 \x01(\x0b\x32\t.GeoPoint\x12\'\n\x14geo_point_shadow_end\x18\x03 \x01(\x0b\x32\t.GeoPoint\"\x84\x01\n0UpdateDetectionInstanceGeoPointsViaHumanResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12.\n\x12\x64\x65tection_instance\x18\x02 \x01(\x0b\x32\x12.DetectionInstance\"_\n-UpdateDetectionInstanceGeoBboxViaHumanRequest\x12.\n\x12\x64\x65tection_instance\x18\x01 \x01(\x0b\x32\x12.DetectionInstance\"\x82\x01\n.UpdateDetectionInstanceGeoBboxViaHumanResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12.\n\x12\x64\x65tection_instance\x18\x02 \x01(\x0b\x32\x12.DetectionInstance\"\xd8\x01\n(UpdateDetectionInstanceViaMachineRequest\x12\n\n\x02id\x18\x01 \x01(\x05\x12\x11\n\tsource_id\x18\x02 \x01(\x05\x12\r\n\x05score\x18\x03 \x01(\x02\x12\x0e\n\x06height\x18\x04 \x01(\x02\x12\x1a\n\x08geo_bbox\x18\x05 \x01(\x0b\x32\x08.GeoBbox\x12)\n\x16geo_point_shadow_start\x18\x06 \x01(\x0b\x32\t.GeoPoint\x12\'\n\x14geo_point_shadow_end\x18\x07 \x01(\x0b\x32\t.GeoPoint\"M\n)UpdateDetectionInstanceViaMachineResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\"5\n\'UpdateDetectionInstanceChippedAtRequest\x12\n\n\x02id\x18\x01 \x01(\x05\"L\n(UpdateDetectionInstanceChippedAtResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType2\xe9\x14\n\x14\x44\x65tectionInstanceApi\x12w\n StageTrainingDetectionsByImageId\x12(.StageTrainingDetectionsByImageIdRequest\x1a).StageTrainingDetectionsByImageIdResponse\x12\x80\x01\n#GetHumanVerifiedDetectionsByImageId\x12+.GetHumanVerifiedDetectionsByImageIdRequest\x1a,.GetHumanVerifiedDetectionsByImageIdResponse\x12z\n!CreateDetectionInstanceViaMachine\x12).CreateDetectionInstanceViaMachineRequest\x1a*.CreateDetectionInstanceViaMachineResponse\x12t\n\x1f\x43reateDetectionInstanceViaHuman\x12\'.CreateDetectionInstanceViaHumanRequest\x1a(.CreateDetectionInstanceViaHumanResponse\x12h\n\x1b\x44\x65leteDetectionInstanceById\x12#.DeleteDetectionInstanceByIdRequest\x1a$.DeleteDetectionInstanceByIdResponse\x12n\n\x1d\x44\x65leteDetectionInstancesByIds\x12%.DeleteDetectionInstancesByIdsRequest\x1a&.DeleteDetectionInstancesByIdsResponse\x12\x62\n\x19GetDetectionInstanceByIds\x12!.GetDetectionInstanceByIdsRequest\x1a\".GetDetectionInstanceByIdsResponse\x12n\n\x1dGetDetectionInstanceStateById\x12%.GetDetectionInstanceStateByIdRequest\x1a&.GetDetectionInstanceStateByIdResponse\x12\x8c\x01\n\'GetDetectionInstancesByImageAndSourceId\x12/.GetDetectionInstancesByImageAndSourceIdRequest\x1a\x30.GetDetectionInstancesByImageAndSourceIdResponse\x12n\n\x1dGetDetectionInstancesByH3Cell\x12%.GetDetectionInstancesByH3CellRequest\x1a&.GetDetectionInstancesByH3CellResponse\x12w\n TransitionDetectionInstanceState\x12(.TransitionDetectionInstanceStateRequest\x1a).TransitionDetectionInstanceStateResponse\x12q\n&ListUpdateDetectionInstanceFormConfigs\x12\x16.google.protobuf.Empty\x1a/.ListUpdateDetectionInstanceFormConfigsResponse\x12]\n\x1cListShadowDiscrepancyConfigs\x12\x16.google.protobuf.Empty\x1a%.ListShadowDiscrepancyConfigsResponse\x12]\n\x1cGetFrequentTagsByCurrentUser\x12\x16.google.protobuf.Empty\x1a%.GetFrequentTagsByCurrentUserResponse\x12\x9e\x01\n-ProcessDetectionInstanceLocationElevationById\x12\x35.ProcessDetectionInstanceLocationElevationByIdRequest\x1a\x36.ProcessDetectionInstanceLocationElevationByIdResponse\x12Y\n\x16LockDetectionInstances\x12\x1e.LockDetectionInstancesRequest\x1a\x1f.LockDetectionInstancesResponse\x12\\\n\x17UpdateDetectionInstance\x12\x1f.UpdateDetectionInstanceRequest\x1a .UpdateDetectionInstanceResponse\x12\x9e\x01\n-UpdateDetectionInstanceCategoriesByCategoryId\x12\x35.UpdateDetectionInstanceCategoriesByCategoryIdRequest\x1a\x36.UpdateDetectionInstanceCategoriesByCategoryIdResponse\x12\x89\x01\n&UpdateDetectionInstanceGeoBboxViaHuman\x12..UpdateDetectionInstanceGeoBboxViaHumanRequest\x1a/.UpdateDetectionInstanceGeoBboxViaHumanResponse\x12\x8f\x01\n(UpdateDetectionInstanceGeoPointsViaHuman\x12\x30.UpdateDetectionInstanceGeoPointsViaHumanRequest\x1a\x31.UpdateDetectionInstanceGeoPointsViaHumanResponse\x12z\n!UpdateDetectionInstanceViaMachine\x12).UpdateDetectionInstanceViaMachineRequest\x1a*.UpdateDetectionInstanceViaMachineResponse\x12w\n UpdateDetectionInstanceChippedAt\x12(.UpdateDetectionInstanceChippedAtRequest\x1a).UpdateDetectionInstanceChippedAtResponseb\x06proto3')
19
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n:global_vo_grpc_service/protos/detection_instance_api.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a)global_vo_grpc_service/protos/utils.proto\"\xba\x07\n\x11\x44\x65tectionInstance\x12\n\n\x02id\x18\x01 \x01(\x05\x12\x13\n\x0bworkflow_id\x18\x02 \x01(\x05\x12\x0f\n\x07part_id\x18\x03 \x01(\x05\x12\x10\n\x08image_id\x18\x04 \x01(\x05\x12\x14\n\x0c\x64\x65tection_id\x18\x05 \x01(\x05\x12\x11\n\tsource_id\x18\x06 \x01(\x05\x12\x1a\n\x08geo_bbox\x18\x07 \x01(\x0b\x32\x08.GeoBbox\x12\r\n\x05score\x18\x08 \x01(\x02\x12\x0e\n\x06height\x18\t \x01(\x02\x12/\n\x0b\x64\x65tected_at\x18\n \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\ncreated_at\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nupdated_at\x18\x0c \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\ndeleted_at\x18\r \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x13\n\x0b\x63\x61tegory_id\x18\x0e \x01(\x05\x12)\n\x16geo_point_shadow_start\x18\x0f \x01(\x0b\x32\t.GeoPoint\x12\'\n\x14geo_point_shadow_end\x18\x10 \x01(\x0b\x32\t.GeoPoint\x12\r\n\x05state\x18\x11 \x01(\t\x12\x12\n\ncreated_by\x18\x12 \x01(\x05\x12\x12\n\nupdated_by\x18\x13 \x01(\x05\x12\x17\n\x0fheight_override\x18\x14 \x01(\x02\x12\x1a\n\x12height_override_by\x18\x15 \x01(\x05\x12\x36\n\x12height_override_at\x18\x16 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x1c\n\x14height_override_desc\x18\x17 \x01(\t\x12-\n\tlocked_at\x18\x18 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x11\n\tlocked_by\x18\x19 \x01(\x05\x12\x12\n\nvisibility\x18\x1a \x01(\t\x12\x1d\n\x15\x65xclude_from_training\x18\x1b \x01(\x08\x12\r\n\x05notes\x18\x1c \x01(\t\x12\x0c\n\x04tags\x18\x1d \x01(\t\x12\x1a\n\x12shadow_discrepancy\x18\x1e \x01(\t\x12-\n\tlegacy_at\x18\x1f \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x1a\n\x12score_shadow_start\x18 \x01(\x02\x12\x18\n\x10score_shadow_end\x18! \x01(\x02\"N\n\'StageTrainingDetectionsByImageIdRequest\x12\x10\n\x08image_id\x18\x01 \x01(\x05\x12\x11\n\tsource_id\x18\x02 \x01(\x05\"L\n(StageTrainingDetectionsByImageIdResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\">\n*GetHumanVerifiedDetectionsByImageIdRequest\x12\x10\n\x08image_id\x18\x01 \x01(\x05\"\x93\x02\n+GetHumanVerifiedDetectionsByImageIdResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12\\\n\x13\x64\x65tection_instances\x18\x02 \x03(\x0b\x32?.GetHumanVerifiedDetectionsByImageIdResponse.DetectionInstances\x1a\x64\n\x12\x44\x65tectionInstances\x12\n\n\x02id\x18\x01 \x01(\x05\x12\x13\n\x0b\x63\x61tegory_id\x18\x02 \x01(\x05\x12\r\n\x05score\x18\x03 \x01(\x02\x12\x1e\n\npixel_bbox\x18\x04 \x01(\x0b\x32\n.PixelBbox\"U\n.GetDetectionInstancesByImageAndSourceIdRequest\x12\x10\n\x08image_id\x18\x01 \x01(\x05\x12\x11\n\tsource_id\x18\x02 \x01(\x05\"\x84\x01\n/GetDetectionInstancesByImageAndSourceIdResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12/\n\x13\x64\x65tection_instances\x18\x02 \x03(\x0b\x32\x12.DetectionInstance\"7\n$GetDetectionInstancesByH3CellRequest\x12\x0f\n\x07h3_cell\x18\x01 \x01(\t\"z\n%GetDetectionInstancesByH3CellResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12/\n\x13\x64\x65tection_instances\x18\x02 \x03(\x0b\x32\x12.DetectionInstance\"T\n\"DeleteDetectionInstanceByIdRequest\x12.\n\x12\x64\x65tection_instance\x18\x01 \x01(\x0b\x32\x12.DetectionInstance\"w\n#DeleteDetectionInstanceByIdResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12.\n\x12\x64\x65tection_instance\x18\x02 \x01(\x0b\x32\x12.DetectionInstance\"3\n$DeleteDetectionInstancesByIdsRequest\x12\x0b\n\x03ids\x18\x01 \x03(\x05\"I\n%DeleteDetectionInstancesByIdsResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\"F\n\'TransitionDetectionInstanceStateRequest\x12\n\n\x02id\x18\x01 \x01(\x05\x12\x0f\n\x07trigger\x18\x02 \x01(\t\"[\n(TransitionDetectionInstanceStateResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12\r\n\x05state\x18\x02 \x01(\t\"V\n$GetDetectionInstanceStateByIdRequest\x12.\n\x12\x64\x65tection_instance\x18\x01 \x01(\x0b\x32\x12.DetectionInstance\"y\n%GetDetectionInstanceStateByIdResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12.\n\x12\x64\x65tection_instance\x18\x02 \x01(\x0b\x32\x12.DetectionInstance\"B\n GetDetectionInstanceByIdsRequest\x12\x1e\n\x16\x64\x65tection_instance_ids\x18\x01 \x03(\x05\"S\n!GetDetectionInstanceByIdsResponse\x12.\n\x12\x64\x65tection_instance\x18\x01 \x03(\x0b\x32\x12.DetectionInstance\"Z\n(CreateDetectionInstanceViaMachineRequest\x12.\n\x12\x64\x65tection_instance\x18\x01 \x01(\x0b\x32\x12.DetectionInstance\"}\n)CreateDetectionInstanceViaMachineResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12.\n\x12\x64\x65tection_instance\x18\x02 \x01(\x0b\x32\x12.DetectionInstance\"\xbf\x01\n&CreateDetectionInstanceViaHumanRequest\x12\x10\n\x08image_id\x18\x01 \x01(\x05\x12\x13\n\x0b\x63\x61tegory_id\x18\x02 \x01(\x05\x12\x1a\n\x08geo_bbox\x18\x03 \x01(\x0b\x32\x08.GeoBbox\x12)\n\x16geo_point_shadow_start\x18\x04 \x01(\x0b\x32\t.GeoPoint\x12\'\n\x14geo_point_shadow_end\x18\x05 \x01(\x0b\x32\t.GeoPoint\"{\n\'CreateDetectionInstanceViaHumanResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12.\n\x12\x64\x65tection_instance\x18\x02 \x01(\x0b\x32\x12.DetectionInstance\"\x83\x03\n.ListUpdateDetectionInstanceFormConfigsResponse\x12n\n\x1cheight_override_desc_configs\x18\x01 \x03(\x0b\x32H.ListUpdateDetectionInstanceFormConfigsResponse.HeightOverrideDescConfig\x12\\\n\x12visibility_configs\x18\x02 \x03(\x0b\x32@.ListUpdateDetectionInstanceFormConfigsResponse.VisibilityConfig\x1a=\n\x18HeightOverrideDescConfig\x12\x0c\n\x04\x65num\x18\x01 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x1a\x44\n\x10VisibilityConfig\x12\x0c\n\x04\x65num\x18\x01 \x01(\t\x12\r\n\x05label\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\"\xd5\x01\n$ListShadowDiscrepancyConfigsResponse\x12\x61\n\x1ashadow_discrepancy_configs\x18\x01 \x03(\x0b\x32=.ListShadowDiscrepancyConfigsResponse.ShadowDiscrepancyConfig\x1aJ\n\x17ShadowDiscrepancyConfig\x12\x0c\n\x04\x65num\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\"\x9f\x01\n$GetFrequentTagsByCurrentUserResponse\x12K\n\x0ftag_frequencies\x18\x01 \x03(\x0b\x32\x32.GetFrequentTagsByCurrentUserResponse.TagFrequency\x1a*\n\x0cTagFrequency\x12\x0b\n\x03tag\x18\x01 \x01(\t\x12\r\n\x05\x63ount\x18\x02 \x01(\x05\"B\n4ProcessDetectionInstanceLocationElevationByIdRequest\x12\n\n\x02id\x18\x01 \x01(\x05\"Y\n5ProcessDetectionInstanceLocationElevationByIdResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\"<\n\x1dLockDetectionInstancesRequest\x12\x0b\n\x03ids\x18\x01 \x03(\x05\x12\x0e\n\x06\x61\x63tion\x18\x02 \x01(\t\"O\n\x1eLockDetectionInstancesResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12\x0b\n\x03ids\x18\x02 \x03(\x05\"\xe4\x01\n\x1eUpdateDetectionInstanceRequest\x12\n\n\x02id\x18\x01 \x01(\x05\x12\x13\n\x0b\x63\x61tegory_id\x18\x02 \x01(\x05\x12\x17\n\x0fheight_override\x18\x03 \x01(\x02\x12\x1c\n\x14height_override_desc\x18\x04 \x01(\t\x12\x12\n\nvisibility\x18\x05 \x01(\t\x12\x1d\n\x15\x65xclude_from_training\x18\x06 \x01(\x08\x12\r\n\x05notes\x18\x07 \x01(\t\x12\x0c\n\x04tags\x18\x08 \x01(\t\x12\x1a\n\x12shadow_discrepancy\x18\t \x01(\t\"O\n\x1fUpdateDetectionInstanceResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12\n\n\x02id\x18\x02 \x01(\x05\"X\n4UpdateDetectionInstanceCategoriesByCategoryIdRequest\x12\x0b\n\x03ids\x18\x01 \x03(\x05\x12\x13\n\x0b\x63\x61tegory_id\x18\x02 \x01(\x05\"f\n5UpdateDetectionInstanceCategoriesByCategoryIdResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12\x0b\n\x03ids\x18\x02 \x03(\x05\"d\n6UpdateExcludeFromTrainingByDetectionInstanceIdsRequest\x12\x0b\n\x03ids\x18\x01 \x03(\x05\x12\x1d\n\x15\x65xclude_from_training\x18\x02 \x01(\x08\"h\n7UpdateExcludeFromTrainingByDetectionInstanceIdsResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12\x0b\n\x03ids\x18\x02 \x03(\x05\"\xa4\x01\n/UpdateDetectionInstanceGeoPointsViaHumanRequest\x12\x1d\n\x15\x64\x65tection_instance_id\x18\x01 \x01(\x05\x12)\n\x16geo_point_shadow_start\x18\x02 \x01(\x0b\x32\t.GeoPoint\x12\'\n\x14geo_point_shadow_end\x18\x03 \x01(\x0b\x32\t.GeoPoint\"\x84\x01\n0UpdateDetectionInstanceGeoPointsViaHumanResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12.\n\x12\x64\x65tection_instance\x18\x02 \x01(\x0b\x32\x12.DetectionInstance\"_\n-UpdateDetectionInstanceGeoBboxViaHumanRequest\x12.\n\x12\x64\x65tection_instance\x18\x01 \x01(\x0b\x32\x12.DetectionInstance\"\x82\x01\n.UpdateDetectionInstanceGeoBboxViaHumanResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12.\n\x12\x64\x65tection_instance\x18\x02 \x01(\x0b\x32\x12.DetectionInstance\"\xd8\x01\n(UpdateDetectionInstanceViaMachineRequest\x12\n\n\x02id\x18\x01 \x01(\x05\x12\x11\n\tsource_id\x18\x02 \x01(\x05\x12\r\n\x05score\x18\x03 \x01(\x02\x12\x0e\n\x06height\x18\x04 \x01(\x02\x12\x1a\n\x08geo_bbox\x18\x05 \x01(\x0b\x32\x08.GeoBbox\x12)\n\x16geo_point_shadow_start\x18\x06 \x01(\x0b\x32\t.GeoPoint\x12\'\n\x14geo_point_shadow_end\x18\x07 \x01(\x0b\x32\t.GeoPoint\"M\n)UpdateDetectionInstanceViaMachineResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\"5\n\'UpdateDetectionInstanceChippedAtRequest\x12\n\n\x02id\x18\x01 \x01(\x05\"L\n(UpdateDetectionInstanceChippedAtResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType2\x90\x16\n\x14\x44\x65tectionInstanceApi\x12w\n StageTrainingDetectionsByImageId\x12(.StageTrainingDetectionsByImageIdRequest\x1a).StageTrainingDetectionsByImageIdResponse\x12\x80\x01\n#GetHumanVerifiedDetectionsByImageId\x12+.GetHumanVerifiedDetectionsByImageIdRequest\x1a,.GetHumanVerifiedDetectionsByImageIdResponse\x12z\n!CreateDetectionInstanceViaMachine\x12).CreateDetectionInstanceViaMachineRequest\x1a*.CreateDetectionInstanceViaMachineResponse\x12t\n\x1f\x43reateDetectionInstanceViaHuman\x12\'.CreateDetectionInstanceViaHumanRequest\x1a(.CreateDetectionInstanceViaHumanResponse\x12h\n\x1b\x44\x65leteDetectionInstanceById\x12#.DeleteDetectionInstanceByIdRequest\x1a$.DeleteDetectionInstanceByIdResponse\x12n\n\x1d\x44\x65leteDetectionInstancesByIds\x12%.DeleteDetectionInstancesByIdsRequest\x1a&.DeleteDetectionInstancesByIdsResponse\x12\x62\n\x19GetDetectionInstanceByIds\x12!.GetDetectionInstanceByIdsRequest\x1a\".GetDetectionInstanceByIdsResponse\x12n\n\x1dGetDetectionInstanceStateById\x12%.GetDetectionInstanceStateByIdRequest\x1a&.GetDetectionInstanceStateByIdResponse\x12\x8c\x01\n\'GetDetectionInstancesByImageAndSourceId\x12/.GetDetectionInstancesByImageAndSourceIdRequest\x1a\x30.GetDetectionInstancesByImageAndSourceIdResponse\x12n\n\x1dGetDetectionInstancesByH3Cell\x12%.GetDetectionInstancesByH3CellRequest\x1a&.GetDetectionInstancesByH3CellResponse\x12w\n TransitionDetectionInstanceState\x12(.TransitionDetectionInstanceStateRequest\x1a).TransitionDetectionInstanceStateResponse\x12q\n&ListUpdateDetectionInstanceFormConfigs\x12\x16.google.protobuf.Empty\x1a/.ListUpdateDetectionInstanceFormConfigsResponse\x12]\n\x1cListShadowDiscrepancyConfigs\x12\x16.google.protobuf.Empty\x1a%.ListShadowDiscrepancyConfigsResponse\x12]\n\x1cGetFrequentTagsByCurrentUser\x12\x16.google.protobuf.Empty\x1a%.GetFrequentTagsByCurrentUserResponse\x12\x9e\x01\n-ProcessDetectionInstanceLocationElevationById\x12\x35.ProcessDetectionInstanceLocationElevationByIdRequest\x1a\x36.ProcessDetectionInstanceLocationElevationByIdResponse\x12Y\n\x16LockDetectionInstances\x12\x1e.LockDetectionInstancesRequest\x1a\x1f.LockDetectionInstancesResponse\x12\\\n\x17UpdateDetectionInstance\x12\x1f.UpdateDetectionInstanceRequest\x1a .UpdateDetectionInstanceResponse\x12\x9e\x01\n-UpdateDetectionInstanceCategoriesByCategoryId\x12\x35.UpdateDetectionInstanceCategoriesByCategoryIdRequest\x1a\x36.UpdateDetectionInstanceCategoriesByCategoryIdResponse\x12\xa4\x01\n/UpdateExcludeFromTrainingByDetectionInstanceIds\x12\x37.UpdateExcludeFromTrainingByDetectionInstanceIdsRequest\x1a\x38.UpdateExcludeFromTrainingByDetectionInstanceIdsResponse\x12\x89\x01\n&UpdateDetectionInstanceGeoBboxViaHuman\x12..UpdateDetectionInstanceGeoBboxViaHumanRequest\x1a/.UpdateDetectionInstanceGeoBboxViaHumanResponse\x12\x8f\x01\n(UpdateDetectionInstanceGeoPointsViaHuman\x12\x30.UpdateDetectionInstanceGeoPointsViaHumanRequest\x1a\x31.UpdateDetectionInstanceGeoPointsViaHumanResponse\x12z\n!UpdateDetectionInstanceViaMachine\x12).UpdateDetectionInstanceViaMachineRequest\x1a*.UpdateDetectionInstanceViaMachineResponse\x12w\n UpdateDetectionInstanceChippedAt\x12(.UpdateDetectionInstanceChippedAtRequest\x1a).UpdateDetectionInstanceChippedAtResponseb\x06proto3')
20
20
 
21
21
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
22
22
  _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'global_vo_grpc_service.protos.detection_instance_api_pb2', globals())
@@ -24,99 +24,103 @@ if _descriptor._USE_C_DESCRIPTORS == False:
24
24
 
25
25
  DESCRIPTOR._options = None
26
26
  _DETECTIONINSTANCE._serialized_start=168
27
- _DETECTIONINSTANCE._serialized_end=1021
28
- _STAGETRAININGDETECTIONSBYIMAGEIDREQUEST._serialized_start=1023
29
- _STAGETRAININGDETECTIONSBYIMAGEIDREQUEST._serialized_end=1101
30
- _STAGETRAININGDETECTIONSBYIMAGEIDRESPONSE._serialized_start=1103
31
- _STAGETRAININGDETECTIONSBYIMAGEIDRESPONSE._serialized_end=1179
32
- _GETHUMANVERIFIEDDETECTIONSBYIMAGEIDREQUEST._serialized_start=1181
33
- _GETHUMANVERIFIEDDETECTIONSBYIMAGEIDREQUEST._serialized_end=1243
34
- _GETHUMANVERIFIEDDETECTIONSBYIMAGEIDRESPONSE._serialized_start=1246
35
- _GETHUMANVERIFIEDDETECTIONSBYIMAGEIDRESPONSE._serialized_end=1521
36
- _GETHUMANVERIFIEDDETECTIONSBYIMAGEIDRESPONSE_DETECTIONINSTANCES._serialized_start=1421
37
- _GETHUMANVERIFIEDDETECTIONSBYIMAGEIDRESPONSE_DETECTIONINSTANCES._serialized_end=1521
38
- _GETDETECTIONINSTANCESBYIMAGEANDSOURCEIDREQUEST._serialized_start=1523
39
- _GETDETECTIONINSTANCESBYIMAGEANDSOURCEIDREQUEST._serialized_end=1608
40
- _GETDETECTIONINSTANCESBYIMAGEANDSOURCEIDRESPONSE._serialized_start=1611
41
- _GETDETECTIONINSTANCESBYIMAGEANDSOURCEIDRESPONSE._serialized_end=1743
42
- _GETDETECTIONINSTANCESBYH3CELLREQUEST._serialized_start=1745
43
- _GETDETECTIONINSTANCESBYH3CELLREQUEST._serialized_end=1800
44
- _GETDETECTIONINSTANCESBYH3CELLRESPONSE._serialized_start=1802
45
- _GETDETECTIONINSTANCESBYH3CELLRESPONSE._serialized_end=1924
46
- _DELETEDETECTIONINSTANCEBYIDREQUEST._serialized_start=1926
47
- _DELETEDETECTIONINSTANCEBYIDREQUEST._serialized_end=2010
48
- _DELETEDETECTIONINSTANCEBYIDRESPONSE._serialized_start=2012
49
- _DELETEDETECTIONINSTANCEBYIDRESPONSE._serialized_end=2131
50
- _DELETEDETECTIONINSTANCESBYIDSREQUEST._serialized_start=2133
51
- _DELETEDETECTIONINSTANCESBYIDSREQUEST._serialized_end=2184
52
- _DELETEDETECTIONINSTANCESBYIDSRESPONSE._serialized_start=2186
53
- _DELETEDETECTIONINSTANCESBYIDSRESPONSE._serialized_end=2259
54
- _TRANSITIONDETECTIONINSTANCESTATEREQUEST._serialized_start=2261
55
- _TRANSITIONDETECTIONINSTANCESTATEREQUEST._serialized_end=2331
56
- _TRANSITIONDETECTIONINSTANCESTATERESPONSE._serialized_start=2333
57
- _TRANSITIONDETECTIONINSTANCESTATERESPONSE._serialized_end=2424
58
- _GETDETECTIONINSTANCESTATEBYIDREQUEST._serialized_start=2426
59
- _GETDETECTIONINSTANCESTATEBYIDREQUEST._serialized_end=2512
60
- _GETDETECTIONINSTANCESTATEBYIDRESPONSE._serialized_start=2514
61
- _GETDETECTIONINSTANCESTATEBYIDRESPONSE._serialized_end=2635
62
- _GETDETECTIONINSTANCEBYIDSREQUEST._serialized_start=2637
63
- _GETDETECTIONINSTANCEBYIDSREQUEST._serialized_end=2703
64
- _GETDETECTIONINSTANCEBYIDSRESPONSE._serialized_start=2705
65
- _GETDETECTIONINSTANCEBYIDSRESPONSE._serialized_end=2788
66
- _CREATEDETECTIONINSTANCEVIAMACHINEREQUEST._serialized_start=2790
67
- _CREATEDETECTIONINSTANCEVIAMACHINEREQUEST._serialized_end=2880
68
- _CREATEDETECTIONINSTANCEVIAMACHINERESPONSE._serialized_start=2882
69
- _CREATEDETECTIONINSTANCEVIAMACHINERESPONSE._serialized_end=3007
70
- _CREATEDETECTIONINSTANCEVIAHUMANREQUEST._serialized_start=3010
71
- _CREATEDETECTIONINSTANCEVIAHUMANREQUEST._serialized_end=3201
72
- _CREATEDETECTIONINSTANCEVIAHUMANRESPONSE._serialized_start=3203
73
- _CREATEDETECTIONINSTANCEVIAHUMANRESPONSE._serialized_end=3326
74
- _LISTUPDATEDETECTIONINSTANCEFORMCONFIGSRESPONSE._serialized_start=3329
75
- _LISTUPDATEDETECTIONINSTANCEFORMCONFIGSRESPONSE._serialized_end=3716
76
- _LISTUPDATEDETECTIONINSTANCEFORMCONFIGSRESPONSE_HEIGHTOVERRIDEDESCCONFIG._serialized_start=3585
77
- _LISTUPDATEDETECTIONINSTANCEFORMCONFIGSRESPONSE_HEIGHTOVERRIDEDESCCONFIG._serialized_end=3646
78
- _LISTUPDATEDETECTIONINSTANCEFORMCONFIGSRESPONSE_VISIBILITYCONFIG._serialized_start=3648
79
- _LISTUPDATEDETECTIONINSTANCEFORMCONFIGSRESPONSE_VISIBILITYCONFIG._serialized_end=3716
80
- _LISTSHADOWDISCREPANCYCONFIGSRESPONSE._serialized_start=3719
81
- _LISTSHADOWDISCREPANCYCONFIGSRESPONSE._serialized_end=3932
82
- _LISTSHADOWDISCREPANCYCONFIGSRESPONSE_SHADOWDISCREPANCYCONFIG._serialized_start=3858
83
- _LISTSHADOWDISCREPANCYCONFIGSRESPONSE_SHADOWDISCREPANCYCONFIG._serialized_end=3932
84
- _GETFREQUENTTAGSBYCURRENTUSERRESPONSE._serialized_start=3935
85
- _GETFREQUENTTAGSBYCURRENTUSERRESPONSE._serialized_end=4094
86
- _GETFREQUENTTAGSBYCURRENTUSERRESPONSE_TAGFREQUENCY._serialized_start=4052
87
- _GETFREQUENTTAGSBYCURRENTUSERRESPONSE_TAGFREQUENCY._serialized_end=4094
88
- _PROCESSDETECTIONINSTANCELOCATIONELEVATIONBYIDREQUEST._serialized_start=4096
89
- _PROCESSDETECTIONINSTANCELOCATIONELEVATIONBYIDREQUEST._serialized_end=4162
90
- _PROCESSDETECTIONINSTANCELOCATIONELEVATIONBYIDRESPONSE._serialized_start=4164
91
- _PROCESSDETECTIONINSTANCELOCATIONELEVATIONBYIDRESPONSE._serialized_end=4253
92
- _LOCKDETECTIONINSTANCESREQUEST._serialized_start=4255
93
- _LOCKDETECTIONINSTANCESREQUEST._serialized_end=4315
94
- _LOCKDETECTIONINSTANCESRESPONSE._serialized_start=4317
95
- _LOCKDETECTIONINSTANCESRESPONSE._serialized_end=4396
96
- _UPDATEDETECTIONINSTANCEREQUEST._serialized_start=4399
97
- _UPDATEDETECTIONINSTANCEREQUEST._serialized_end=4627
98
- _UPDATEDETECTIONINSTANCERESPONSE._serialized_start=4629
99
- _UPDATEDETECTIONINSTANCERESPONSE._serialized_end=4708
100
- _UPDATEDETECTIONINSTANCECATEGORIESBYCATEGORYIDREQUEST._serialized_start=4710
101
- _UPDATEDETECTIONINSTANCECATEGORIESBYCATEGORYIDREQUEST._serialized_end=4798
102
- _UPDATEDETECTIONINSTANCECATEGORIESBYCATEGORYIDRESPONSE._serialized_start=4800
103
- _UPDATEDETECTIONINSTANCECATEGORIESBYCATEGORYIDRESPONSE._serialized_end=4902
104
- _UPDATEDETECTIONINSTANCEGEOPOINTSVIAHUMANREQUEST._serialized_start=4905
105
- _UPDATEDETECTIONINSTANCEGEOPOINTSVIAHUMANREQUEST._serialized_end=5069
106
- _UPDATEDETECTIONINSTANCEGEOPOINTSVIAHUMANRESPONSE._serialized_start=5072
107
- _UPDATEDETECTIONINSTANCEGEOPOINTSVIAHUMANRESPONSE._serialized_end=5204
108
- _UPDATEDETECTIONINSTANCEGEOBBOXVIAHUMANREQUEST._serialized_start=5206
109
- _UPDATEDETECTIONINSTANCEGEOBBOXVIAHUMANREQUEST._serialized_end=5301
110
- _UPDATEDETECTIONINSTANCEGEOBBOXVIAHUMANRESPONSE._serialized_start=5304
111
- _UPDATEDETECTIONINSTANCEGEOBBOXVIAHUMANRESPONSE._serialized_end=5434
112
- _UPDATEDETECTIONINSTANCEVIAMACHINEREQUEST._serialized_start=5437
113
- _UPDATEDETECTIONINSTANCEVIAMACHINEREQUEST._serialized_end=5653
114
- _UPDATEDETECTIONINSTANCEVIAMACHINERESPONSE._serialized_start=5655
115
- _UPDATEDETECTIONINSTANCEVIAMACHINERESPONSE._serialized_end=5732
116
- _UPDATEDETECTIONINSTANCECHIPPEDATREQUEST._serialized_start=5734
117
- _UPDATEDETECTIONINSTANCECHIPPEDATREQUEST._serialized_end=5787
118
- _UPDATEDETECTIONINSTANCECHIPPEDATRESPONSE._serialized_start=5789
119
- _UPDATEDETECTIONINSTANCECHIPPEDATRESPONSE._serialized_end=5865
120
- _DETECTIONINSTANCEAPI._serialized_start=5868
121
- _DETECTIONINSTANCEAPI._serialized_end=8533
27
+ _DETECTIONINSTANCE._serialized_end=1122
28
+ _STAGETRAININGDETECTIONSBYIMAGEIDREQUEST._serialized_start=1124
29
+ _STAGETRAININGDETECTIONSBYIMAGEIDREQUEST._serialized_end=1202
30
+ _STAGETRAININGDETECTIONSBYIMAGEIDRESPONSE._serialized_start=1204
31
+ _STAGETRAININGDETECTIONSBYIMAGEIDRESPONSE._serialized_end=1280
32
+ _GETHUMANVERIFIEDDETECTIONSBYIMAGEIDREQUEST._serialized_start=1282
33
+ _GETHUMANVERIFIEDDETECTIONSBYIMAGEIDREQUEST._serialized_end=1344
34
+ _GETHUMANVERIFIEDDETECTIONSBYIMAGEIDRESPONSE._serialized_start=1347
35
+ _GETHUMANVERIFIEDDETECTIONSBYIMAGEIDRESPONSE._serialized_end=1622
36
+ _GETHUMANVERIFIEDDETECTIONSBYIMAGEIDRESPONSE_DETECTIONINSTANCES._serialized_start=1522
37
+ _GETHUMANVERIFIEDDETECTIONSBYIMAGEIDRESPONSE_DETECTIONINSTANCES._serialized_end=1622
38
+ _GETDETECTIONINSTANCESBYIMAGEANDSOURCEIDREQUEST._serialized_start=1624
39
+ _GETDETECTIONINSTANCESBYIMAGEANDSOURCEIDREQUEST._serialized_end=1709
40
+ _GETDETECTIONINSTANCESBYIMAGEANDSOURCEIDRESPONSE._serialized_start=1712
41
+ _GETDETECTIONINSTANCESBYIMAGEANDSOURCEIDRESPONSE._serialized_end=1844
42
+ _GETDETECTIONINSTANCESBYH3CELLREQUEST._serialized_start=1846
43
+ _GETDETECTIONINSTANCESBYH3CELLREQUEST._serialized_end=1901
44
+ _GETDETECTIONINSTANCESBYH3CELLRESPONSE._serialized_start=1903
45
+ _GETDETECTIONINSTANCESBYH3CELLRESPONSE._serialized_end=2025
46
+ _DELETEDETECTIONINSTANCEBYIDREQUEST._serialized_start=2027
47
+ _DELETEDETECTIONINSTANCEBYIDREQUEST._serialized_end=2111
48
+ _DELETEDETECTIONINSTANCEBYIDRESPONSE._serialized_start=2113
49
+ _DELETEDETECTIONINSTANCEBYIDRESPONSE._serialized_end=2232
50
+ _DELETEDETECTIONINSTANCESBYIDSREQUEST._serialized_start=2234
51
+ _DELETEDETECTIONINSTANCESBYIDSREQUEST._serialized_end=2285
52
+ _DELETEDETECTIONINSTANCESBYIDSRESPONSE._serialized_start=2287
53
+ _DELETEDETECTIONINSTANCESBYIDSRESPONSE._serialized_end=2360
54
+ _TRANSITIONDETECTIONINSTANCESTATEREQUEST._serialized_start=2362
55
+ _TRANSITIONDETECTIONINSTANCESTATEREQUEST._serialized_end=2432
56
+ _TRANSITIONDETECTIONINSTANCESTATERESPONSE._serialized_start=2434
57
+ _TRANSITIONDETECTIONINSTANCESTATERESPONSE._serialized_end=2525
58
+ _GETDETECTIONINSTANCESTATEBYIDREQUEST._serialized_start=2527
59
+ _GETDETECTIONINSTANCESTATEBYIDREQUEST._serialized_end=2613
60
+ _GETDETECTIONINSTANCESTATEBYIDRESPONSE._serialized_start=2615
61
+ _GETDETECTIONINSTANCESTATEBYIDRESPONSE._serialized_end=2736
62
+ _GETDETECTIONINSTANCEBYIDSREQUEST._serialized_start=2738
63
+ _GETDETECTIONINSTANCEBYIDSREQUEST._serialized_end=2804
64
+ _GETDETECTIONINSTANCEBYIDSRESPONSE._serialized_start=2806
65
+ _GETDETECTIONINSTANCEBYIDSRESPONSE._serialized_end=2889
66
+ _CREATEDETECTIONINSTANCEVIAMACHINEREQUEST._serialized_start=2891
67
+ _CREATEDETECTIONINSTANCEVIAMACHINEREQUEST._serialized_end=2981
68
+ _CREATEDETECTIONINSTANCEVIAMACHINERESPONSE._serialized_start=2983
69
+ _CREATEDETECTIONINSTANCEVIAMACHINERESPONSE._serialized_end=3108
70
+ _CREATEDETECTIONINSTANCEVIAHUMANREQUEST._serialized_start=3111
71
+ _CREATEDETECTIONINSTANCEVIAHUMANREQUEST._serialized_end=3302
72
+ _CREATEDETECTIONINSTANCEVIAHUMANRESPONSE._serialized_start=3304
73
+ _CREATEDETECTIONINSTANCEVIAHUMANRESPONSE._serialized_end=3427
74
+ _LISTUPDATEDETECTIONINSTANCEFORMCONFIGSRESPONSE._serialized_start=3430
75
+ _LISTUPDATEDETECTIONINSTANCEFORMCONFIGSRESPONSE._serialized_end=3817
76
+ _LISTUPDATEDETECTIONINSTANCEFORMCONFIGSRESPONSE_HEIGHTOVERRIDEDESCCONFIG._serialized_start=3686
77
+ _LISTUPDATEDETECTIONINSTANCEFORMCONFIGSRESPONSE_HEIGHTOVERRIDEDESCCONFIG._serialized_end=3747
78
+ _LISTUPDATEDETECTIONINSTANCEFORMCONFIGSRESPONSE_VISIBILITYCONFIG._serialized_start=3749
79
+ _LISTUPDATEDETECTIONINSTANCEFORMCONFIGSRESPONSE_VISIBILITYCONFIG._serialized_end=3817
80
+ _LISTSHADOWDISCREPANCYCONFIGSRESPONSE._serialized_start=3820
81
+ _LISTSHADOWDISCREPANCYCONFIGSRESPONSE._serialized_end=4033
82
+ _LISTSHADOWDISCREPANCYCONFIGSRESPONSE_SHADOWDISCREPANCYCONFIG._serialized_start=3959
83
+ _LISTSHADOWDISCREPANCYCONFIGSRESPONSE_SHADOWDISCREPANCYCONFIG._serialized_end=4033
84
+ _GETFREQUENTTAGSBYCURRENTUSERRESPONSE._serialized_start=4036
85
+ _GETFREQUENTTAGSBYCURRENTUSERRESPONSE._serialized_end=4195
86
+ _GETFREQUENTTAGSBYCURRENTUSERRESPONSE_TAGFREQUENCY._serialized_start=4153
87
+ _GETFREQUENTTAGSBYCURRENTUSERRESPONSE_TAGFREQUENCY._serialized_end=4195
88
+ _PROCESSDETECTIONINSTANCELOCATIONELEVATIONBYIDREQUEST._serialized_start=4197
89
+ _PROCESSDETECTIONINSTANCELOCATIONELEVATIONBYIDREQUEST._serialized_end=4263
90
+ _PROCESSDETECTIONINSTANCELOCATIONELEVATIONBYIDRESPONSE._serialized_start=4265
91
+ _PROCESSDETECTIONINSTANCELOCATIONELEVATIONBYIDRESPONSE._serialized_end=4354
92
+ _LOCKDETECTIONINSTANCESREQUEST._serialized_start=4356
93
+ _LOCKDETECTIONINSTANCESREQUEST._serialized_end=4416
94
+ _LOCKDETECTIONINSTANCESRESPONSE._serialized_start=4418
95
+ _LOCKDETECTIONINSTANCESRESPONSE._serialized_end=4497
96
+ _UPDATEDETECTIONINSTANCEREQUEST._serialized_start=4500
97
+ _UPDATEDETECTIONINSTANCEREQUEST._serialized_end=4728
98
+ _UPDATEDETECTIONINSTANCERESPONSE._serialized_start=4730
99
+ _UPDATEDETECTIONINSTANCERESPONSE._serialized_end=4809
100
+ _UPDATEDETECTIONINSTANCECATEGORIESBYCATEGORYIDREQUEST._serialized_start=4811
101
+ _UPDATEDETECTIONINSTANCECATEGORIESBYCATEGORYIDREQUEST._serialized_end=4899
102
+ _UPDATEDETECTIONINSTANCECATEGORIESBYCATEGORYIDRESPONSE._serialized_start=4901
103
+ _UPDATEDETECTIONINSTANCECATEGORIESBYCATEGORYIDRESPONSE._serialized_end=5003
104
+ _UPDATEEXCLUDEFROMTRAININGBYDETECTIONINSTANCEIDSREQUEST._serialized_start=5005
105
+ _UPDATEEXCLUDEFROMTRAININGBYDETECTIONINSTANCEIDSREQUEST._serialized_end=5105
106
+ _UPDATEEXCLUDEFROMTRAININGBYDETECTIONINSTANCEIDSRESPONSE._serialized_start=5107
107
+ _UPDATEEXCLUDEFROMTRAININGBYDETECTIONINSTANCEIDSRESPONSE._serialized_end=5211
108
+ _UPDATEDETECTIONINSTANCEGEOPOINTSVIAHUMANREQUEST._serialized_start=5214
109
+ _UPDATEDETECTIONINSTANCEGEOPOINTSVIAHUMANREQUEST._serialized_end=5378
110
+ _UPDATEDETECTIONINSTANCEGEOPOINTSVIAHUMANRESPONSE._serialized_start=5381
111
+ _UPDATEDETECTIONINSTANCEGEOPOINTSVIAHUMANRESPONSE._serialized_end=5513
112
+ _UPDATEDETECTIONINSTANCEGEOBBOXVIAHUMANREQUEST._serialized_start=5515
113
+ _UPDATEDETECTIONINSTANCEGEOBBOXVIAHUMANREQUEST._serialized_end=5610
114
+ _UPDATEDETECTIONINSTANCEGEOBBOXVIAHUMANRESPONSE._serialized_start=5613
115
+ _UPDATEDETECTIONINSTANCEGEOBBOXVIAHUMANRESPONSE._serialized_end=5743
116
+ _UPDATEDETECTIONINSTANCEVIAMACHINEREQUEST._serialized_start=5746
117
+ _UPDATEDETECTIONINSTANCEVIAMACHINEREQUEST._serialized_end=5962
118
+ _UPDATEDETECTIONINSTANCEVIAMACHINERESPONSE._serialized_start=5964
119
+ _UPDATEDETECTIONINSTANCEVIAMACHINERESPONSE._serialized_end=6041
120
+ _UPDATEDETECTIONINSTANCECHIPPEDATREQUEST._serialized_start=6043
121
+ _UPDATEDETECTIONINSTANCECHIPPEDATREQUEST._serialized_end=6096
122
+ _UPDATEDETECTIONINSTANCECHIPPEDATRESPONSE._serialized_start=6098
123
+ _UPDATEDETECTIONINSTANCECHIPPEDATRESPONSE._serialized_end=6174
124
+ _DETECTIONINSTANCEAPI._serialized_start=6177
125
+ _DETECTIONINSTANCEAPI._serialized_end=9009
122
126
  # @@protoc_insertion_point(module_scope)
@@ -105,6 +105,11 @@ class DetectionInstanceApiStub(object):
105
105
  request_serializer=global__vo__grpc__service_dot_protos_dot_detection__instance__api__pb2.UpdateDetectionInstanceCategoriesByCategoryIdRequest.SerializeToString,
106
106
  response_deserializer=global__vo__grpc__service_dot_protos_dot_detection__instance__api__pb2.UpdateDetectionInstanceCategoriesByCategoryIdResponse.FromString,
107
107
  )
108
+ self.UpdateExcludeFromTrainingByDetectionInstanceIds = channel.unary_unary(
109
+ '/DetectionInstanceApi/UpdateExcludeFromTrainingByDetectionInstanceIds',
110
+ request_serializer=global__vo__grpc__service_dot_protos_dot_detection__instance__api__pb2.UpdateExcludeFromTrainingByDetectionInstanceIdsRequest.SerializeToString,
111
+ response_deserializer=global__vo__grpc__service_dot_protos_dot_detection__instance__api__pb2.UpdateExcludeFromTrainingByDetectionInstanceIdsResponse.FromString,
112
+ )
108
113
  self.UpdateDetectionInstanceGeoBboxViaHuman = channel.unary_unary(
109
114
  '/DetectionInstanceApi/UpdateDetectionInstanceGeoBboxViaHuman',
110
115
  request_serializer=global__vo__grpc__service_dot_protos_dot_detection__instance__api__pb2.UpdateDetectionInstanceGeoBboxViaHumanRequest.SerializeToString,
@@ -240,6 +245,12 @@ class DetectionInstanceApiServicer(object):
240
245
  context.set_details('Method not implemented!')
241
246
  raise NotImplementedError('Method not implemented!')
242
247
 
248
+ def UpdateExcludeFromTrainingByDetectionInstanceIds(self, request, context):
249
+ """Missing associated documentation comment in .proto file."""
250
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
251
+ context.set_details('Method not implemented!')
252
+ raise NotImplementedError('Method not implemented!')
253
+
243
254
  def UpdateDetectionInstanceGeoBboxViaHuman(self, request, context):
244
255
  """Missing associated documentation comment in .proto file."""
245
256
  context.set_code(grpc.StatusCode.UNIMPLEMENTED)
@@ -357,6 +368,11 @@ def add_DetectionInstanceApiServicer_to_server(servicer, server):
357
368
  request_deserializer=global__vo__grpc__service_dot_protos_dot_detection__instance__api__pb2.UpdateDetectionInstanceCategoriesByCategoryIdRequest.FromString,
358
369
  response_serializer=global__vo__grpc__service_dot_protos_dot_detection__instance__api__pb2.UpdateDetectionInstanceCategoriesByCategoryIdResponse.SerializeToString,
359
370
  ),
371
+ 'UpdateExcludeFromTrainingByDetectionInstanceIds': grpc.unary_unary_rpc_method_handler(
372
+ servicer.UpdateExcludeFromTrainingByDetectionInstanceIds,
373
+ request_deserializer=global__vo__grpc__service_dot_protos_dot_detection__instance__api__pb2.UpdateExcludeFromTrainingByDetectionInstanceIdsRequest.FromString,
374
+ response_serializer=global__vo__grpc__service_dot_protos_dot_detection__instance__api__pb2.UpdateExcludeFromTrainingByDetectionInstanceIdsResponse.SerializeToString,
375
+ ),
360
376
  'UpdateDetectionInstanceGeoBboxViaHuman': grpc.unary_unary_rpc_method_handler(
361
377
  servicer.UpdateDetectionInstanceGeoBboxViaHuman,
362
378
  request_deserializer=global__vo__grpc__service_dot_protos_dot_detection__instance__api__pb2.UpdateDetectionInstanceGeoBboxViaHumanRequest.FromString,
@@ -693,6 +709,23 @@ class DetectionInstanceApi(object):
693
709
  options, channel_credentials,
694
710
  insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
695
711
 
712
+ @staticmethod
713
+ def UpdateExcludeFromTrainingByDetectionInstanceIds(request,
714
+ target,
715
+ options=(),
716
+ channel_credentials=None,
717
+ call_credentials=None,
718
+ insecure=False,
719
+ compression=None,
720
+ wait_for_ready=None,
721
+ timeout=None,
722
+ metadata=None):
723
+ return grpc.experimental.unary_unary(request, target, '/DetectionInstanceApi/UpdateExcludeFromTrainingByDetectionInstanceIds',
724
+ global__vo__grpc__service_dot_protos_dot_detection__instance__api__pb2.UpdateExcludeFromTrainingByDetectionInstanceIdsRequest.SerializeToString,
725
+ global__vo__grpc__service_dot_protos_dot_detection__instance__api__pb2.UpdateExcludeFromTrainingByDetectionInstanceIdsResponse.FromString,
726
+ options, channel_credentials,
727
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
728
+
696
729
  @staticmethod
697
730
  def UpdateDetectionInstanceGeoBboxViaHuman(request,
698
731
  target,