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.
- agentic_mesh_protocol/__init__.py +5 -0
- agentic_mesh_protocol/__version__.py +8 -0
- agentic_mesh_protocol/cost/__init__.py +0 -0
- agentic_mesh_protocol/cost/v1/__init__.py +0 -0
- agentic_mesh_protocol/cost/v1/cost_pb2.py +108 -0
- agentic_mesh_protocol/cost/v1/cost_pb2.pyi +120 -0
- agentic_mesh_protocol/cost/v1/cost_pb2_grpc.py +4 -0
- agentic_mesh_protocol/cost/v1/cost_service_pb2.py +38 -0
- agentic_mesh_protocol/cost/v1/cost_service_pb2.pyi +5 -0
- agentic_mesh_protocol/cost/v1/cost_service_pb2_grpc.py +169 -0
- agentic_mesh_protocol/filesystem/__init__.py +0 -0
- agentic_mesh_protocol/filesystem/v1/__init__.py +0 -0
- agentic_mesh_protocol/filesystem/v1/filesystem_pb2.py +160 -0
- agentic_mesh_protocol/filesystem/v1/filesystem_pb2.pyi +248 -0
- agentic_mesh_protocol/filesystem/v1/filesystem_pb2_grpc.py +4 -0
- agentic_mesh_protocol/filesystem/v1/filesystem_service_pb2.py +38 -0
- agentic_mesh_protocol/filesystem/v1/filesystem_service_pb2.pyi +5 -0
- agentic_mesh_protocol/filesystem/v1/filesystem_service_pb2_grpc.py +274 -0
- agentic_mesh_protocol/module/__init__.py +0 -0
- agentic_mesh_protocol/module/v1/__init__.py +0 -0
- agentic_mesh_protocol/module/v1/information_pb2.py +77 -0
- agentic_mesh_protocol/module/v1/information_pb2.pyi +88 -0
- agentic_mesh_protocol/module/v1/information_pb2_grpc.py +4 -0
- agentic_mesh_protocol/module/v1/lifecycle_pb2.py +70 -0
- agentic_mesh_protocol/module/v1/lifecycle_pb2.pyi +61 -0
- agentic_mesh_protocol/module/v1/lifecycle_pb2_grpc.py +4 -0
- agentic_mesh_protocol/module/v1/module_service_pb2.py +40 -0
- agentic_mesh_protocol/module/v1/module_service_pb2.pyi +7 -0
- agentic_mesh_protocol/module/v1/module_service_pb2_grpc.py +500 -0
- agentic_mesh_protocol/module/v1/monitoring_pb2.py +58 -0
- agentic_mesh_protocol/module/v1/monitoring_pb2.pyi +64 -0
- agentic_mesh_protocol/module/v1/monitoring_pb2_grpc.py +4 -0
- agentic_mesh_protocol/module_registry/__init__.py +0 -0
- agentic_mesh_protocol/module_registry/v1/__init__.py +0 -0
- agentic_mesh_protocol/module_registry/v1/discover_pb2.py +63 -0
- agentic_mesh_protocol/module_registry/v1/discover_pb2.pyi +49 -0
- agentic_mesh_protocol/module_registry/v1/discover_pb2_grpc.py +4 -0
- agentic_mesh_protocol/module_registry/v1/metadata_pb2.py +46 -0
- agentic_mesh_protocol/module_registry/v1/metadata_pb2.pyi +24 -0
- agentic_mesh_protocol/module_registry/v1/metadata_pb2_grpc.py +4 -0
- agentic_mesh_protocol/module_registry/v1/module_registry_service_pb2.py +40 -0
- agentic_mesh_protocol/module_registry/v1/module_registry_service_pb2.pyi +7 -0
- agentic_mesh_protocol/module_registry/v1/module_registry_service_pb2_grpc.py +406 -0
- agentic_mesh_protocol/module_registry/v1/registration_pb2.py +57 -0
- agentic_mesh_protocol/module_registry/v1/registration_pb2.pyi +42 -0
- agentic_mesh_protocol/module_registry/v1/registration_pb2_grpc.py +4 -0
- agentic_mesh_protocol/module_registry/v1/status_pb2.py +58 -0
- agentic_mesh_protocol/module_registry/v1/status_pb2.pyi +70 -0
- agentic_mesh_protocol/module_registry/v1/status_pb2_grpc.py +4 -0
- agentic_mesh_protocol/py.typed +0 -0
- agentic_mesh_protocol/registry/__init__.py +0 -0
- agentic_mesh_protocol/registry/v1/__init__.py +0 -0
- agentic_mesh_protocol/registry/v1/registry_enums_pb2.py +43 -0
- agentic_mesh_protocol/registry/v1/registry_enums_pb2.pyi +59 -0
- agentic_mesh_protocol/registry/v1/registry_enums_pb2_grpc.py +4 -0
- agentic_mesh_protocol/registry/v1/registry_models_pb2.py +105 -0
- agentic_mesh_protocol/registry/v1/registry_models_pb2.pyi +82 -0
- agentic_mesh_protocol/registry/v1/registry_models_pb2_grpc.py +4 -0
- agentic_mesh_protocol/registry/v1/registry_requests_pb2.py +110 -0
- agentic_mesh_protocol/registry/v1/registry_requests_pb2.pyi +102 -0
- agentic_mesh_protocol/registry/v1/registry_requests_pb2_grpc.py +4 -0
- agentic_mesh_protocol/registry/v1/registry_service_pb2.py +39 -0
- agentic_mesh_protocol/registry/v1/registry_service_pb2.pyi +6 -0
- agentic_mesh_protocol/registry/v1/registry_service_pb2_grpc.py +322 -0
- agentic_mesh_protocol/setup/__init__.py +0 -0
- agentic_mesh_protocol/setup/v1/__init__.py +0 -0
- agentic_mesh_protocol/setup/v1/setup_pb2.py +142 -0
- agentic_mesh_protocol/setup/v1/setup_pb2.pyi +234 -0
- agentic_mesh_protocol/setup/v1/setup_pb2_grpc.py +4 -0
- agentic_mesh_protocol/setup/v1/setup_service_pb2.py +38 -0
- agentic_mesh_protocol/setup/v1/setup_service_pb2.pyi +5 -0
- agentic_mesh_protocol/setup/v1/setup_service_pb2_grpc.py +480 -0
- agentic_mesh_protocol/storage/__init__.py +0 -0
- agentic_mesh_protocol/storage/v1/__init__.py +0 -0
- agentic_mesh_protocol/storage/v1/data_pb2.py +136 -0
- agentic_mesh_protocol/storage/v1/data_pb2.pyi +148 -0
- agentic_mesh_protocol/storage/v1/data_pb2_grpc.py +4 -0
- agentic_mesh_protocol/storage/v1/storage_service_pb2.py +38 -0
- agentic_mesh_protocol/storage/v1/storage_service_pb2.pyi +5 -0
- agentic_mesh_protocol/storage/v1/storage_service_pb2_grpc.py +301 -0
- agentic_mesh_protocol/user_profile/__init__.py +0 -0
- agentic_mesh_protocol/user_profile/v1/__init__.py +0 -0
- agentic_mesh_protocol/user_profile/v1/user_profile_pb2.py +72 -0
- agentic_mesh_protocol/user_profile/v1/user_profile_pb2.pyi +82 -0
- agentic_mesh_protocol/user_profile/v1/user_profile_pb2_grpc.py +4 -0
- agentic_mesh_protocol/user_profile/v1/user_profile_service_pb2.py +38 -0
- agentic_mesh_protocol/user_profile/v1/user_profile_service_pb2.pyi +5 -0
- agentic_mesh_protocol/user_profile/v1/user_profile_service_pb2_grpc.py +81 -0
- agentic_mesh_protocol-0.2.1.dev0.dist-info/METADATA +177 -0
- agentic_mesh_protocol-0.2.1.dev0.dist-info/RECORD +100 -0
- agentic_mesh_protocol-0.2.1.dev0.dist-info/WHEEL +5 -0
- agentic_mesh_protocol-0.2.1.dev0.dist-info/licenses/LICENSE +430 -0
- agentic_mesh_protocol-0.2.1.dev0.dist-info/top_level.txt +3 -0
- buf/__init__.py +0 -0
- buf/validate/__init__.py +0 -0
- buf/validate/validate_pb2.py +465 -0
- buf/validate/validate_pb2.pyi +650 -0
- buf/validate/validate_pb2_grpc.py +4 -0
- digitalkin_proto/__init__.py +5 -0
- digitalkin_proto/__version__.py +8 -0
|
@@ -0,0 +1,274 @@
|
|
|
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.filesystem.v1 import filesystem_pb2 as agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class FilesystemServiceStub(object):
|
|
9
|
+
"""FilesystemService provides comprehensive file management capabilities including
|
|
10
|
+
upload, retrieval, update, and deletion operations with metadata support,
|
|
11
|
+
filtering, and pagination.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
def __init__(self, channel):
|
|
15
|
+
"""Constructor.
|
|
16
|
+
|
|
17
|
+
Args:
|
|
18
|
+
channel: A grpc.Channel.
|
|
19
|
+
"""
|
|
20
|
+
self.UploadFiles = channel.unary_unary(
|
|
21
|
+
'/agentic_mesh_protocol.filesystem.v1.FilesystemService/UploadFiles',
|
|
22
|
+
request_serializer=agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.UploadFilesRequest.SerializeToString,
|
|
23
|
+
response_deserializer=agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.UploadFilesResponse.FromString,
|
|
24
|
+
_registered_method=True)
|
|
25
|
+
self.GetFile = channel.unary_unary(
|
|
26
|
+
'/agentic_mesh_protocol.filesystem.v1.FilesystemService/GetFile',
|
|
27
|
+
request_serializer=agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.GetFileRequest.SerializeToString,
|
|
28
|
+
response_deserializer=agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.GetFileResponse.FromString,
|
|
29
|
+
_registered_method=True)
|
|
30
|
+
self.GetFiles = channel.unary_unary(
|
|
31
|
+
'/agentic_mesh_protocol.filesystem.v1.FilesystemService/GetFiles',
|
|
32
|
+
request_serializer=agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.GetFilesRequest.SerializeToString,
|
|
33
|
+
response_deserializer=agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.GetFilesResponse.FromString,
|
|
34
|
+
_registered_method=True)
|
|
35
|
+
self.UpdateFile = channel.unary_unary(
|
|
36
|
+
'/agentic_mesh_protocol.filesystem.v1.FilesystemService/UpdateFile',
|
|
37
|
+
request_serializer=agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.UpdateFileRequest.SerializeToString,
|
|
38
|
+
response_deserializer=agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.UpdateFileResponse.FromString,
|
|
39
|
+
_registered_method=True)
|
|
40
|
+
self.DeleteFiles = channel.unary_unary(
|
|
41
|
+
'/agentic_mesh_protocol.filesystem.v1.FilesystemService/DeleteFiles',
|
|
42
|
+
request_serializer=agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.DeleteFilesRequest.SerializeToString,
|
|
43
|
+
response_deserializer=agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.DeleteFilesResponse.FromString,
|
|
44
|
+
_registered_method=True)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
class FilesystemServiceServicer(object):
|
|
48
|
+
"""FilesystemService provides comprehensive file management capabilities including
|
|
49
|
+
upload, retrieval, update, and deletion operations with metadata support,
|
|
50
|
+
filtering, and pagination.
|
|
51
|
+
"""
|
|
52
|
+
|
|
53
|
+
def UploadFiles(self, request, context):
|
|
54
|
+
"""UploadFiles allows batch uploading of files with validation and
|
|
55
|
+
error handling for each individual file. Files are processed
|
|
56
|
+
atomically - if one fails, others may still succeed.
|
|
57
|
+
"""
|
|
58
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
59
|
+
context.set_details('Method not implemented!')
|
|
60
|
+
raise NotImplementedError('Method not implemented!')
|
|
61
|
+
|
|
62
|
+
def GetFile(self, request, context):
|
|
63
|
+
"""GetFile fetches detailed information about a single file,
|
|
64
|
+
with optional content inclusion. Supports lookup by either
|
|
65
|
+
unique ID or name within a context.
|
|
66
|
+
"""
|
|
67
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
68
|
+
context.set_details('Method not implemented!')
|
|
69
|
+
raise NotImplementedError('Method not implemented!')
|
|
70
|
+
|
|
71
|
+
def GetFiles(self, request, context):
|
|
72
|
+
"""GetFiles provides efficient retrieval of multiple files using
|
|
73
|
+
file IDs, file names, or path prefix, with support for
|
|
74
|
+
pagination for large result sets, optional content inclusion,
|
|
75
|
+
and total count of matching files.
|
|
76
|
+
"""
|
|
77
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
78
|
+
context.set_details('Method not implemented!')
|
|
79
|
+
raise NotImplementedError('Method not implemented!')
|
|
80
|
+
|
|
81
|
+
def UpdateFile(self, request, context):
|
|
82
|
+
"""UpdateFile allows updating various aspects of a file including
|
|
83
|
+
renaming files, updating content and content type, modifying metadata,
|
|
84
|
+
and creating new versions.
|
|
85
|
+
"""
|
|
86
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
87
|
+
context.set_details('Method not implemented!')
|
|
88
|
+
raise NotImplementedError('Method not implemented!')
|
|
89
|
+
|
|
90
|
+
def DeleteFiles(self, request, context):
|
|
91
|
+
"""DeleteFiles supports batch deletion of files with options for
|
|
92
|
+
soft deletion (marking as deleted), permanent deletion,
|
|
93
|
+
force deletion of files in use, and individual error reporting per file.
|
|
94
|
+
"""
|
|
95
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
96
|
+
context.set_details('Method not implemented!')
|
|
97
|
+
raise NotImplementedError('Method not implemented!')
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
def add_FilesystemServiceServicer_to_server(servicer, server):
|
|
101
|
+
rpc_method_handlers = {
|
|
102
|
+
'UploadFiles': grpc.unary_unary_rpc_method_handler(
|
|
103
|
+
servicer.UploadFiles,
|
|
104
|
+
request_deserializer=agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.UploadFilesRequest.FromString,
|
|
105
|
+
response_serializer=agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.UploadFilesResponse.SerializeToString,
|
|
106
|
+
),
|
|
107
|
+
'GetFile': grpc.unary_unary_rpc_method_handler(
|
|
108
|
+
servicer.GetFile,
|
|
109
|
+
request_deserializer=agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.GetFileRequest.FromString,
|
|
110
|
+
response_serializer=agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.GetFileResponse.SerializeToString,
|
|
111
|
+
),
|
|
112
|
+
'GetFiles': grpc.unary_unary_rpc_method_handler(
|
|
113
|
+
servicer.GetFiles,
|
|
114
|
+
request_deserializer=agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.GetFilesRequest.FromString,
|
|
115
|
+
response_serializer=agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.GetFilesResponse.SerializeToString,
|
|
116
|
+
),
|
|
117
|
+
'UpdateFile': grpc.unary_unary_rpc_method_handler(
|
|
118
|
+
servicer.UpdateFile,
|
|
119
|
+
request_deserializer=agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.UpdateFileRequest.FromString,
|
|
120
|
+
response_serializer=agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.UpdateFileResponse.SerializeToString,
|
|
121
|
+
),
|
|
122
|
+
'DeleteFiles': grpc.unary_unary_rpc_method_handler(
|
|
123
|
+
servicer.DeleteFiles,
|
|
124
|
+
request_deserializer=agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.DeleteFilesRequest.FromString,
|
|
125
|
+
response_serializer=agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.DeleteFilesResponse.SerializeToString,
|
|
126
|
+
),
|
|
127
|
+
}
|
|
128
|
+
generic_handler = grpc.method_handlers_generic_handler(
|
|
129
|
+
'agentic_mesh_protocol.filesystem.v1.FilesystemService', rpc_method_handlers)
|
|
130
|
+
server.add_generic_rpc_handlers((generic_handler,))
|
|
131
|
+
server.add_registered_method_handlers('agentic_mesh_protocol.filesystem.v1.FilesystemService', rpc_method_handlers)
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
# This class is part of an EXPERIMENTAL API.
|
|
135
|
+
class FilesystemService(object):
|
|
136
|
+
"""FilesystemService provides comprehensive file management capabilities including
|
|
137
|
+
upload, retrieval, update, and deletion operations with metadata support,
|
|
138
|
+
filtering, and pagination.
|
|
139
|
+
"""
|
|
140
|
+
|
|
141
|
+
@staticmethod
|
|
142
|
+
def UploadFiles(request,
|
|
143
|
+
target,
|
|
144
|
+
options=(),
|
|
145
|
+
channel_credentials=None,
|
|
146
|
+
call_credentials=None,
|
|
147
|
+
insecure=False,
|
|
148
|
+
compression=None,
|
|
149
|
+
wait_for_ready=None,
|
|
150
|
+
timeout=None,
|
|
151
|
+
metadata=None):
|
|
152
|
+
return grpc.experimental.unary_unary(
|
|
153
|
+
request,
|
|
154
|
+
target,
|
|
155
|
+
'/agentic_mesh_protocol.filesystem.v1.FilesystemService/UploadFiles',
|
|
156
|
+
agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.UploadFilesRequest.SerializeToString,
|
|
157
|
+
agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.UploadFilesResponse.FromString,
|
|
158
|
+
options,
|
|
159
|
+
channel_credentials,
|
|
160
|
+
insecure,
|
|
161
|
+
call_credentials,
|
|
162
|
+
compression,
|
|
163
|
+
wait_for_ready,
|
|
164
|
+
timeout,
|
|
165
|
+
metadata,
|
|
166
|
+
_registered_method=True)
|
|
167
|
+
|
|
168
|
+
@staticmethod
|
|
169
|
+
def GetFile(request,
|
|
170
|
+
target,
|
|
171
|
+
options=(),
|
|
172
|
+
channel_credentials=None,
|
|
173
|
+
call_credentials=None,
|
|
174
|
+
insecure=False,
|
|
175
|
+
compression=None,
|
|
176
|
+
wait_for_ready=None,
|
|
177
|
+
timeout=None,
|
|
178
|
+
metadata=None):
|
|
179
|
+
return grpc.experimental.unary_unary(
|
|
180
|
+
request,
|
|
181
|
+
target,
|
|
182
|
+
'/agentic_mesh_protocol.filesystem.v1.FilesystemService/GetFile',
|
|
183
|
+
agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.GetFileRequest.SerializeToString,
|
|
184
|
+
agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.GetFileResponse.FromString,
|
|
185
|
+
options,
|
|
186
|
+
channel_credentials,
|
|
187
|
+
insecure,
|
|
188
|
+
call_credentials,
|
|
189
|
+
compression,
|
|
190
|
+
wait_for_ready,
|
|
191
|
+
timeout,
|
|
192
|
+
metadata,
|
|
193
|
+
_registered_method=True)
|
|
194
|
+
|
|
195
|
+
@staticmethod
|
|
196
|
+
def GetFiles(request,
|
|
197
|
+
target,
|
|
198
|
+
options=(),
|
|
199
|
+
channel_credentials=None,
|
|
200
|
+
call_credentials=None,
|
|
201
|
+
insecure=False,
|
|
202
|
+
compression=None,
|
|
203
|
+
wait_for_ready=None,
|
|
204
|
+
timeout=None,
|
|
205
|
+
metadata=None):
|
|
206
|
+
return grpc.experimental.unary_unary(
|
|
207
|
+
request,
|
|
208
|
+
target,
|
|
209
|
+
'/agentic_mesh_protocol.filesystem.v1.FilesystemService/GetFiles',
|
|
210
|
+
agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.GetFilesRequest.SerializeToString,
|
|
211
|
+
agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.GetFilesResponse.FromString,
|
|
212
|
+
options,
|
|
213
|
+
channel_credentials,
|
|
214
|
+
insecure,
|
|
215
|
+
call_credentials,
|
|
216
|
+
compression,
|
|
217
|
+
wait_for_ready,
|
|
218
|
+
timeout,
|
|
219
|
+
metadata,
|
|
220
|
+
_registered_method=True)
|
|
221
|
+
|
|
222
|
+
@staticmethod
|
|
223
|
+
def UpdateFile(request,
|
|
224
|
+
target,
|
|
225
|
+
options=(),
|
|
226
|
+
channel_credentials=None,
|
|
227
|
+
call_credentials=None,
|
|
228
|
+
insecure=False,
|
|
229
|
+
compression=None,
|
|
230
|
+
wait_for_ready=None,
|
|
231
|
+
timeout=None,
|
|
232
|
+
metadata=None):
|
|
233
|
+
return grpc.experimental.unary_unary(
|
|
234
|
+
request,
|
|
235
|
+
target,
|
|
236
|
+
'/agentic_mesh_protocol.filesystem.v1.FilesystemService/UpdateFile',
|
|
237
|
+
agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.UpdateFileRequest.SerializeToString,
|
|
238
|
+
agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.UpdateFileResponse.FromString,
|
|
239
|
+
options,
|
|
240
|
+
channel_credentials,
|
|
241
|
+
insecure,
|
|
242
|
+
call_credentials,
|
|
243
|
+
compression,
|
|
244
|
+
wait_for_ready,
|
|
245
|
+
timeout,
|
|
246
|
+
metadata,
|
|
247
|
+
_registered_method=True)
|
|
248
|
+
|
|
249
|
+
@staticmethod
|
|
250
|
+
def DeleteFiles(request,
|
|
251
|
+
target,
|
|
252
|
+
options=(),
|
|
253
|
+
channel_credentials=None,
|
|
254
|
+
call_credentials=None,
|
|
255
|
+
insecure=False,
|
|
256
|
+
compression=None,
|
|
257
|
+
wait_for_ready=None,
|
|
258
|
+
timeout=None,
|
|
259
|
+
metadata=None):
|
|
260
|
+
return grpc.experimental.unary_unary(
|
|
261
|
+
request,
|
|
262
|
+
target,
|
|
263
|
+
'/agentic_mesh_protocol.filesystem.v1.FilesystemService/DeleteFiles',
|
|
264
|
+
agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.DeleteFilesRequest.SerializeToString,
|
|
265
|
+
agentic__mesh__protocol_dot_filesystem_dot_v1_dot_filesystem__pb2.DeleteFilesResponse.FromString,
|
|
266
|
+
options,
|
|
267
|
+
channel_credentials,
|
|
268
|
+
insecure,
|
|
269
|
+
call_credentials,
|
|
270
|
+
compression,
|
|
271
|
+
wait_for_ready,
|
|
272
|
+
timeout,
|
|
273
|
+
metadata,
|
|
274
|
+
_registered_method=True)
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,77 @@
|
|
|
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/module/v1/information.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/module/v1/information.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
|
+
|
|
28
|
+
|
|
29
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n1agentic_mesh_protocol/module/v1/information.proto\x12\x1f\x61gentic_mesh_protocol.module.v1\x1a\x1b\x62uf/validate/validate.proto\x1a\x1cgoogle/protobuf/struct.proto\"i\n\x15GetModuleInputRequest\x12\x31\n\tmodule_id\x18\x01 \x01(\tB\x14\xbaH\x11r\x0c\x10\x01:\x08modules:\xc8\x01\x01R\x08moduleId\x12\x1d\n\nllm_format\x18\x02 \x01(\x08R\tllmFormat\"j\n\x16GetModuleOutputRequest\x12\x31\n\tmodule_id\x18\x01 \x01(\tB\x14\xbaH\x11r\x0c\x10\x01:\x08modules:\xc8\x01\x01R\x08moduleId\x12\x1d\n\nllm_format\x18\x02 \x01(\x08R\tllmFormat\"i\n\x15GetModuleSetupRequest\x12\x31\n\tmodule_id\x18\x01 \x01(\tB\x14\xbaH\x11r\x0c\x10\x01:\x08modules:\xc8\x01\x01R\x08moduleId\x12\x1d\n\nllm_format\x18\x02 \x01(\x08R\tllmFormat\"j\n\x16GetModuleSecretRequest\x12\x31\n\tmodule_id\x18\x01 \x01(\tB\x14\xbaH\x11r\x0c\x10\x01:\x08modules:\xc8\x01\x01R\x08moduleId\x12\x1d\n\nllm_format\x18\x02 \x01(\x08R\tllmFormat\"v\n\x16GetModuleInputResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success\x12\x42\n\x0cinput_schema\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructB\x06\xbaH\x03\xc8\x01\x01R\x0binputSchema\"y\n\x17GetModuleOutputResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success\x12\x44\n\routput_schema\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructB\x06\xbaH\x03\xc8\x01\x01R\x0coutputSchema\"v\n\x16GetModuleSetupResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success\x12\x42\n\x0csetup_schema\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructB\x06\xbaH\x03\xc8\x01\x01R\x0bsetupSchema\"y\n\x17GetModuleSecretResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success\x12\x44\n\rsecret_schema\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructB\x06\xbaH\x03\xc8\x01\x01R\x0csecretSchema\"o\n\x1bGetConfigSetupModuleRequest\x12\x31\n\tmodule_id\x18\x01 \x01(\tB\x14\xbaH\x11r\x0c\x10\x01:\x08modules:\xc8\x01\x01R\x08moduleId\x12\x1d\n\nllm_format\x18\x02 \x01(\x08R\tllmFormat\"\x89\x01\n\x1cGetConfigSetupModuleResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success\x12O\n\x13\x63onfig_setup_schema\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructB\x06\xbaH\x03\xc8\x01\x01R\x11\x63onfigSetupSchemaB\xcd\x01\n#com.agentic_mesh_protocol.module.v1B\x10InformationProtoP\x01\xa2\x02\x03\x41MX\xaa\x02\x1d\x41genticMeshProtocol.Module.V1\xca\x02\x1d\x41genticMeshProtocol\\Module\\V1\xe2\x02)AgenticMeshProtocol\\Module\\V1\\GPBMetadata\xea\x02\x1f\x41genticMeshProtocol::Module::V1b\x06proto3')
|
|
30
|
+
|
|
31
|
+
_globals = globals()
|
|
32
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
33
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'agentic_mesh_protocol.module.v1.information_pb2', _globals)
|
|
34
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
35
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
36
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n#com.agentic_mesh_protocol.module.v1B\020InformationProtoP\001\242\002\003AMX\252\002\035AgenticMeshProtocol.Module.V1\312\002\035AgenticMeshProtocol\\Module\\V1\342\002)AgenticMeshProtocol\\Module\\V1\\GPBMetadata\352\002\037AgenticMeshProtocol::Module::V1'
|
|
37
|
+
_globals['_GETMODULEINPUTREQUEST'].fields_by_name['module_id']._loaded_options = None
|
|
38
|
+
_globals['_GETMODULEINPUTREQUEST'].fields_by_name['module_id']._serialized_options = b'\272H\021r\014\020\001:\010modules:\310\001\001'
|
|
39
|
+
_globals['_GETMODULEOUTPUTREQUEST'].fields_by_name['module_id']._loaded_options = None
|
|
40
|
+
_globals['_GETMODULEOUTPUTREQUEST'].fields_by_name['module_id']._serialized_options = b'\272H\021r\014\020\001:\010modules:\310\001\001'
|
|
41
|
+
_globals['_GETMODULESETUPREQUEST'].fields_by_name['module_id']._loaded_options = None
|
|
42
|
+
_globals['_GETMODULESETUPREQUEST'].fields_by_name['module_id']._serialized_options = b'\272H\021r\014\020\001:\010modules:\310\001\001'
|
|
43
|
+
_globals['_GETMODULESECRETREQUEST'].fields_by_name['module_id']._loaded_options = None
|
|
44
|
+
_globals['_GETMODULESECRETREQUEST'].fields_by_name['module_id']._serialized_options = b'\272H\021r\014\020\001:\010modules:\310\001\001'
|
|
45
|
+
_globals['_GETMODULEINPUTRESPONSE'].fields_by_name['input_schema']._loaded_options = None
|
|
46
|
+
_globals['_GETMODULEINPUTRESPONSE'].fields_by_name['input_schema']._serialized_options = b'\272H\003\310\001\001'
|
|
47
|
+
_globals['_GETMODULEOUTPUTRESPONSE'].fields_by_name['output_schema']._loaded_options = None
|
|
48
|
+
_globals['_GETMODULEOUTPUTRESPONSE'].fields_by_name['output_schema']._serialized_options = b'\272H\003\310\001\001'
|
|
49
|
+
_globals['_GETMODULESETUPRESPONSE'].fields_by_name['setup_schema']._loaded_options = None
|
|
50
|
+
_globals['_GETMODULESETUPRESPONSE'].fields_by_name['setup_schema']._serialized_options = b'\272H\003\310\001\001'
|
|
51
|
+
_globals['_GETMODULESECRETRESPONSE'].fields_by_name['secret_schema']._loaded_options = None
|
|
52
|
+
_globals['_GETMODULESECRETRESPONSE'].fields_by_name['secret_schema']._serialized_options = b'\272H\003\310\001\001'
|
|
53
|
+
_globals['_GETCONFIGSETUPMODULEREQUEST'].fields_by_name['module_id']._loaded_options = None
|
|
54
|
+
_globals['_GETCONFIGSETUPMODULEREQUEST'].fields_by_name['module_id']._serialized_options = b'\272H\021r\014\020\001:\010modules:\310\001\001'
|
|
55
|
+
_globals['_GETCONFIGSETUPMODULERESPONSE'].fields_by_name['config_setup_schema']._loaded_options = None
|
|
56
|
+
_globals['_GETCONFIGSETUPMODULERESPONSE'].fields_by_name['config_setup_schema']._serialized_options = b'\272H\003\310\001\001'
|
|
57
|
+
_globals['_GETMODULEINPUTREQUEST']._serialized_start=145
|
|
58
|
+
_globals['_GETMODULEINPUTREQUEST']._serialized_end=250
|
|
59
|
+
_globals['_GETMODULEOUTPUTREQUEST']._serialized_start=252
|
|
60
|
+
_globals['_GETMODULEOUTPUTREQUEST']._serialized_end=358
|
|
61
|
+
_globals['_GETMODULESETUPREQUEST']._serialized_start=360
|
|
62
|
+
_globals['_GETMODULESETUPREQUEST']._serialized_end=465
|
|
63
|
+
_globals['_GETMODULESECRETREQUEST']._serialized_start=467
|
|
64
|
+
_globals['_GETMODULESECRETREQUEST']._serialized_end=573
|
|
65
|
+
_globals['_GETMODULEINPUTRESPONSE']._serialized_start=575
|
|
66
|
+
_globals['_GETMODULEINPUTRESPONSE']._serialized_end=693
|
|
67
|
+
_globals['_GETMODULEOUTPUTRESPONSE']._serialized_start=695
|
|
68
|
+
_globals['_GETMODULEOUTPUTRESPONSE']._serialized_end=816
|
|
69
|
+
_globals['_GETMODULESETUPRESPONSE']._serialized_start=818
|
|
70
|
+
_globals['_GETMODULESETUPRESPONSE']._serialized_end=936
|
|
71
|
+
_globals['_GETMODULESECRETRESPONSE']._serialized_start=938
|
|
72
|
+
_globals['_GETMODULESECRETRESPONSE']._serialized_end=1059
|
|
73
|
+
_globals['_GETCONFIGSETUPMODULEREQUEST']._serialized_start=1061
|
|
74
|
+
_globals['_GETCONFIGSETUPMODULEREQUEST']._serialized_end=1172
|
|
75
|
+
_globals['_GETCONFIGSETUPMODULERESPONSE']._serialized_start=1175
|
|
76
|
+
_globals['_GETCONFIGSETUPMODULERESPONSE']._serialized_end=1312
|
|
77
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
from buf.validate import validate_pb2 as _validate_pb2
|
|
2
|
+
from google.protobuf import struct_pb2 as _struct_pb2
|
|
3
|
+
from google.protobuf import descriptor as _descriptor
|
|
4
|
+
from google.protobuf import message as _message
|
|
5
|
+
from collections.abc import Mapping as _Mapping
|
|
6
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
|
|
7
|
+
|
|
8
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
9
|
+
|
|
10
|
+
class GetModuleInputRequest(_message.Message):
|
|
11
|
+
__slots__ = ()
|
|
12
|
+
MODULE_ID_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
+
LLM_FORMAT_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
module_id: str
|
|
15
|
+
llm_format: bool
|
|
16
|
+
def __init__(self, module_id: _Optional[str] = ..., llm_format: _Optional[bool] = ...) -> None: ...
|
|
17
|
+
|
|
18
|
+
class GetModuleOutputRequest(_message.Message):
|
|
19
|
+
__slots__ = ()
|
|
20
|
+
MODULE_ID_FIELD_NUMBER: _ClassVar[int]
|
|
21
|
+
LLM_FORMAT_FIELD_NUMBER: _ClassVar[int]
|
|
22
|
+
module_id: str
|
|
23
|
+
llm_format: bool
|
|
24
|
+
def __init__(self, module_id: _Optional[str] = ..., llm_format: _Optional[bool] = ...) -> None: ...
|
|
25
|
+
|
|
26
|
+
class GetModuleSetupRequest(_message.Message):
|
|
27
|
+
__slots__ = ()
|
|
28
|
+
MODULE_ID_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
LLM_FORMAT_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
module_id: str
|
|
31
|
+
llm_format: bool
|
|
32
|
+
def __init__(self, module_id: _Optional[str] = ..., llm_format: _Optional[bool] = ...) -> None: ...
|
|
33
|
+
|
|
34
|
+
class GetModuleSecretRequest(_message.Message):
|
|
35
|
+
__slots__ = ()
|
|
36
|
+
MODULE_ID_FIELD_NUMBER: _ClassVar[int]
|
|
37
|
+
LLM_FORMAT_FIELD_NUMBER: _ClassVar[int]
|
|
38
|
+
module_id: str
|
|
39
|
+
llm_format: bool
|
|
40
|
+
def __init__(self, module_id: _Optional[str] = ..., llm_format: _Optional[bool] = ...) -> None: ...
|
|
41
|
+
|
|
42
|
+
class GetModuleInputResponse(_message.Message):
|
|
43
|
+
__slots__ = ()
|
|
44
|
+
SUCCESS_FIELD_NUMBER: _ClassVar[int]
|
|
45
|
+
INPUT_SCHEMA_FIELD_NUMBER: _ClassVar[int]
|
|
46
|
+
success: bool
|
|
47
|
+
input_schema: _struct_pb2.Struct
|
|
48
|
+
def __init__(self, success: _Optional[bool] = ..., input_schema: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ...) -> None: ...
|
|
49
|
+
|
|
50
|
+
class GetModuleOutputResponse(_message.Message):
|
|
51
|
+
__slots__ = ()
|
|
52
|
+
SUCCESS_FIELD_NUMBER: _ClassVar[int]
|
|
53
|
+
OUTPUT_SCHEMA_FIELD_NUMBER: _ClassVar[int]
|
|
54
|
+
success: bool
|
|
55
|
+
output_schema: _struct_pb2.Struct
|
|
56
|
+
def __init__(self, success: _Optional[bool] = ..., output_schema: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ...) -> None: ...
|
|
57
|
+
|
|
58
|
+
class GetModuleSetupResponse(_message.Message):
|
|
59
|
+
__slots__ = ()
|
|
60
|
+
SUCCESS_FIELD_NUMBER: _ClassVar[int]
|
|
61
|
+
SETUP_SCHEMA_FIELD_NUMBER: _ClassVar[int]
|
|
62
|
+
success: bool
|
|
63
|
+
setup_schema: _struct_pb2.Struct
|
|
64
|
+
def __init__(self, success: _Optional[bool] = ..., setup_schema: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ...) -> None: ...
|
|
65
|
+
|
|
66
|
+
class GetModuleSecretResponse(_message.Message):
|
|
67
|
+
__slots__ = ()
|
|
68
|
+
SUCCESS_FIELD_NUMBER: _ClassVar[int]
|
|
69
|
+
SECRET_SCHEMA_FIELD_NUMBER: _ClassVar[int]
|
|
70
|
+
success: bool
|
|
71
|
+
secret_schema: _struct_pb2.Struct
|
|
72
|
+
def __init__(self, success: _Optional[bool] = ..., secret_schema: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ...) -> None: ...
|
|
73
|
+
|
|
74
|
+
class GetConfigSetupModuleRequest(_message.Message):
|
|
75
|
+
__slots__ = ()
|
|
76
|
+
MODULE_ID_FIELD_NUMBER: _ClassVar[int]
|
|
77
|
+
LLM_FORMAT_FIELD_NUMBER: _ClassVar[int]
|
|
78
|
+
module_id: str
|
|
79
|
+
llm_format: bool
|
|
80
|
+
def __init__(self, module_id: _Optional[str] = ..., llm_format: _Optional[bool] = ...) -> None: ...
|
|
81
|
+
|
|
82
|
+
class GetConfigSetupModuleResponse(_message.Message):
|
|
83
|
+
__slots__ = ()
|
|
84
|
+
SUCCESS_FIELD_NUMBER: _ClassVar[int]
|
|
85
|
+
CONFIG_SETUP_SCHEMA_FIELD_NUMBER: _ClassVar[int]
|
|
86
|
+
success: bool
|
|
87
|
+
config_setup_schema: _struct_pb2.Struct
|
|
88
|
+
def __init__(self, success: _Optional[bool] = ..., config_setup_schema: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ...) -> None: ...
|
|
@@ -0,0 +1,70 @@
|
|
|
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/module/v1/lifecycle.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/module/v1/lifecycle.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from agentic_mesh_protocol.setup.v1 import setup_pb2 as agentic__mesh__protocol_dot_setup_dot_v1_dot_setup__pb2
|
|
26
|
+
from buf.validate import validate_pb2 as buf_dot_validate_dot_validate__pb2
|
|
27
|
+
from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n/agentic_mesh_protocol/module/v1/lifecycle.proto\x12\x1f\x61gentic_mesh_protocol.module.v1\x1a*agentic_mesh_protocol/setup/v1/setup.proto\x1a\x1b\x62uf/validate/validate.proto\x1a\x1cgoogle/protobuf/struct.proto\"\xe6\x01\n\x18\x43onfigSetupModuleRequest\x12Y\n\rsetup_version\x18\x01 \x01(\x0b\x32,.agentic_mesh_protocol.setup.v1.SetupVersionB\x06\xbaH\x03\xc8\x01\x01R\x0csetupVersion\x12\x39\n\x07\x63ontent\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructB\x06\xbaH\x03\xc8\x01\x01R\x07\x63ontent\x12\x34\n\nmission_id\x18\x03 \x01(\tB\x15\xbaH\x12r\r\x10\x01:\tmissions:\xc8\x01\x01R\tmissionId\"\x88\x01\n\x19\x43onfigSetupModuleResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success\x12Q\n\rsetup_version\x18\x02 \x01(\x0b\x32,.agentic_mesh_protocol.setup.v1.SetupVersionR\x0csetupVersion\"\xb1\x01\n\x12StartModuleRequest\x12\x35\n\x05input\x18\x01 \x01(\x0b\x32\x17.google.protobuf.StructB\x06\xbaH\x03\xc8\x01\x01R\x05input\x12.\n\x08setup_id\x18\x02 \x01(\tB\x13\xbaH\x10r\x0b\x10\x01:\x07setups:\xc8\x01\x01R\x07setupId\x12\x34\n\nmission_id\x18\x03 \x01(\tB\x15\xbaH\x12r\r\x10\x01:\tmissions:\xc8\x01\x01R\tmissionId\"=\n\x11StopModuleRequest\x12(\n\x06job_id\x18\x01 \x01(\tB\x11\xbaH\x0er\t\x10\x01:\x05jobs:\xc8\x01\x01R\x05jobId\"\x92\x01\n\x13StartModuleResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success\x12\x37\n\x06output\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructB\x06\xbaH\x03\xc8\x01\x01R\x06output\x12(\n\x06job_id\x18\x03 \x01(\tB\x11\xbaH\x0er\t\x10\x01:\x05jobs:\xc8\x01\x01R\x05jobId\"c\n\x12StopModuleResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success\x12(\n\x06job_id\x18\x02 \x01(\tB\x0c\xbaH\tr\x07:\x05jobs:H\x00R\x05jobId\x88\x01\x01\x42\t\n\x07_job_idB\xcb\x01\n#com.agentic_mesh_protocol.module.v1B\x0eLifecycleProtoP\x01\xa2\x02\x03\x41MX\xaa\x02\x1d\x41genticMeshProtocol.Module.V1\xca\x02\x1d\x41genticMeshProtocol\\Module\\V1\xe2\x02)AgenticMeshProtocol\\Module\\V1\\GPBMetadata\xea\x02\x1f\x41genticMeshProtocol::Module::V1b\x06proto3')
|
|
31
|
+
|
|
32
|
+
_globals = globals()
|
|
33
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
34
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'agentic_mesh_protocol.module.v1.lifecycle_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.module.v1B\016LifecycleProtoP\001\242\002\003AMX\252\002\035AgenticMeshProtocol.Module.V1\312\002\035AgenticMeshProtocol\\Module\\V1\342\002)AgenticMeshProtocol\\Module\\V1\\GPBMetadata\352\002\037AgenticMeshProtocol::Module::V1'
|
|
38
|
+
_globals['_CONFIGSETUPMODULEREQUEST'].fields_by_name['setup_version']._loaded_options = None
|
|
39
|
+
_globals['_CONFIGSETUPMODULEREQUEST'].fields_by_name['setup_version']._serialized_options = b'\272H\003\310\001\001'
|
|
40
|
+
_globals['_CONFIGSETUPMODULEREQUEST'].fields_by_name['content']._loaded_options = None
|
|
41
|
+
_globals['_CONFIGSETUPMODULEREQUEST'].fields_by_name['content']._serialized_options = b'\272H\003\310\001\001'
|
|
42
|
+
_globals['_CONFIGSETUPMODULEREQUEST'].fields_by_name['mission_id']._loaded_options = None
|
|
43
|
+
_globals['_CONFIGSETUPMODULEREQUEST'].fields_by_name['mission_id']._serialized_options = b'\272H\022r\r\020\001:\tmissions:\310\001\001'
|
|
44
|
+
_globals['_STARTMODULEREQUEST'].fields_by_name['input']._loaded_options = None
|
|
45
|
+
_globals['_STARTMODULEREQUEST'].fields_by_name['input']._serialized_options = b'\272H\003\310\001\001'
|
|
46
|
+
_globals['_STARTMODULEREQUEST'].fields_by_name['setup_id']._loaded_options = None
|
|
47
|
+
_globals['_STARTMODULEREQUEST'].fields_by_name['setup_id']._serialized_options = b'\272H\020r\013\020\001:\007setups:\310\001\001'
|
|
48
|
+
_globals['_STARTMODULEREQUEST'].fields_by_name['mission_id']._loaded_options = None
|
|
49
|
+
_globals['_STARTMODULEREQUEST'].fields_by_name['mission_id']._serialized_options = b'\272H\022r\r\020\001:\tmissions:\310\001\001'
|
|
50
|
+
_globals['_STOPMODULEREQUEST'].fields_by_name['job_id']._loaded_options = None
|
|
51
|
+
_globals['_STOPMODULEREQUEST'].fields_by_name['job_id']._serialized_options = b'\272H\016r\t\020\001:\005jobs:\310\001\001'
|
|
52
|
+
_globals['_STARTMODULERESPONSE'].fields_by_name['output']._loaded_options = None
|
|
53
|
+
_globals['_STARTMODULERESPONSE'].fields_by_name['output']._serialized_options = b'\272H\003\310\001\001'
|
|
54
|
+
_globals['_STARTMODULERESPONSE'].fields_by_name['job_id']._loaded_options = None
|
|
55
|
+
_globals['_STARTMODULERESPONSE'].fields_by_name['job_id']._serialized_options = b'\272H\016r\t\020\001:\005jobs:\310\001\001'
|
|
56
|
+
_globals['_STOPMODULERESPONSE'].fields_by_name['job_id']._loaded_options = None
|
|
57
|
+
_globals['_STOPMODULERESPONSE'].fields_by_name['job_id']._serialized_options = b'\272H\tr\007:\005jobs:'
|
|
58
|
+
_globals['_CONFIGSETUPMODULEREQUEST']._serialized_start=188
|
|
59
|
+
_globals['_CONFIGSETUPMODULEREQUEST']._serialized_end=418
|
|
60
|
+
_globals['_CONFIGSETUPMODULERESPONSE']._serialized_start=421
|
|
61
|
+
_globals['_CONFIGSETUPMODULERESPONSE']._serialized_end=557
|
|
62
|
+
_globals['_STARTMODULEREQUEST']._serialized_start=560
|
|
63
|
+
_globals['_STARTMODULEREQUEST']._serialized_end=737
|
|
64
|
+
_globals['_STOPMODULEREQUEST']._serialized_start=739
|
|
65
|
+
_globals['_STOPMODULEREQUEST']._serialized_end=800
|
|
66
|
+
_globals['_STARTMODULERESPONSE']._serialized_start=803
|
|
67
|
+
_globals['_STARTMODULERESPONSE']._serialized_end=949
|
|
68
|
+
_globals['_STOPMODULERESPONSE']._serialized_start=951
|
|
69
|
+
_globals['_STOPMODULERESPONSE']._serialized_end=1050
|
|
70
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
from agentic_mesh_protocol.setup.v1 import setup_pb2 as _setup_pb2
|
|
2
|
+
from buf.validate import validate_pb2 as _validate_pb2
|
|
3
|
+
from google.protobuf import struct_pb2 as _struct_pb2
|
|
4
|
+
from google.protobuf import descriptor as _descriptor
|
|
5
|
+
from google.protobuf import message as _message
|
|
6
|
+
from collections.abc import Mapping as _Mapping
|
|
7
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
|
|
8
|
+
|
|
9
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
10
|
+
|
|
11
|
+
class ConfigSetupModuleRequest(_message.Message):
|
|
12
|
+
__slots__ = ()
|
|
13
|
+
SETUP_VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
CONTENT_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
MISSION_ID_FIELD_NUMBER: _ClassVar[int]
|
|
16
|
+
setup_version: _setup_pb2.SetupVersion
|
|
17
|
+
content: _struct_pb2.Struct
|
|
18
|
+
mission_id: str
|
|
19
|
+
def __init__(self, setup_version: _Optional[_Union[_setup_pb2.SetupVersion, _Mapping]] = ..., content: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., mission_id: _Optional[str] = ...) -> None: ...
|
|
20
|
+
|
|
21
|
+
class ConfigSetupModuleResponse(_message.Message):
|
|
22
|
+
__slots__ = ()
|
|
23
|
+
SUCCESS_FIELD_NUMBER: _ClassVar[int]
|
|
24
|
+
SETUP_VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
25
|
+
success: bool
|
|
26
|
+
setup_version: _setup_pb2.SetupVersion
|
|
27
|
+
def __init__(self, success: _Optional[bool] = ..., setup_version: _Optional[_Union[_setup_pb2.SetupVersion, _Mapping]] = ...) -> None: ...
|
|
28
|
+
|
|
29
|
+
class StartModuleRequest(_message.Message):
|
|
30
|
+
__slots__ = ()
|
|
31
|
+
INPUT_FIELD_NUMBER: _ClassVar[int]
|
|
32
|
+
SETUP_ID_FIELD_NUMBER: _ClassVar[int]
|
|
33
|
+
MISSION_ID_FIELD_NUMBER: _ClassVar[int]
|
|
34
|
+
input: _struct_pb2.Struct
|
|
35
|
+
setup_id: str
|
|
36
|
+
mission_id: str
|
|
37
|
+
def __init__(self, input: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., setup_id: _Optional[str] = ..., mission_id: _Optional[str] = ...) -> None: ...
|
|
38
|
+
|
|
39
|
+
class StopModuleRequest(_message.Message):
|
|
40
|
+
__slots__ = ()
|
|
41
|
+
JOB_ID_FIELD_NUMBER: _ClassVar[int]
|
|
42
|
+
job_id: str
|
|
43
|
+
def __init__(self, job_id: _Optional[str] = ...) -> None: ...
|
|
44
|
+
|
|
45
|
+
class StartModuleResponse(_message.Message):
|
|
46
|
+
__slots__ = ()
|
|
47
|
+
SUCCESS_FIELD_NUMBER: _ClassVar[int]
|
|
48
|
+
OUTPUT_FIELD_NUMBER: _ClassVar[int]
|
|
49
|
+
JOB_ID_FIELD_NUMBER: _ClassVar[int]
|
|
50
|
+
success: bool
|
|
51
|
+
output: _struct_pb2.Struct
|
|
52
|
+
job_id: str
|
|
53
|
+
def __init__(self, success: _Optional[bool] = ..., output: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., job_id: _Optional[str] = ...) -> None: ...
|
|
54
|
+
|
|
55
|
+
class StopModuleResponse(_message.Message):
|
|
56
|
+
__slots__ = ()
|
|
57
|
+
SUCCESS_FIELD_NUMBER: _ClassVar[int]
|
|
58
|
+
JOB_ID_FIELD_NUMBER: _ClassVar[int]
|
|
59
|
+
success: bool
|
|
60
|
+
job_id: str
|
|
61
|
+
def __init__(self, success: _Optional[bool] = ..., job_id: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,40 @@
|
|
|
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/module/v1/module_service.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/module/v1/module_service.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from agentic_mesh_protocol.module.v1 import information_pb2 as agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2
|
|
26
|
+
from agentic_mesh_protocol.module.v1 import lifecycle_pb2 as agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2
|
|
27
|
+
from agentic_mesh_protocol.module.v1 import monitoring_pb2 as agentic__mesh__protocol_dot_module_dot_v1_dot_monitoring__pb2
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n4agentic_mesh_protocol/module/v1/module_service.proto\x12\x1f\x61gentic_mesh_protocol.module.v1\x1a\x31\x61gentic_mesh_protocol/module/v1/information.proto\x1a/agentic_mesh_protocol/module/v1/lifecycle.proto\x1a\x30\x61gentic_mesh_protocol/module/v1/monitoring.proto2\xc2\n\n\rModuleService\x12z\n\x0bStartModule\x12\x33.agentic_mesh_protocol.module.v1.StartModuleRequest\x1a\x34.agentic_mesh_protocol.module.v1.StartModuleResponse0\x01\x12u\n\nStopModule\x12\x32.agentic_mesh_protocol.module.v1.StopModuleRequest\x1a\x33.agentic_mesh_protocol.module.v1.StopModuleResponse\x12\x84\x01\n\x0fGetModuleStatus\x12\x37.agentic_mesh_protocol.module.v1.GetModuleStatusRequest\x1a\x38.agentic_mesh_protocol.module.v1.GetModuleStatusResponse\x12~\n\rGetModuleJobs\x12\x35.agentic_mesh_protocol.module.v1.GetModuleJobsRequest\x1a\x36.agentic_mesh_protocol.module.v1.GetModuleJobsResponse\x12\x81\x01\n\x0eGetModuleInput\x12\x36.agentic_mesh_protocol.module.v1.GetModuleInputRequest\x1a\x37.agentic_mesh_protocol.module.v1.GetModuleInputResponse\x12\x84\x01\n\x0fGetModuleOutput\x12\x37.agentic_mesh_protocol.module.v1.GetModuleOutputRequest\x1a\x38.agentic_mesh_protocol.module.v1.GetModuleOutputResponse\x12\x81\x01\n\x0eGetModuleSetup\x12\x36.agentic_mesh_protocol.module.v1.GetModuleSetupRequest\x1a\x37.agentic_mesh_protocol.module.v1.GetModuleSetupResponse\x12\x84\x01\n\x0fGetModuleSecret\x12\x37.agentic_mesh_protocol.module.v1.GetModuleSecretRequest\x1a\x38.agentic_mesh_protocol.module.v1.GetModuleSecretResponse\x12\x93\x01\n\x14GetConfigSetupModule\x12<.agentic_mesh_protocol.module.v1.GetConfigSetupModuleRequest\x1a=.agentic_mesh_protocol.module.v1.GetConfigSetupModuleResponse\x12\x8a\x01\n\x11\x43onfigSetupModule\x12\x39.agentic_mesh_protocol.module.v1.ConfigSetupModuleRequest\x1a:.agentic_mesh_protocol.module.v1.ConfigSetupModuleResponseB\xcf\x01\n#com.agentic_mesh_protocol.module.v1B\x12ModuleServiceProtoP\x01\xa2\x02\x03\x41MX\xaa\x02\x1d\x41genticMeshProtocol.Module.V1\xca\x02\x1d\x41genticMeshProtocol\\Module\\V1\xe2\x02)AgenticMeshProtocol\\Module\\V1\\GPBMetadata\xea\x02\x1f\x41genticMeshProtocol::Module::V1b\x06proto3')
|
|
31
|
+
|
|
32
|
+
_globals = globals()
|
|
33
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
34
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'agentic_mesh_protocol.module.v1.module_service_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.module.v1B\022ModuleServiceProtoP\001\242\002\003AMX\252\002\035AgenticMeshProtocol.Module.V1\312\002\035AgenticMeshProtocol\\Module\\V1\342\002)AgenticMeshProtocol\\Module\\V1\\GPBMetadata\352\002\037AgenticMeshProtocol::Module::V1'
|
|
38
|
+
_globals['_MODULESERVICE']._serialized_start=240
|
|
39
|
+
_globals['_MODULESERVICE']._serialized_end=1586
|
|
40
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
from agentic_mesh_protocol.module.v1 import information_pb2 as _information_pb2
|
|
2
|
+
from agentic_mesh_protocol.module.v1 import lifecycle_pb2 as _lifecycle_pb2
|
|
3
|
+
from agentic_mesh_protocol.module.v1 import monitoring_pb2 as _monitoring_pb2
|
|
4
|
+
from google.protobuf import descriptor as _descriptor
|
|
5
|
+
from typing import ClassVar as _ClassVar
|
|
6
|
+
|
|
7
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|