agentic-mesh-protocol 0.2.1.dev0__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.
Files changed (100) hide show
  1. agentic_mesh_protocol/__init__.py +5 -0
  2. agentic_mesh_protocol/__version__.py +8 -0
  3. agentic_mesh_protocol/cost/__init__.py +0 -0
  4. agentic_mesh_protocol/cost/v1/__init__.py +0 -0
  5. agentic_mesh_protocol/cost/v1/cost_pb2.py +108 -0
  6. agentic_mesh_protocol/cost/v1/cost_pb2.pyi +120 -0
  7. agentic_mesh_protocol/cost/v1/cost_pb2_grpc.py +4 -0
  8. agentic_mesh_protocol/cost/v1/cost_service_pb2.py +38 -0
  9. agentic_mesh_protocol/cost/v1/cost_service_pb2.pyi +5 -0
  10. agentic_mesh_protocol/cost/v1/cost_service_pb2_grpc.py +169 -0
  11. agentic_mesh_protocol/filesystem/__init__.py +0 -0
  12. agentic_mesh_protocol/filesystem/v1/__init__.py +0 -0
  13. agentic_mesh_protocol/filesystem/v1/filesystem_pb2.py +160 -0
  14. agentic_mesh_protocol/filesystem/v1/filesystem_pb2.pyi +248 -0
  15. agentic_mesh_protocol/filesystem/v1/filesystem_pb2_grpc.py +4 -0
  16. agentic_mesh_protocol/filesystem/v1/filesystem_service_pb2.py +38 -0
  17. agentic_mesh_protocol/filesystem/v1/filesystem_service_pb2.pyi +5 -0
  18. agentic_mesh_protocol/filesystem/v1/filesystem_service_pb2_grpc.py +274 -0
  19. agentic_mesh_protocol/module/__init__.py +0 -0
  20. agentic_mesh_protocol/module/v1/__init__.py +0 -0
  21. agentic_mesh_protocol/module/v1/information_pb2.py +77 -0
  22. agentic_mesh_protocol/module/v1/information_pb2.pyi +88 -0
  23. agentic_mesh_protocol/module/v1/information_pb2_grpc.py +4 -0
  24. agentic_mesh_protocol/module/v1/lifecycle_pb2.py +70 -0
  25. agentic_mesh_protocol/module/v1/lifecycle_pb2.pyi +61 -0
  26. agentic_mesh_protocol/module/v1/lifecycle_pb2_grpc.py +4 -0
  27. agentic_mesh_protocol/module/v1/module_service_pb2.py +40 -0
  28. agentic_mesh_protocol/module/v1/module_service_pb2.pyi +7 -0
  29. agentic_mesh_protocol/module/v1/module_service_pb2_grpc.py +500 -0
  30. agentic_mesh_protocol/module/v1/monitoring_pb2.py +58 -0
  31. agentic_mesh_protocol/module/v1/monitoring_pb2.pyi +64 -0
  32. agentic_mesh_protocol/module/v1/monitoring_pb2_grpc.py +4 -0
  33. agentic_mesh_protocol/module_registry/__init__.py +0 -0
  34. agentic_mesh_protocol/module_registry/v1/__init__.py +0 -0
  35. agentic_mesh_protocol/module_registry/v1/discover_pb2.py +63 -0
  36. agentic_mesh_protocol/module_registry/v1/discover_pb2.pyi +49 -0
  37. agentic_mesh_protocol/module_registry/v1/discover_pb2_grpc.py +4 -0
  38. agentic_mesh_protocol/module_registry/v1/metadata_pb2.py +46 -0
  39. agentic_mesh_protocol/module_registry/v1/metadata_pb2.pyi +24 -0
  40. agentic_mesh_protocol/module_registry/v1/metadata_pb2_grpc.py +4 -0
  41. agentic_mesh_protocol/module_registry/v1/module_registry_service_pb2.py +40 -0
  42. agentic_mesh_protocol/module_registry/v1/module_registry_service_pb2.pyi +7 -0
  43. agentic_mesh_protocol/module_registry/v1/module_registry_service_pb2_grpc.py +406 -0
  44. agentic_mesh_protocol/module_registry/v1/registration_pb2.py +57 -0
  45. agentic_mesh_protocol/module_registry/v1/registration_pb2.pyi +42 -0
  46. agentic_mesh_protocol/module_registry/v1/registration_pb2_grpc.py +4 -0
  47. agentic_mesh_protocol/module_registry/v1/status_pb2.py +58 -0
  48. agentic_mesh_protocol/module_registry/v1/status_pb2.pyi +70 -0
  49. agentic_mesh_protocol/module_registry/v1/status_pb2_grpc.py +4 -0
  50. agentic_mesh_protocol/py.typed +0 -0
  51. agentic_mesh_protocol/registry/__init__.py +0 -0
  52. agentic_mesh_protocol/registry/v1/__init__.py +0 -0
  53. agentic_mesh_protocol/registry/v1/registry_enums_pb2.py +43 -0
  54. agentic_mesh_protocol/registry/v1/registry_enums_pb2.pyi +59 -0
  55. agentic_mesh_protocol/registry/v1/registry_enums_pb2_grpc.py +4 -0
  56. agentic_mesh_protocol/registry/v1/registry_models_pb2.py +105 -0
  57. agentic_mesh_protocol/registry/v1/registry_models_pb2.pyi +82 -0
  58. agentic_mesh_protocol/registry/v1/registry_models_pb2_grpc.py +4 -0
  59. agentic_mesh_protocol/registry/v1/registry_requests_pb2.py +110 -0
  60. agentic_mesh_protocol/registry/v1/registry_requests_pb2.pyi +102 -0
  61. agentic_mesh_protocol/registry/v1/registry_requests_pb2_grpc.py +4 -0
  62. agentic_mesh_protocol/registry/v1/registry_service_pb2.py +39 -0
  63. agentic_mesh_protocol/registry/v1/registry_service_pb2.pyi +6 -0
  64. agentic_mesh_protocol/registry/v1/registry_service_pb2_grpc.py +322 -0
  65. agentic_mesh_protocol/setup/__init__.py +0 -0
  66. agentic_mesh_protocol/setup/v1/__init__.py +0 -0
  67. agentic_mesh_protocol/setup/v1/setup_pb2.py +142 -0
  68. agentic_mesh_protocol/setup/v1/setup_pb2.pyi +234 -0
  69. agentic_mesh_protocol/setup/v1/setup_pb2_grpc.py +4 -0
  70. agentic_mesh_protocol/setup/v1/setup_service_pb2.py +38 -0
  71. agentic_mesh_protocol/setup/v1/setup_service_pb2.pyi +5 -0
  72. agentic_mesh_protocol/setup/v1/setup_service_pb2_grpc.py +480 -0
  73. agentic_mesh_protocol/storage/__init__.py +0 -0
  74. agentic_mesh_protocol/storage/v1/__init__.py +0 -0
  75. agentic_mesh_protocol/storage/v1/data_pb2.py +136 -0
  76. agentic_mesh_protocol/storage/v1/data_pb2.pyi +148 -0
  77. agentic_mesh_protocol/storage/v1/data_pb2_grpc.py +4 -0
  78. agentic_mesh_protocol/storage/v1/storage_service_pb2.py +38 -0
  79. agentic_mesh_protocol/storage/v1/storage_service_pb2.pyi +5 -0
  80. agentic_mesh_protocol/storage/v1/storage_service_pb2_grpc.py +301 -0
  81. agentic_mesh_protocol/user_profile/__init__.py +0 -0
  82. agentic_mesh_protocol/user_profile/v1/__init__.py +0 -0
  83. agentic_mesh_protocol/user_profile/v1/user_profile_pb2.py +72 -0
  84. agentic_mesh_protocol/user_profile/v1/user_profile_pb2.pyi +82 -0
  85. agentic_mesh_protocol/user_profile/v1/user_profile_pb2_grpc.py +4 -0
  86. agentic_mesh_protocol/user_profile/v1/user_profile_service_pb2.py +38 -0
  87. agentic_mesh_protocol/user_profile/v1/user_profile_service_pb2.pyi +5 -0
  88. agentic_mesh_protocol/user_profile/v1/user_profile_service_pb2_grpc.py +81 -0
  89. agentic_mesh_protocol-0.2.1.dev0.dist-info/METADATA +177 -0
  90. agentic_mesh_protocol-0.2.1.dev0.dist-info/RECORD +100 -0
  91. agentic_mesh_protocol-0.2.1.dev0.dist-info/WHEEL +5 -0
  92. agentic_mesh_protocol-0.2.1.dev0.dist-info/licenses/LICENSE +430 -0
  93. agentic_mesh_protocol-0.2.1.dev0.dist-info/top_level.txt +3 -0
  94. buf/__init__.py +0 -0
  95. buf/validate/__init__.py +0 -0
  96. buf/validate/validate_pb2.py +465 -0
  97. buf/validate/validate_pb2.pyi +650 -0
  98. buf/validate/validate_pb2_grpc.py +4 -0
  99. digitalkin_proto/__init__.py +5 -0
  100. digitalkin_proto/__version__.py +8 -0
@@ -0,0 +1,480 @@
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 agentic_mesh_protocol.setup.v1 import setup_pb2 as agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2
6
+
7
+
8
+ class SetupServiceStub(object):
9
+ """SetupService
10
+ Provides operations for setups and setup versions.
11
+ """
12
+
13
+ def __init__(self, channel):
14
+ """Constructor.
15
+
16
+ Args:
17
+ channel: A grpc.Channel.
18
+ """
19
+ self.CreateSetup = channel.unary_unary(
20
+ '/agentic_mesh_protocol.setup.v1.SetupService/CreateSetup',
21
+ request_serializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.CreateSetupRequest.SerializeToString,
22
+ response_deserializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.CreateSetupResponse.FromString,
23
+ _registered_method=True)
24
+ self.GetSetup = channel.unary_unary(
25
+ '/agentic_mesh_protocol.setup.v1.SetupService/GetSetup',
26
+ request_serializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.GetSetupRequest.SerializeToString,
27
+ response_deserializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.GetSetupResponse.FromString,
28
+ _registered_method=True)
29
+ self.UpdateSetup = channel.unary_unary(
30
+ '/agentic_mesh_protocol.setup.v1.SetupService/UpdateSetup',
31
+ request_serializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.UpdateSetupRequest.SerializeToString,
32
+ response_deserializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.UpdateSetupResponse.FromString,
33
+ _registered_method=True)
34
+ self.DeleteSetup = channel.unary_unary(
35
+ '/agentic_mesh_protocol.setup.v1.SetupService/DeleteSetup',
36
+ request_serializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.DeleteSetupRequest.SerializeToString,
37
+ response_deserializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.DeleteSetupResponse.FromString,
38
+ _registered_method=True)
39
+ self.CreateSetupVersion = channel.unary_unary(
40
+ '/agentic_mesh_protocol.setup.v1.SetupService/CreateSetupVersion',
41
+ request_serializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.CreateSetupVersionRequest.SerializeToString,
42
+ response_deserializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.CreateSetupVersionResponse.FromString,
43
+ _registered_method=True)
44
+ self.GetSetupVersion = channel.unary_unary(
45
+ '/agentic_mesh_protocol.setup.v1.SetupService/GetSetupVersion',
46
+ request_serializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.GetSetupVersionRequest.SerializeToString,
47
+ response_deserializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.GetSetupVersionResponse.FromString,
48
+ _registered_method=True)
49
+ self.SearchSetupVersions = channel.unary_unary(
50
+ '/agentic_mesh_protocol.setup.v1.SetupService/SearchSetupVersions',
51
+ request_serializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.SearchSetupVersionsRequest.SerializeToString,
52
+ response_deserializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.SearchSetupVersionsResponse.FromString,
53
+ _registered_method=True)
54
+ self.UpdateSetupVersion = channel.unary_unary(
55
+ '/agentic_mesh_protocol.setup.v1.SetupService/UpdateSetupVersion',
56
+ request_serializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.UpdateSetupVersionRequest.SerializeToString,
57
+ response_deserializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.UpdateSetupVersionResponse.FromString,
58
+ _registered_method=True)
59
+ self.DeleteSetupVersion = channel.unary_unary(
60
+ '/agentic_mesh_protocol.setup.v1.SetupService/DeleteSetupVersion',
61
+ request_serializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.DeleteSetupVersionRequest.SerializeToString,
62
+ response_deserializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.DeleteSetupVersionResponse.FromString,
63
+ _registered_method=True)
64
+ self.ListSetups = channel.unary_unary(
65
+ '/agentic_mesh_protocol.setup.v1.SetupService/ListSetups',
66
+ request_serializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.ListSetupsRequest.SerializeToString,
67
+ response_deserializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.ListSetupsResponse.FromString,
68
+ _registered_method=True)
69
+
70
+
71
+ class SetupServiceServicer(object):
72
+ """SetupService
73
+ Provides operations for setups and setup versions.
74
+ """
75
+
76
+ def CreateSetup(self, request, context):
77
+ """CreateSetup creates a new setup.
78
+ """
79
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
80
+ context.set_details('Method not implemented!')
81
+ raise NotImplementedError('Method not implemented!')
82
+
83
+ def GetSetup(self, request, context):
84
+ """GetSetup retrieves a setup by its unique identifier.
85
+ """
86
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
87
+ context.set_details('Method not implemented!')
88
+ raise NotImplementedError('Method not implemented!')
89
+
90
+ def UpdateSetup(self, request, context):
91
+ """UpdateSetup updates an existing setup.
92
+ """
93
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
94
+ context.set_details('Method not implemented!')
95
+ raise NotImplementedError('Method not implemented!')
96
+
97
+ def DeleteSetup(self, request, context):
98
+ """DeleteSetup deletes a setup.
99
+ """
100
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
101
+ context.set_details('Method not implemented!')
102
+ raise NotImplementedError('Method not implemented!')
103
+
104
+ def CreateSetupVersion(self, request, context):
105
+ """CreateSetupVersion creates a new setup version.
106
+ """
107
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
108
+ context.set_details('Method not implemented!')
109
+ raise NotImplementedError('Method not implemented!')
110
+
111
+ def GetSetupVersion(self, request, context):
112
+ """GetSetupVersion retrieves a setup version by its unique identifier.
113
+ """
114
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
115
+ context.set_details('Method not implemented!')
116
+ raise NotImplementedError('Method not implemented!')
117
+
118
+ def SearchSetupVersions(self, request, context):
119
+ """SearchSetupVersions searches for setup versions based on provided filters.
120
+ """
121
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
122
+ context.set_details('Method not implemented!')
123
+ raise NotImplementedError('Method not implemented!')
124
+
125
+ def UpdateSetupVersion(self, request, context):
126
+ """UpdateSetupVersion updates an existing setup version.
127
+ """
128
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
129
+ context.set_details('Method not implemented!')
130
+ raise NotImplementedError('Method not implemented!')
131
+
132
+ def DeleteSetupVersion(self, request, context):
133
+ """DeleteSetupVersion deletes a setup version.
134
+ """
135
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
136
+ context.set_details('Method not implemented!')
137
+ raise NotImplementedError('Method not implemented!')
138
+
139
+ def ListSetups(self, request, context):
140
+ """ListSetups retrieves a paginated list of setups, filtered by organisation or owner.
141
+ """
142
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
143
+ context.set_details('Method not implemented!')
144
+ raise NotImplementedError('Method not implemented!')
145
+
146
+
147
+ def add_SetupServiceServicer_to_server(servicer, server):
148
+ rpc_method_handlers = {
149
+ 'CreateSetup': grpc.unary_unary_rpc_method_handler(
150
+ servicer.CreateSetup,
151
+ request_deserializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.CreateSetupRequest.FromString,
152
+ response_serializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.CreateSetupResponse.SerializeToString,
153
+ ),
154
+ 'GetSetup': grpc.unary_unary_rpc_method_handler(
155
+ servicer.GetSetup,
156
+ request_deserializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.GetSetupRequest.FromString,
157
+ response_serializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.GetSetupResponse.SerializeToString,
158
+ ),
159
+ 'UpdateSetup': grpc.unary_unary_rpc_method_handler(
160
+ servicer.UpdateSetup,
161
+ request_deserializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.UpdateSetupRequest.FromString,
162
+ response_serializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.UpdateSetupResponse.SerializeToString,
163
+ ),
164
+ 'DeleteSetup': grpc.unary_unary_rpc_method_handler(
165
+ servicer.DeleteSetup,
166
+ request_deserializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.DeleteSetupRequest.FromString,
167
+ response_serializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.DeleteSetupResponse.SerializeToString,
168
+ ),
169
+ 'CreateSetupVersion': grpc.unary_unary_rpc_method_handler(
170
+ servicer.CreateSetupVersion,
171
+ request_deserializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.CreateSetupVersionRequest.FromString,
172
+ response_serializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.CreateSetupVersionResponse.SerializeToString,
173
+ ),
174
+ 'GetSetupVersion': grpc.unary_unary_rpc_method_handler(
175
+ servicer.GetSetupVersion,
176
+ request_deserializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.GetSetupVersionRequest.FromString,
177
+ response_serializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.GetSetupVersionResponse.SerializeToString,
178
+ ),
179
+ 'SearchSetupVersions': grpc.unary_unary_rpc_method_handler(
180
+ servicer.SearchSetupVersions,
181
+ request_deserializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.SearchSetupVersionsRequest.FromString,
182
+ response_serializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.SearchSetupVersionsResponse.SerializeToString,
183
+ ),
184
+ 'UpdateSetupVersion': grpc.unary_unary_rpc_method_handler(
185
+ servicer.UpdateSetupVersion,
186
+ request_deserializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.UpdateSetupVersionRequest.FromString,
187
+ response_serializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.UpdateSetupVersionResponse.SerializeToString,
188
+ ),
189
+ 'DeleteSetupVersion': grpc.unary_unary_rpc_method_handler(
190
+ servicer.DeleteSetupVersion,
191
+ request_deserializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.DeleteSetupVersionRequest.FromString,
192
+ response_serializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.DeleteSetupVersionResponse.SerializeToString,
193
+ ),
194
+ 'ListSetups': grpc.unary_unary_rpc_method_handler(
195
+ servicer.ListSetups,
196
+ request_deserializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.ListSetupsRequest.FromString,
197
+ response_serializer=agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.ListSetupsResponse.SerializeToString,
198
+ ),
199
+ }
200
+ generic_handler = grpc.method_handlers_generic_handler(
201
+ 'agentic_mesh_protocol.setup.v1.SetupService', rpc_method_handlers)
202
+ server.add_generic_rpc_handlers((generic_handler,))
203
+ server.add_registered_method_handlers('agentic_mesh_protocol.setup.v1.SetupService', rpc_method_handlers)
204
+
205
+
206
+ # This class is part of an EXPERIMENTAL API.
207
+ class SetupService(object):
208
+ """SetupService
209
+ Provides operations for setups and setup versions.
210
+ """
211
+
212
+ @staticmethod
213
+ def CreateSetup(request,
214
+ target,
215
+ options=(),
216
+ channel_credentials=None,
217
+ call_credentials=None,
218
+ insecure=False,
219
+ compression=None,
220
+ wait_for_ready=None,
221
+ timeout=None,
222
+ metadata=None):
223
+ return grpc.experimental.unary_unary(
224
+ request,
225
+ target,
226
+ '/agentic_mesh_protocol.setup.v1.SetupService/CreateSetup',
227
+ agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.CreateSetupRequest.SerializeToString,
228
+ agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.CreateSetupResponse.FromString,
229
+ options,
230
+ channel_credentials,
231
+ insecure,
232
+ call_credentials,
233
+ compression,
234
+ wait_for_ready,
235
+ timeout,
236
+ metadata,
237
+ _registered_method=True)
238
+
239
+ @staticmethod
240
+ def GetSetup(request,
241
+ target,
242
+ options=(),
243
+ channel_credentials=None,
244
+ call_credentials=None,
245
+ insecure=False,
246
+ compression=None,
247
+ wait_for_ready=None,
248
+ timeout=None,
249
+ metadata=None):
250
+ return grpc.experimental.unary_unary(
251
+ request,
252
+ target,
253
+ '/agentic_mesh_protocol.setup.v1.SetupService/GetSetup',
254
+ agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.GetSetupRequest.SerializeToString,
255
+ agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.GetSetupResponse.FromString,
256
+ options,
257
+ channel_credentials,
258
+ insecure,
259
+ call_credentials,
260
+ compression,
261
+ wait_for_ready,
262
+ timeout,
263
+ metadata,
264
+ _registered_method=True)
265
+
266
+ @staticmethod
267
+ def UpdateSetup(request,
268
+ target,
269
+ options=(),
270
+ channel_credentials=None,
271
+ call_credentials=None,
272
+ insecure=False,
273
+ compression=None,
274
+ wait_for_ready=None,
275
+ timeout=None,
276
+ metadata=None):
277
+ return grpc.experimental.unary_unary(
278
+ request,
279
+ target,
280
+ '/agentic_mesh_protocol.setup.v1.SetupService/UpdateSetup',
281
+ agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.UpdateSetupRequest.SerializeToString,
282
+ agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.UpdateSetupResponse.FromString,
283
+ options,
284
+ channel_credentials,
285
+ insecure,
286
+ call_credentials,
287
+ compression,
288
+ wait_for_ready,
289
+ timeout,
290
+ metadata,
291
+ _registered_method=True)
292
+
293
+ @staticmethod
294
+ def DeleteSetup(request,
295
+ target,
296
+ options=(),
297
+ channel_credentials=None,
298
+ call_credentials=None,
299
+ insecure=False,
300
+ compression=None,
301
+ wait_for_ready=None,
302
+ timeout=None,
303
+ metadata=None):
304
+ return grpc.experimental.unary_unary(
305
+ request,
306
+ target,
307
+ '/agentic_mesh_protocol.setup.v1.SetupService/DeleteSetup',
308
+ agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.DeleteSetupRequest.SerializeToString,
309
+ agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.DeleteSetupResponse.FromString,
310
+ options,
311
+ channel_credentials,
312
+ insecure,
313
+ call_credentials,
314
+ compression,
315
+ wait_for_ready,
316
+ timeout,
317
+ metadata,
318
+ _registered_method=True)
319
+
320
+ @staticmethod
321
+ def CreateSetupVersion(request,
322
+ target,
323
+ options=(),
324
+ channel_credentials=None,
325
+ call_credentials=None,
326
+ insecure=False,
327
+ compression=None,
328
+ wait_for_ready=None,
329
+ timeout=None,
330
+ metadata=None):
331
+ return grpc.experimental.unary_unary(
332
+ request,
333
+ target,
334
+ '/agentic_mesh_protocol.setup.v1.SetupService/CreateSetupVersion',
335
+ agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.CreateSetupVersionRequest.SerializeToString,
336
+ agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.CreateSetupVersionResponse.FromString,
337
+ options,
338
+ channel_credentials,
339
+ insecure,
340
+ call_credentials,
341
+ compression,
342
+ wait_for_ready,
343
+ timeout,
344
+ metadata,
345
+ _registered_method=True)
346
+
347
+ @staticmethod
348
+ def GetSetupVersion(request,
349
+ target,
350
+ options=(),
351
+ channel_credentials=None,
352
+ call_credentials=None,
353
+ insecure=False,
354
+ compression=None,
355
+ wait_for_ready=None,
356
+ timeout=None,
357
+ metadata=None):
358
+ return grpc.experimental.unary_unary(
359
+ request,
360
+ target,
361
+ '/agentic_mesh_protocol.setup.v1.SetupService/GetSetupVersion',
362
+ agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.GetSetupVersionRequest.SerializeToString,
363
+ agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.GetSetupVersionResponse.FromString,
364
+ options,
365
+ channel_credentials,
366
+ insecure,
367
+ call_credentials,
368
+ compression,
369
+ wait_for_ready,
370
+ timeout,
371
+ metadata,
372
+ _registered_method=True)
373
+
374
+ @staticmethod
375
+ def SearchSetupVersions(request,
376
+ target,
377
+ options=(),
378
+ channel_credentials=None,
379
+ call_credentials=None,
380
+ insecure=False,
381
+ compression=None,
382
+ wait_for_ready=None,
383
+ timeout=None,
384
+ metadata=None):
385
+ return grpc.experimental.unary_unary(
386
+ request,
387
+ target,
388
+ '/agentic_mesh_protocol.setup.v1.SetupService/SearchSetupVersions',
389
+ agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.SearchSetupVersionsRequest.SerializeToString,
390
+ agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.SearchSetupVersionsResponse.FromString,
391
+ options,
392
+ channel_credentials,
393
+ insecure,
394
+ call_credentials,
395
+ compression,
396
+ wait_for_ready,
397
+ timeout,
398
+ metadata,
399
+ _registered_method=True)
400
+
401
+ @staticmethod
402
+ def UpdateSetupVersion(request,
403
+ target,
404
+ options=(),
405
+ channel_credentials=None,
406
+ call_credentials=None,
407
+ insecure=False,
408
+ compression=None,
409
+ wait_for_ready=None,
410
+ timeout=None,
411
+ metadata=None):
412
+ return grpc.experimental.unary_unary(
413
+ request,
414
+ target,
415
+ '/agentic_mesh_protocol.setup.v1.SetupService/UpdateSetupVersion',
416
+ agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.UpdateSetupVersionRequest.SerializeToString,
417
+ agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.UpdateSetupVersionResponse.FromString,
418
+ options,
419
+ channel_credentials,
420
+ insecure,
421
+ call_credentials,
422
+ compression,
423
+ wait_for_ready,
424
+ timeout,
425
+ metadata,
426
+ _registered_method=True)
427
+
428
+ @staticmethod
429
+ def DeleteSetupVersion(request,
430
+ target,
431
+ options=(),
432
+ channel_credentials=None,
433
+ call_credentials=None,
434
+ insecure=False,
435
+ compression=None,
436
+ wait_for_ready=None,
437
+ timeout=None,
438
+ metadata=None):
439
+ return grpc.experimental.unary_unary(
440
+ request,
441
+ target,
442
+ '/agentic_mesh_protocol.setup.v1.SetupService/DeleteSetupVersion',
443
+ agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.DeleteSetupVersionRequest.SerializeToString,
444
+ agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.DeleteSetupVersionResponse.FromString,
445
+ options,
446
+ channel_credentials,
447
+ insecure,
448
+ call_credentials,
449
+ compression,
450
+ wait_for_ready,
451
+ timeout,
452
+ metadata,
453
+ _registered_method=True)
454
+
455
+ @staticmethod
456
+ def ListSetups(request,
457
+ target,
458
+ options=(),
459
+ channel_credentials=None,
460
+ call_credentials=None,
461
+ insecure=False,
462
+ compression=None,
463
+ wait_for_ready=None,
464
+ timeout=None,
465
+ metadata=None):
466
+ return grpc.experimental.unary_unary(
467
+ request,
468
+ target,
469
+ '/agentic_mesh_protocol.setup.v1.SetupService/ListSetups',
470
+ agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.ListSetupsRequest.SerializeToString,
471
+ agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2.ListSetupsResponse.FromString,
472
+ options,
473
+ channel_credentials,
474
+ insecure,
475
+ call_credentials,
476
+ compression,
477
+ wait_for_ready,
478
+ timeout,
479
+ metadata,
480
+ _registered_method=True)
File without changes
File without changes
@@ -0,0 +1,136 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: agentic_mesh_protocol/storage/v1/data.proto
5
+ # Protobuf Python Version: 6.33.0
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 6,
15
+ 33,
16
+ 0,
17
+ '',
18
+ 'agentic_mesh_protocol/storage/v1/data.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from buf.validate import validate_pb2 as buf_dot_validate_dot_validate__pb2
26
+ from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
27
+ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
28
+
29
+
30
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n+agentic_mesh_protocol/storage/v1/data.proto\x12 agentic_mesh_protocol.storage.v1\x1a\x1b\x62uf/validate/validate.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xa4\x03\n\rStorageRecord\x12\x33\n\x04\x64\x61ta\x18\x01 \x01(\x0b\x32\x17.google.protobuf.StructB\x06\xbaH\x03\xc8\x01\x01R\x04\x64\x61ta\x12\x32\n\nmission_id\x18\x02 \x01(\tB\x13\xbaH\x10r\x0b:\tmissions:\xc8\x01\x01R\tmissionId\x12&\n\ncollection\x18\x03 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\ncollection\x12#\n\trecord_id\x18\x04 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x08recordId\x12G\n\rcreation_date\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x06\xbaH\x03\xc8\x01\x01R\x0c\x63reationDate\x12\x43\n\x0bupdate_date\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x06\xbaH\x03\xc8\x01\x01R\nupdateDate\x12O\n\tdata_type\x18\x07 \x01(\x0e\x32*.agentic_mesh_protocol.storage.v1.DataTypeB\x06\xbaH\x03\xc8\x01\x01R\x08\x64\x61taType\"\x9b\x02\n\x12StoreRecordRequest\x12\x33\n\x04\x64\x61ta\x18\x01 \x01(\x0b\x32\x17.google.protobuf.StructB\x06\xbaH\x03\xc8\x01\x01R\x04\x64\x61ta\x12\x32\n\nmission_id\x18\x02 \x01(\tB\x13\xbaH\x10r\x0b:\tmissions:\xc8\x01\x01R\tmissionId\x12&\n\ncollection\x18\x03 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\ncollection\x12#\n\trecord_id\x18\x04 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x08recordId\x12O\n\tdata_type\x18\x05 \x01(\x0e\x32*.agentic_mesh_protocol.storage.v1.DataTypeB\x06\xbaH\x03\xc8\x01\x01R\x08\x64\x61taType\"\x91\x01\n\x13StoreRecordResponse\x12 \n\x07success\x18\x01 \x01(\x08\x42\x06\xbaH\x03\xc8\x01\x01R\x07success\x12X\n\x0bstored_data\x18\x02 \x01(\x0b\x32/.agentic_mesh_protocol.storage.v1.StorageRecordB\x06\xbaH\x03\xc8\x01\x01R\nstoredData\"\x94\x01\n\x11ReadRecordRequest\x12\x32\n\nmission_id\x18\x01 \x01(\tB\x13\xbaH\x10r\x0b:\tmissions:\xc8\x01\x01R\tmissionId\x12&\n\ncollection\x18\x02 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\ncollection\x12#\n\trecord_id\x18\x03 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x08recordId\"\x90\x01\n\x12ReadRecordResponse\x12 \n\x07success\x18\x01 \x01(\x08\x42\x06\xbaH\x03\xc8\x01\x01R\x07success\x12X\n\x0bstored_data\x18\x02 \x01(\x0b\x32/.agentic_mesh_protocol.storage.v1.StorageRecordB\x06\xbaH\x03\xc8\x01\x01R\nstoredData\"\xcb\x01\n\x13UpdateRecordRequest\x12\x33\n\x04\x64\x61ta\x18\x01 \x01(\x0b\x32\x17.google.protobuf.StructB\x06\xbaH\x03\xc8\x01\x01R\x04\x64\x61ta\x12\x32\n\nmission_id\x18\x02 \x01(\tB\x13\xbaH\x10r\x0b:\tmissions:\xc8\x01\x01R\tmissionId\x12&\n\ncollection\x18\x03 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\ncollection\x12#\n\trecord_id\x18\x04 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x08recordId\"\x92\x01\n\x14UpdateRecordResponse\x12 \n\x07success\x18\x01 \x01(\x08\x42\x06\xbaH\x03\xc8\x01\x01R\x07success\x12X\n\x0bstored_data\x18\x02 \x01(\x0b\x32/.agentic_mesh_protocol.storage.v1.StorageRecordB\x06\xbaH\x03\xc8\x01\x01R\nstoredData\"\x96\x01\n\x13RemoveRecordRequest\x12\x32\n\nmission_id\x18\x01 \x01(\tB\x13\xbaH\x10r\x0b:\tmissions:\xc8\x01\x01R\tmissionId\x12&\n\ncollection\x18\x03 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\ncollection\x12#\n\trecord_id\x18\x04 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x08recordId\"8\n\x14RemoveRecordResponse\x12 \n\x07success\x18\x01 \x01(\x08\x42\x06\xbaH\x03\xc8\x01\x01R\x07success\"p\n\x12ListRecordsRequest\x12\x32\n\nmission_id\x18\x01 \x01(\tB\x13\xbaH\x10r\x0b:\tmissions:\xc8\x01\x01R\tmissionId\x12&\n\ncollection\x18\x02 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\ncollection\"h\n\x13ListRecordsResponse\x12Q\n\x07records\x18\x01 \x03(\x0b\x32/.agentic_mesh_protocol.storage.v1.StorageRecordB\x06\xbaH\x03\xc8\x01\x01R\x07records\"u\n\x17RemoveCollectionRequest\x12\x32\n\nmission_id\x18\x01 \x01(\tB\x13\xbaH\x10r\x0b:\tmissions:\xc8\x01\x01R\tmissionId\x12&\n\ncollection\x18\x02 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\ncollection\"<\n\x18RemoveCollectionResponse\x12 \n\x07success\x18\x01 \x01(\x08\x42\x06\xbaH\x03\xc8\x01\x01R\x07success*F\n\x08\x44\x61taType\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\n\n\x06OUTPUT\x10\x01\x12\x08\n\x04VIEW\x10\x02\x12\x08\n\x04LOGS\x10\x03\x12\t\n\x05OTHER\x10\x04\x42\xcb\x01\n$com.agentic_mesh_protocol.storage.v1B\tDataProtoP\x01\xa2\x02\x03\x41SX\xaa\x02\x1e\x41genticMeshProtocol.Storage.V1\xca\x02\x1e\x41genticMeshProtocol\\Storage\\V1\xe2\x02*AgenticMeshProtocol\\Storage\\V1\\GPBMetadata\xea\x02 AgenticMeshProtocol::Storage::V1b\x06proto3')
31
+
32
+ _globals = globals()
33
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
34
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'agentic_mesh_protocol.storage.v1.data_pb2', _globals)
35
+ if not _descriptor._USE_C_DESCRIPTORS:
36
+ _globals['DESCRIPTOR']._loaded_options = None
37
+ _globals['DESCRIPTOR']._serialized_options = b'\n$com.agentic_mesh_protocol.storage.v1B\tDataProtoP\001\242\002\003ASX\252\002\036AgenticMeshProtocol.Storage.V1\312\002\036AgenticMeshProtocol\\Storage\\V1\342\002*AgenticMeshProtocol\\Storage\\V1\\GPBMetadata\352\002 AgenticMeshProtocol::Storage::V1'
38
+ _globals['_STORAGERECORD'].fields_by_name['data']._loaded_options = None
39
+ _globals['_STORAGERECORD'].fields_by_name['data']._serialized_options = b'\272H\003\310\001\001'
40
+ _globals['_STORAGERECORD'].fields_by_name['mission_id']._loaded_options = None
41
+ _globals['_STORAGERECORD'].fields_by_name['mission_id']._serialized_options = b'\272H\020r\013:\tmissions:\310\001\001'
42
+ _globals['_STORAGERECORD'].fields_by_name['collection']._loaded_options = None
43
+ _globals['_STORAGERECORD'].fields_by_name['collection']._serialized_options = b'\272H\003\310\001\001'
44
+ _globals['_STORAGERECORD'].fields_by_name['record_id']._loaded_options = None
45
+ _globals['_STORAGERECORD'].fields_by_name['record_id']._serialized_options = b'\272H\003\310\001\001'
46
+ _globals['_STORAGERECORD'].fields_by_name['creation_date']._loaded_options = None
47
+ _globals['_STORAGERECORD'].fields_by_name['creation_date']._serialized_options = b'\272H\003\310\001\001'
48
+ _globals['_STORAGERECORD'].fields_by_name['update_date']._loaded_options = None
49
+ _globals['_STORAGERECORD'].fields_by_name['update_date']._serialized_options = b'\272H\003\310\001\001'
50
+ _globals['_STORAGERECORD'].fields_by_name['data_type']._loaded_options = None
51
+ _globals['_STORAGERECORD'].fields_by_name['data_type']._serialized_options = b'\272H\003\310\001\001'
52
+ _globals['_STORERECORDREQUEST'].fields_by_name['data']._loaded_options = None
53
+ _globals['_STORERECORDREQUEST'].fields_by_name['data']._serialized_options = b'\272H\003\310\001\001'
54
+ _globals['_STORERECORDREQUEST'].fields_by_name['mission_id']._loaded_options = None
55
+ _globals['_STORERECORDREQUEST'].fields_by_name['mission_id']._serialized_options = b'\272H\020r\013:\tmissions:\310\001\001'
56
+ _globals['_STORERECORDREQUEST'].fields_by_name['collection']._loaded_options = None
57
+ _globals['_STORERECORDREQUEST'].fields_by_name['collection']._serialized_options = b'\272H\003\310\001\001'
58
+ _globals['_STORERECORDREQUEST'].fields_by_name['record_id']._loaded_options = None
59
+ _globals['_STORERECORDREQUEST'].fields_by_name['record_id']._serialized_options = b'\272H\003\310\001\001'
60
+ _globals['_STORERECORDREQUEST'].fields_by_name['data_type']._loaded_options = None
61
+ _globals['_STORERECORDREQUEST'].fields_by_name['data_type']._serialized_options = b'\272H\003\310\001\001'
62
+ _globals['_STORERECORDRESPONSE'].fields_by_name['success']._loaded_options = None
63
+ _globals['_STORERECORDRESPONSE'].fields_by_name['success']._serialized_options = b'\272H\003\310\001\001'
64
+ _globals['_STORERECORDRESPONSE'].fields_by_name['stored_data']._loaded_options = None
65
+ _globals['_STORERECORDRESPONSE'].fields_by_name['stored_data']._serialized_options = b'\272H\003\310\001\001'
66
+ _globals['_READRECORDREQUEST'].fields_by_name['mission_id']._loaded_options = None
67
+ _globals['_READRECORDREQUEST'].fields_by_name['mission_id']._serialized_options = b'\272H\020r\013:\tmissions:\310\001\001'
68
+ _globals['_READRECORDREQUEST'].fields_by_name['collection']._loaded_options = None
69
+ _globals['_READRECORDREQUEST'].fields_by_name['collection']._serialized_options = b'\272H\003\310\001\001'
70
+ _globals['_READRECORDREQUEST'].fields_by_name['record_id']._loaded_options = None
71
+ _globals['_READRECORDREQUEST'].fields_by_name['record_id']._serialized_options = b'\272H\003\310\001\001'
72
+ _globals['_READRECORDRESPONSE'].fields_by_name['success']._loaded_options = None
73
+ _globals['_READRECORDRESPONSE'].fields_by_name['success']._serialized_options = b'\272H\003\310\001\001'
74
+ _globals['_READRECORDRESPONSE'].fields_by_name['stored_data']._loaded_options = None
75
+ _globals['_READRECORDRESPONSE'].fields_by_name['stored_data']._serialized_options = b'\272H\003\310\001\001'
76
+ _globals['_UPDATERECORDREQUEST'].fields_by_name['data']._loaded_options = None
77
+ _globals['_UPDATERECORDREQUEST'].fields_by_name['data']._serialized_options = b'\272H\003\310\001\001'
78
+ _globals['_UPDATERECORDREQUEST'].fields_by_name['mission_id']._loaded_options = None
79
+ _globals['_UPDATERECORDREQUEST'].fields_by_name['mission_id']._serialized_options = b'\272H\020r\013:\tmissions:\310\001\001'
80
+ _globals['_UPDATERECORDREQUEST'].fields_by_name['collection']._loaded_options = None
81
+ _globals['_UPDATERECORDREQUEST'].fields_by_name['collection']._serialized_options = b'\272H\003\310\001\001'
82
+ _globals['_UPDATERECORDREQUEST'].fields_by_name['record_id']._loaded_options = None
83
+ _globals['_UPDATERECORDREQUEST'].fields_by_name['record_id']._serialized_options = b'\272H\003\310\001\001'
84
+ _globals['_UPDATERECORDRESPONSE'].fields_by_name['success']._loaded_options = None
85
+ _globals['_UPDATERECORDRESPONSE'].fields_by_name['success']._serialized_options = b'\272H\003\310\001\001'
86
+ _globals['_UPDATERECORDRESPONSE'].fields_by_name['stored_data']._loaded_options = None
87
+ _globals['_UPDATERECORDRESPONSE'].fields_by_name['stored_data']._serialized_options = b'\272H\003\310\001\001'
88
+ _globals['_REMOVERECORDREQUEST'].fields_by_name['mission_id']._loaded_options = None
89
+ _globals['_REMOVERECORDREQUEST'].fields_by_name['mission_id']._serialized_options = b'\272H\020r\013:\tmissions:\310\001\001'
90
+ _globals['_REMOVERECORDREQUEST'].fields_by_name['collection']._loaded_options = None
91
+ _globals['_REMOVERECORDREQUEST'].fields_by_name['collection']._serialized_options = b'\272H\003\310\001\001'
92
+ _globals['_REMOVERECORDREQUEST'].fields_by_name['record_id']._loaded_options = None
93
+ _globals['_REMOVERECORDREQUEST'].fields_by_name['record_id']._serialized_options = b'\272H\003\310\001\001'
94
+ _globals['_REMOVERECORDRESPONSE'].fields_by_name['success']._loaded_options = None
95
+ _globals['_REMOVERECORDRESPONSE'].fields_by_name['success']._serialized_options = b'\272H\003\310\001\001'
96
+ _globals['_LISTRECORDSREQUEST'].fields_by_name['mission_id']._loaded_options = None
97
+ _globals['_LISTRECORDSREQUEST'].fields_by_name['mission_id']._serialized_options = b'\272H\020r\013:\tmissions:\310\001\001'
98
+ _globals['_LISTRECORDSREQUEST'].fields_by_name['collection']._loaded_options = None
99
+ _globals['_LISTRECORDSREQUEST'].fields_by_name['collection']._serialized_options = b'\272H\003\310\001\001'
100
+ _globals['_LISTRECORDSRESPONSE'].fields_by_name['records']._loaded_options = None
101
+ _globals['_LISTRECORDSRESPONSE'].fields_by_name['records']._serialized_options = b'\272H\003\310\001\001'
102
+ _globals['_REMOVECOLLECTIONREQUEST'].fields_by_name['mission_id']._loaded_options = None
103
+ _globals['_REMOVECOLLECTIONREQUEST'].fields_by_name['mission_id']._serialized_options = b'\272H\020r\013:\tmissions:\310\001\001'
104
+ _globals['_REMOVECOLLECTIONREQUEST'].fields_by_name['collection']._loaded_options = None
105
+ _globals['_REMOVECOLLECTIONREQUEST'].fields_by_name['collection']._serialized_options = b'\272H\003\310\001\001'
106
+ _globals['_REMOVECOLLECTIONRESPONSE'].fields_by_name['success']._loaded_options = None
107
+ _globals['_REMOVECOLLECTIONRESPONSE'].fields_by_name['success']._serialized_options = b'\272H\003\310\001\001'
108
+ _globals['_DATATYPE']._serialized_start=2295
109
+ _globals['_DATATYPE']._serialized_end=2365
110
+ _globals['_STORAGERECORD']._serialized_start=174
111
+ _globals['_STORAGERECORD']._serialized_end=594
112
+ _globals['_STORERECORDREQUEST']._serialized_start=597
113
+ _globals['_STORERECORDREQUEST']._serialized_end=880
114
+ _globals['_STORERECORDRESPONSE']._serialized_start=883
115
+ _globals['_STORERECORDRESPONSE']._serialized_end=1028
116
+ _globals['_READRECORDREQUEST']._serialized_start=1031
117
+ _globals['_READRECORDREQUEST']._serialized_end=1179
118
+ _globals['_READRECORDRESPONSE']._serialized_start=1182
119
+ _globals['_READRECORDRESPONSE']._serialized_end=1326
120
+ _globals['_UPDATERECORDREQUEST']._serialized_start=1329
121
+ _globals['_UPDATERECORDREQUEST']._serialized_end=1532
122
+ _globals['_UPDATERECORDRESPONSE']._serialized_start=1535
123
+ _globals['_UPDATERECORDRESPONSE']._serialized_end=1681
124
+ _globals['_REMOVERECORDREQUEST']._serialized_start=1684
125
+ _globals['_REMOVERECORDREQUEST']._serialized_end=1834
126
+ _globals['_REMOVERECORDRESPONSE']._serialized_start=1836
127
+ _globals['_REMOVERECORDRESPONSE']._serialized_end=1892
128
+ _globals['_LISTRECORDSREQUEST']._serialized_start=1894
129
+ _globals['_LISTRECORDSREQUEST']._serialized_end=2006
130
+ _globals['_LISTRECORDSRESPONSE']._serialized_start=2008
131
+ _globals['_LISTRECORDSRESPONSE']._serialized_end=2112
132
+ _globals['_REMOVECOLLECTIONREQUEST']._serialized_start=2114
133
+ _globals['_REMOVECOLLECTIONREQUEST']._serialized_end=2231
134
+ _globals['_REMOVECOLLECTIONRESPONSE']._serialized_start=2233
135
+ _globals['_REMOVECOLLECTIONRESPONSE']._serialized_end=2293
136
+ # @@protoc_insertion_point(module_scope)