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.
@@ -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)