fsai-proto-specs 0.0.388__py3-none-any.whl → 0.0.397__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.
- {fsai_proto_specs-0.0.388.dist-info → fsai_proto_specs-0.0.397.dist-info}/METADATA +1 -1
- {fsai_proto_specs-0.0.388.dist-info → fsai_proto_specs-0.0.397.dist-info}/RECORD +16 -12
- global_vo_grpc_service/protos/correction_api_pb2.py +49 -0
- global_vo_grpc_service/protos/correction_api_pb2_grpc.py +198 -0
- global_vo_grpc_service/protos/detection_instance_api_pb2.py +100 -100
- global_vo_grpc_service/protos/image_metadata_api_pb2.py +24 -24
- global_vo_grpc_service/protos/model_assessment_api_pb2.py +20 -17
- global_vo_grpc_service/protos/model_assessment_api_pb2_grpc.py +34 -0
- global_vo_grpc_service/protos/product_changelog_api_pb2.py +44 -0
- global_vo_grpc_service/protos/product_changelog_api_pb2_grpc.py +166 -0
- global_vo_grpc_service/protos/utils_pb2.py +16 -16
- global_vo_grpc_service/protos/workflow_api_pb2.py +7 -3
- global_vo_grpc_service/protos/workflow_api_pb2_grpc.py +33 -0
- search_grpc_service/protos/search_api_pb2.py +3 -7
- search_grpc_service/protos/search_api_pb2_grpc.py +0 -33
- {fsai_proto_specs-0.0.388.dist-info → fsai_proto_specs-0.0.397.dist-info}/WHEEL +0 -0
|
@@ -29,11 +29,6 @@ class SearchApiStub(object):
|
|
|
29
29
|
request_serializer=search__grpc__service_dot_protos_dot_search__api__pb2.GetLockedDetectionsByCategoryIdRequest.SerializeToString,
|
|
30
30
|
response_deserializer=search__grpc__service_dot_protos_dot_search__api__pb2.GetLockedDetectionsByCategoryIdResponse.FromString,
|
|
31
31
|
)
|
|
32
|
-
self.GetMissionScanRecommendationByMissionId = channel.unary_unary(
|
|
33
|
-
'/SearchApi/GetMissionScanRecommendationByMissionId',
|
|
34
|
-
request_serializer=search__grpc__service_dot_protos_dot_search__api__pb2.GetMissionScanRecommendationByMissionIdRequest.SerializeToString,
|
|
35
|
-
response_deserializer=search__grpc__service_dot_protos_dot_search__api__pb2.GetMissionScanRecommendationByMissionIdResponse.FromString,
|
|
36
|
-
)
|
|
37
32
|
|
|
38
33
|
|
|
39
34
|
class SearchApiServicer(object):
|
|
@@ -57,12 +52,6 @@ class SearchApiServicer(object):
|
|
|
57
52
|
context.set_details('Method not implemented!')
|
|
58
53
|
raise NotImplementedError('Method not implemented!')
|
|
59
54
|
|
|
60
|
-
def GetMissionScanRecommendationByMissionId(self, request, context):
|
|
61
|
-
"""Missing associated documentation comment in .proto file."""
|
|
62
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
63
|
-
context.set_details('Method not implemented!')
|
|
64
|
-
raise NotImplementedError('Method not implemented!')
|
|
65
|
-
|
|
66
55
|
|
|
67
56
|
def add_SearchApiServicer_to_server(servicer, server):
|
|
68
57
|
rpc_method_handlers = {
|
|
@@ -81,11 +70,6 @@ def add_SearchApiServicer_to_server(servicer, server):
|
|
|
81
70
|
request_deserializer=search__grpc__service_dot_protos_dot_search__api__pb2.GetLockedDetectionsByCategoryIdRequest.FromString,
|
|
82
71
|
response_serializer=search__grpc__service_dot_protos_dot_search__api__pb2.GetLockedDetectionsByCategoryIdResponse.SerializeToString,
|
|
83
72
|
),
|
|
84
|
-
'GetMissionScanRecommendationByMissionId': grpc.unary_unary_rpc_method_handler(
|
|
85
|
-
servicer.GetMissionScanRecommendationByMissionId,
|
|
86
|
-
request_deserializer=search__grpc__service_dot_protos_dot_search__api__pb2.GetMissionScanRecommendationByMissionIdRequest.FromString,
|
|
87
|
-
response_serializer=search__grpc__service_dot_protos_dot_search__api__pb2.GetMissionScanRecommendationByMissionIdResponse.SerializeToString,
|
|
88
|
-
),
|
|
89
73
|
}
|
|
90
74
|
generic_handler = grpc.method_handlers_generic_handler(
|
|
91
75
|
'SearchApi', rpc_method_handlers)
|
|
@@ -146,20 +130,3 @@ class SearchApi(object):
|
|
|
146
130
|
search__grpc__service_dot_protos_dot_search__api__pb2.GetLockedDetectionsByCategoryIdResponse.FromString,
|
|
147
131
|
options, channel_credentials,
|
|
148
132
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
149
|
-
|
|
150
|
-
@staticmethod
|
|
151
|
-
def GetMissionScanRecommendationByMissionId(request,
|
|
152
|
-
target,
|
|
153
|
-
options=(),
|
|
154
|
-
channel_credentials=None,
|
|
155
|
-
call_credentials=None,
|
|
156
|
-
insecure=False,
|
|
157
|
-
compression=None,
|
|
158
|
-
wait_for_ready=None,
|
|
159
|
-
timeout=None,
|
|
160
|
-
metadata=None):
|
|
161
|
-
return grpc.experimental.unary_unary(request, target, '/SearchApi/GetMissionScanRecommendationByMissionId',
|
|
162
|
-
search__grpc__service_dot_protos_dot_search__api__pb2.GetMissionScanRecommendationByMissionIdRequest.SerializeToString,
|
|
163
|
-
search__grpc__service_dot_protos_dot_search__api__pb2.GetMissionScanRecommendationByMissionIdResponse.FromString,
|
|
164
|
-
options, channel_credentials,
|
|
165
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
File without changes
|