agentic-mesh-protocol 0.2.1.dev1__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 +132 -0
- agentic_mesh_protocol/cost/v1/cost_pb2.pyi +162 -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 +257 -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 +85 -0
- agentic_mesh_protocol/module/v1/information_pb2.pyi +104 -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 +544 -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.dev1.dist-info/METADATA +177 -0
- agentic_mesh_protocol-0.2.1.dev1.dist-info/RECORD +98 -0
- agentic_mesh_protocol-0.2.1.dev1.dist-info/WHEEL +5 -0
- agentic_mesh_protocol-0.2.1.dev1.dist-info/licenses/LICENSE +430 -0
- agentic_mesh_protocol-0.2.1.dev1.dist-info/top_level.txt +2 -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
|
@@ -0,0 +1,322 @@
|
|
|
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.registry.v1 import registry_models_pb2 as agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__models__pb2
|
|
6
|
+
from agentic_mesh_protocol.registry.v1 import registry_requests_pb2 as agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class RegistryServiceStub(object):
|
|
10
|
+
"""RegistryService is the entry point for agents and tools
|
|
11
|
+
to register themselves and discover other resources in the mesh.
|
|
12
|
+
-----------------------
|
|
13
|
+
1. REGISTRATION
|
|
14
|
+
-----------------------
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
def __init__(self, channel):
|
|
18
|
+
"""Constructor.
|
|
19
|
+
|
|
20
|
+
Args:
|
|
21
|
+
channel: A grpc.Channel.
|
|
22
|
+
"""
|
|
23
|
+
self.RegisterModule = channel.unary_unary(
|
|
24
|
+
'/agentic_mesh_protocol.registry.v1.RegistryService/RegisterModule',
|
|
25
|
+
request_serializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.RegisterModuleRequest.SerializeToString,
|
|
26
|
+
response_deserializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.RegisterModuleResponse.FromString,
|
|
27
|
+
_registered_method=True)
|
|
28
|
+
self.Heartbeat = channel.unary_unary(
|
|
29
|
+
'/agentic_mesh_protocol.registry.v1.RegistryService/Heartbeat',
|
|
30
|
+
request_serializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.HeartbeatRequest.SerializeToString,
|
|
31
|
+
response_deserializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.HeartbeatResponse.FromString,
|
|
32
|
+
_registered_method=True)
|
|
33
|
+
self.DiscoverSetups = channel.unary_unary(
|
|
34
|
+
'/agentic_mesh_protocol.registry.v1.RegistryService/DiscoverSetups',
|
|
35
|
+
request_serializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.DiscoverSetupsRequest.SerializeToString,
|
|
36
|
+
response_deserializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.DiscoverSetupsResponse.FromString,
|
|
37
|
+
_registered_method=True)
|
|
38
|
+
self.DiscoverModules = channel.unary_unary(
|
|
39
|
+
'/agentic_mesh_protocol.registry.v1.RegistryService/DiscoverModules',
|
|
40
|
+
request_serializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.DiscoverModulesRequest.SerializeToString,
|
|
41
|
+
response_deserializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.DiscoverModulesResponse.FromString,
|
|
42
|
+
_registered_method=True)
|
|
43
|
+
self.GetSetup = channel.unary_unary(
|
|
44
|
+
'/agentic_mesh_protocol.registry.v1.RegistryService/GetSetup',
|
|
45
|
+
request_serializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.GetSetupRequest.SerializeToString,
|
|
46
|
+
response_deserializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__models__pb2.SetupDescriptor.FromString,
|
|
47
|
+
_registered_method=True)
|
|
48
|
+
self.GetModule = channel.unary_unary(
|
|
49
|
+
'/agentic_mesh_protocol.registry.v1.RegistryService/GetModule',
|
|
50
|
+
request_serializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.GetModuleRequest.SerializeToString,
|
|
51
|
+
response_deserializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__models__pb2.ModuleDescriptor.FromString,
|
|
52
|
+
_registered_method=True)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
class RegistryServiceServicer(object):
|
|
56
|
+
"""RegistryService is the entry point for agents and tools
|
|
57
|
+
to register themselves and discover other resources in the mesh.
|
|
58
|
+
-----------------------
|
|
59
|
+
1. REGISTRATION
|
|
60
|
+
-----------------------
|
|
61
|
+
"""
|
|
62
|
+
|
|
63
|
+
def RegisterModule(self, request, context):
|
|
64
|
+
"""Called by a module gRPC at startup to declare itself in the network.
|
|
65
|
+
"""
|
|
66
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
67
|
+
context.set_details('Method not implemented!')
|
|
68
|
+
raise NotImplementedError('Method not implemented!')
|
|
69
|
+
|
|
70
|
+
def Heartbeat(self, request, context):
|
|
71
|
+
"""Optional but useful if you want a bit of liveness.
|
|
72
|
+
"""
|
|
73
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
74
|
+
context.set_details('Method not implemented!')
|
|
75
|
+
raise NotImplementedError('Method not implemented!')
|
|
76
|
+
|
|
77
|
+
def DiscoverSetups(self, request, context):
|
|
78
|
+
"""-----------------------
|
|
79
|
+
2. DISCOVERY
|
|
80
|
+
-----------------------
|
|
81
|
+
|
|
82
|
+
Discover setups that are available (agents / tools).
|
|
83
|
+
"""
|
|
84
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
85
|
+
context.set_details('Method not implemented!')
|
|
86
|
+
raise NotImplementedError('Method not implemented!')
|
|
87
|
+
|
|
88
|
+
def DiscoverModules(self, request, context):
|
|
89
|
+
"""Discover raw modules (rarely used by agents directly).
|
|
90
|
+
"""
|
|
91
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
92
|
+
context.set_details('Method not implemented!')
|
|
93
|
+
raise NotImplementedError('Method not implemented!')
|
|
94
|
+
|
|
95
|
+
def GetSetup(self, request, context):
|
|
96
|
+
"""-----------------------
|
|
97
|
+
3. RESOLUTION / INFO
|
|
98
|
+
-----------------------
|
|
99
|
+
|
|
100
|
+
Resolve a setup_id into a complete descriptor (config + endpoint module).
|
|
101
|
+
"""
|
|
102
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
103
|
+
context.set_details('Method not implemented!')
|
|
104
|
+
raise NotImplementedError('Method not implemented!')
|
|
105
|
+
|
|
106
|
+
def GetModule(self, request, context):
|
|
107
|
+
"""Resolve a module_id into a complete descriptor.
|
|
108
|
+
"""
|
|
109
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
110
|
+
context.set_details('Method not implemented!')
|
|
111
|
+
raise NotImplementedError('Method not implemented!')
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
def add_RegistryServiceServicer_to_server(servicer, server):
|
|
115
|
+
rpc_method_handlers = {
|
|
116
|
+
'RegisterModule': grpc.unary_unary_rpc_method_handler(
|
|
117
|
+
servicer.RegisterModule,
|
|
118
|
+
request_deserializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.RegisterModuleRequest.FromString,
|
|
119
|
+
response_serializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.RegisterModuleResponse.SerializeToString,
|
|
120
|
+
),
|
|
121
|
+
'Heartbeat': grpc.unary_unary_rpc_method_handler(
|
|
122
|
+
servicer.Heartbeat,
|
|
123
|
+
request_deserializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.HeartbeatRequest.FromString,
|
|
124
|
+
response_serializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.HeartbeatResponse.SerializeToString,
|
|
125
|
+
),
|
|
126
|
+
'DiscoverSetups': grpc.unary_unary_rpc_method_handler(
|
|
127
|
+
servicer.DiscoverSetups,
|
|
128
|
+
request_deserializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.DiscoverSetupsRequest.FromString,
|
|
129
|
+
response_serializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.DiscoverSetupsResponse.SerializeToString,
|
|
130
|
+
),
|
|
131
|
+
'DiscoverModules': grpc.unary_unary_rpc_method_handler(
|
|
132
|
+
servicer.DiscoverModules,
|
|
133
|
+
request_deserializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.DiscoverModulesRequest.FromString,
|
|
134
|
+
response_serializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.DiscoverModulesResponse.SerializeToString,
|
|
135
|
+
),
|
|
136
|
+
'GetSetup': grpc.unary_unary_rpc_method_handler(
|
|
137
|
+
servicer.GetSetup,
|
|
138
|
+
request_deserializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.GetSetupRequest.FromString,
|
|
139
|
+
response_serializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__models__pb2.SetupDescriptor.SerializeToString,
|
|
140
|
+
),
|
|
141
|
+
'GetModule': grpc.unary_unary_rpc_method_handler(
|
|
142
|
+
servicer.GetModule,
|
|
143
|
+
request_deserializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.GetModuleRequest.FromString,
|
|
144
|
+
response_serializer=agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__models__pb2.ModuleDescriptor.SerializeToString,
|
|
145
|
+
),
|
|
146
|
+
}
|
|
147
|
+
generic_handler = grpc.method_handlers_generic_handler(
|
|
148
|
+
'agentic_mesh_protocol.registry.v1.RegistryService', rpc_method_handlers)
|
|
149
|
+
server.add_generic_rpc_handlers((generic_handler,))
|
|
150
|
+
server.add_registered_method_handlers('agentic_mesh_protocol.registry.v1.RegistryService', rpc_method_handlers)
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
# This class is part of an EXPERIMENTAL API.
|
|
154
|
+
class RegistryService(object):
|
|
155
|
+
"""RegistryService is the entry point for agents and tools
|
|
156
|
+
to register themselves and discover other resources in the mesh.
|
|
157
|
+
-----------------------
|
|
158
|
+
1. REGISTRATION
|
|
159
|
+
-----------------------
|
|
160
|
+
"""
|
|
161
|
+
|
|
162
|
+
@staticmethod
|
|
163
|
+
def RegisterModule(request,
|
|
164
|
+
target,
|
|
165
|
+
options=(),
|
|
166
|
+
channel_credentials=None,
|
|
167
|
+
call_credentials=None,
|
|
168
|
+
insecure=False,
|
|
169
|
+
compression=None,
|
|
170
|
+
wait_for_ready=None,
|
|
171
|
+
timeout=None,
|
|
172
|
+
metadata=None):
|
|
173
|
+
return grpc.experimental.unary_unary(
|
|
174
|
+
request,
|
|
175
|
+
target,
|
|
176
|
+
'/agentic_mesh_protocol.registry.v1.RegistryService/RegisterModule',
|
|
177
|
+
agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.RegisterModuleRequest.SerializeToString,
|
|
178
|
+
agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.RegisterModuleResponse.FromString,
|
|
179
|
+
options,
|
|
180
|
+
channel_credentials,
|
|
181
|
+
insecure,
|
|
182
|
+
call_credentials,
|
|
183
|
+
compression,
|
|
184
|
+
wait_for_ready,
|
|
185
|
+
timeout,
|
|
186
|
+
metadata,
|
|
187
|
+
_registered_method=True)
|
|
188
|
+
|
|
189
|
+
@staticmethod
|
|
190
|
+
def Heartbeat(request,
|
|
191
|
+
target,
|
|
192
|
+
options=(),
|
|
193
|
+
channel_credentials=None,
|
|
194
|
+
call_credentials=None,
|
|
195
|
+
insecure=False,
|
|
196
|
+
compression=None,
|
|
197
|
+
wait_for_ready=None,
|
|
198
|
+
timeout=None,
|
|
199
|
+
metadata=None):
|
|
200
|
+
return grpc.experimental.unary_unary(
|
|
201
|
+
request,
|
|
202
|
+
target,
|
|
203
|
+
'/agentic_mesh_protocol.registry.v1.RegistryService/Heartbeat',
|
|
204
|
+
agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.HeartbeatRequest.SerializeToString,
|
|
205
|
+
agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.HeartbeatResponse.FromString,
|
|
206
|
+
options,
|
|
207
|
+
channel_credentials,
|
|
208
|
+
insecure,
|
|
209
|
+
call_credentials,
|
|
210
|
+
compression,
|
|
211
|
+
wait_for_ready,
|
|
212
|
+
timeout,
|
|
213
|
+
metadata,
|
|
214
|
+
_registered_method=True)
|
|
215
|
+
|
|
216
|
+
@staticmethod
|
|
217
|
+
def DiscoverSetups(request,
|
|
218
|
+
target,
|
|
219
|
+
options=(),
|
|
220
|
+
channel_credentials=None,
|
|
221
|
+
call_credentials=None,
|
|
222
|
+
insecure=False,
|
|
223
|
+
compression=None,
|
|
224
|
+
wait_for_ready=None,
|
|
225
|
+
timeout=None,
|
|
226
|
+
metadata=None):
|
|
227
|
+
return grpc.experimental.unary_unary(
|
|
228
|
+
request,
|
|
229
|
+
target,
|
|
230
|
+
'/agentic_mesh_protocol.registry.v1.RegistryService/DiscoverSetups',
|
|
231
|
+
agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.DiscoverSetupsRequest.SerializeToString,
|
|
232
|
+
agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.DiscoverSetupsResponse.FromString,
|
|
233
|
+
options,
|
|
234
|
+
channel_credentials,
|
|
235
|
+
insecure,
|
|
236
|
+
call_credentials,
|
|
237
|
+
compression,
|
|
238
|
+
wait_for_ready,
|
|
239
|
+
timeout,
|
|
240
|
+
metadata,
|
|
241
|
+
_registered_method=True)
|
|
242
|
+
|
|
243
|
+
@staticmethod
|
|
244
|
+
def DiscoverModules(request,
|
|
245
|
+
target,
|
|
246
|
+
options=(),
|
|
247
|
+
channel_credentials=None,
|
|
248
|
+
call_credentials=None,
|
|
249
|
+
insecure=False,
|
|
250
|
+
compression=None,
|
|
251
|
+
wait_for_ready=None,
|
|
252
|
+
timeout=None,
|
|
253
|
+
metadata=None):
|
|
254
|
+
return grpc.experimental.unary_unary(
|
|
255
|
+
request,
|
|
256
|
+
target,
|
|
257
|
+
'/agentic_mesh_protocol.registry.v1.RegistryService/DiscoverModules',
|
|
258
|
+
agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.DiscoverModulesRequest.SerializeToString,
|
|
259
|
+
agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.DiscoverModulesResponse.FromString,
|
|
260
|
+
options,
|
|
261
|
+
channel_credentials,
|
|
262
|
+
insecure,
|
|
263
|
+
call_credentials,
|
|
264
|
+
compression,
|
|
265
|
+
wait_for_ready,
|
|
266
|
+
timeout,
|
|
267
|
+
metadata,
|
|
268
|
+
_registered_method=True)
|
|
269
|
+
|
|
270
|
+
@staticmethod
|
|
271
|
+
def GetSetup(request,
|
|
272
|
+
target,
|
|
273
|
+
options=(),
|
|
274
|
+
channel_credentials=None,
|
|
275
|
+
call_credentials=None,
|
|
276
|
+
insecure=False,
|
|
277
|
+
compression=None,
|
|
278
|
+
wait_for_ready=None,
|
|
279
|
+
timeout=None,
|
|
280
|
+
metadata=None):
|
|
281
|
+
return grpc.experimental.unary_unary(
|
|
282
|
+
request,
|
|
283
|
+
target,
|
|
284
|
+
'/agentic_mesh_protocol.registry.v1.RegistryService/GetSetup',
|
|
285
|
+
agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.GetSetupRequest.SerializeToString,
|
|
286
|
+
agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__models__pb2.SetupDescriptor.FromString,
|
|
287
|
+
options,
|
|
288
|
+
channel_credentials,
|
|
289
|
+
insecure,
|
|
290
|
+
call_credentials,
|
|
291
|
+
compression,
|
|
292
|
+
wait_for_ready,
|
|
293
|
+
timeout,
|
|
294
|
+
metadata,
|
|
295
|
+
_registered_method=True)
|
|
296
|
+
|
|
297
|
+
@staticmethod
|
|
298
|
+
def GetModule(request,
|
|
299
|
+
target,
|
|
300
|
+
options=(),
|
|
301
|
+
channel_credentials=None,
|
|
302
|
+
call_credentials=None,
|
|
303
|
+
insecure=False,
|
|
304
|
+
compression=None,
|
|
305
|
+
wait_for_ready=None,
|
|
306
|
+
timeout=None,
|
|
307
|
+
metadata=None):
|
|
308
|
+
return grpc.experimental.unary_unary(
|
|
309
|
+
request,
|
|
310
|
+
target,
|
|
311
|
+
'/agentic_mesh_protocol.registry.v1.RegistryService/GetModule',
|
|
312
|
+
agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__requests__pb2.GetModuleRequest.SerializeToString,
|
|
313
|
+
agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__models__pb2.ModuleDescriptor.FromString,
|
|
314
|
+
options,
|
|
315
|
+
channel_credentials,
|
|
316
|
+
insecure,
|
|
317
|
+
call_credentials,
|
|
318
|
+
compression,
|
|
319
|
+
wait_for_ready,
|
|
320
|
+
timeout,
|
|
321
|
+
metadata,
|
|
322
|
+
_registered_method=True)
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,142 @@
|
|
|
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/setup/v1/setup.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/setup/v1/setup.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/setup/v1/setup.proto\x12\x1e\x61gentic_mesh_protocol.setup.v1\x1a\x1b\x62uf/validate/validate.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xe7\x01\n\x0cSetupVersion\x12\x16\n\x02id\x18\x01 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x02id\x12!\n\x08setup_id\x18\x02 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x07setupId\x12 \n\x07version\x18\x03 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x07version\x12\x39\n\x07\x63ontent\x18\x04 \x01(\x0b\x32\x17.google.protobuf.StructB\x06\xbaH\x03\xc8\x01\x01R\x07\x63ontent\x12?\n\rcreation_date\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x0c\x63reationDate\"\x82\x03\n\x05Setup\x12\x16\n\x02id\x18\x01 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x02id\x12\x1a\n\x04name\x18\x02 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x04name\x12/\n\x0forganisation_id\x18\x03 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x0eorganisationId\x12!\n\x08owner_id\x18\x04 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x07ownerId\x12#\n\tmodule_id\x18\x05 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x08moduleId\x12\x65\n\x15\x63urrent_setup_version\x18\x06 \x01(\x0b\x32,.agentic_mesh_protocol.setup.v1.SetupVersionH\x00R\x13\x63urrentSetupVersion\x88\x01\x01\x12K\n\x06status\x18\x07 \x01(\x0e\x32+.agentic_mesh_protocol.setup.v1.SetupStatusB\x06\xbaH\x03\xc8\x01\x01R\x06statusB\x18\n\x16_current_setup_version\"\xf7\x02\n\x12\x43reateSetupRequest\x12\x1a\n\x04name\x18\x01 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x04name\x12/\n\x0forganisation_id\x18\x02 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x0eorganisationId\x12!\n\x08owner_id\x18\x03 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x07ownerId\x12#\n\tmodule_id\x18\x04 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x08moduleId\x12\x65\n\x15\x63urrent_setup_version\x18\x05 \x01(\x0b\x32,.agentic_mesh_protocol.setup.v1.SetupVersionH\x00R\x13\x63urrentSetupVersion\x88\x01\x01\x12K\n\x06status\x18\x06 \x01(\x0e\x32+.agentic_mesh_protocol.setup.v1.SetupStatusB\x06\xbaH\x03\xc8\x01\x01R\x06statusB\x18\n\x16_current_setup_version\"l\n\x13\x43reateSetupResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success\x12;\n\x05setup\x18\x02 \x01(\x0b\x32%.agentic_mesh_protocol.setup.v1.SetupR\x05setup\"_\n\x0fGetSetupRequest\x12!\n\x08setup_id\x18\x01 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x07setupId\x12\x1d\n\x07version\x18\x02 \x01(\tH\x00R\x07version\x88\x01\x01\x42\n\n\x08_version\"\xa2\x01\n\x10GetSetupResponse\x12;\n\x05setup\x18\x01 \x01(\x0b\x32%.agentic_mesh_protocol.setup.v1.SetupR\x05setup\x12Q\n\rsetup_version\x18\x02 \x01(\x0b\x32,.agentic_mesh_protocol.setup.v1.SetupVersionR\x0csetupVersion\"\x9d\x02\n\x12UpdateSetupRequest\x12!\n\x08setup_id\x18\x01 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x07setupId\x12\x1a\n\x04name\x18\x02 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x04name\x12\x19\n\x08owner_id\x18\x03 \x01(\tR\x07ownerId\x12`\n\x15\x63urrent_setup_version\x18\x04 \x01(\x0b\x32,.agentic_mesh_protocol.setup.v1.SetupVersionR\x13\x63urrentSetupVersion\x12K\n\x06status\x18\x05 \x01(\x0e\x32+.agentic_mesh_protocol.setup.v1.SetupStatusB\x06\xbaH\x03\xc8\x01\x01R\x06status\"l\n\x13UpdateSetupResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success\x12;\n\x05setup\x18\x02 \x01(\x0b\x32%.agentic_mesh_protocol.setup.v1.SetupR\x05setup\"7\n\x12\x44\x65leteSetupRequest\x12!\n\x08setup_id\x18\x01 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x07setupId\"/\n\x13\x44\x65leteSetupResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success\"\x93\x01\n\x19\x43reateSetupVersionRequest\x12!\n\x08setup_id\x18\x01 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x07setupId\x12 \n\x07version\x18\x02 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x07version\x12\x31\n\x07\x63ontent\x18\x03 \x01(\x0b\x32\x17.google.protobuf.StructR\x07\x63ontent\"\x89\x01\n\x1a\x43reateSetupVersionResponse\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\"B\n\x16GetSetupVersionRequest\x12(\n\x10setup_version_id\x18\x01 \x01(\tR\x0esetupVersionId\"l\n\x17GetSetupVersionResponse\x12Q\n\rsetup_version\x18\x01 \x01(\x0b\x32,.agentic_mesh_protocol.setup.v1.SetupVersionR\x0csetupVersion\"b\n\x1aSearchSetupVersionsRequest\x12\x19\n\x08setup_id\x18\x01 \x01(\tR\x07setupId\x12\x1d\n\x07version\x18\x02 \x01(\tH\x00R\x07version\x88\x01\x01\x42\n\n\x08_version\"r\n\x1bSearchSetupVersionsResponse\x12S\n\x0esetup_versions\x18\x01 \x03(\x0b\x32,.agentic_mesh_protocol.setup.v1.SetupVersionR\rsetupVersions\"\xaa\x01\n\x19UpdateSetupVersionRequest\x12\x30\n\x10setup_version_id\x18\x01 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x0esetupVersionId\x12 \n\x07version\x18\x02 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x07version\x12\x39\n\x07\x63ontent\x18\x03 \x01(\x0b\x32\x17.google.protobuf.StructB\x06\xbaH\x03\xc8\x01\x01R\x07\x63ontent\"\x89\x01\n\x1aUpdateSetupVersionResponse\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\"M\n\x19\x44\x65leteSetupVersionRequest\x12\x30\n\x10setup_version_id\x18\x01 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x0esetupVersionId\"6\n\x1a\x44\x65leteSetupVersionResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success\"\xc5\x01\n\x11ListSetupsRequest\x12,\n\x0forganisation_id\x18\x01 \x01(\tH\x00R\x0eorganisationId\x88\x01\x01\x12\x1e\n\x08owner_id\x18\x02 \x01(\tH\x01R\x07ownerId\x88\x01\x01\x12 \n\x05limit\x18\x03 \x01(\x05\x42\n\xbaH\x07\x1a\x05\x18\xe8\x07(\x01R\x05limit\x12\x1f\n\x06offset\x18\x04 \x01(\x05\x42\x07\xbaH\x04\x1a\x02(\x00R\x06offsetB\x12\n\x10_organisation_idB\x0b\n\t_owner_id\"}\n\x12ListSetupsResponse\x12=\n\x06setups\x18\x01 \x03(\x0b\x32%.agentic_mesh_protocol.setup.v1.SetupR\x06setups\x12(\n\x0btotal_count\x18\x02 \x01(\x05\x42\x07\xbaH\x04\x1a\x02(\x00R\ntotalCount*\xa9\x01\n\x0bSetupStatus\x12\t\n\x05\x44RAFT\x10\x00\x12\x0e\n\nVALIDATING\x10\x01\x12\t\n\x05READY\x10\x02\x12\n\n\x06PAUSED\x10\x04\x12\n\n\x06\x46\x41ILED\x10\x05\x12\x0c\n\x08\x41RCHIVED\x10\x06\x12\x17\n\x13NEEDS_CONFIGURATION\x10\x07\x12\x18\n\x14\x43ONFIGURATION_FAILED\x10\x08\x12\x1b\n\x17\x43ONFIGURATION_SUCCEEDED\x10\tB\xc2\x01\n\"com.agentic_mesh_protocol.setup.v1B\nSetupProtoP\x01\xa2\x02\x03\x41SX\xaa\x02\x1c\x41genticMeshProtocol.Setup.V1\xca\x02\x1c\x41genticMeshProtocol\\Setup\\V1\xe2\x02(AgenticMeshProtocol\\Setup\\V1\\GPBMetadata\xea\x02\x1e\x41genticMeshProtocol::Setup::V1b\x06proto3')
|
|
31
|
+
|
|
32
|
+
_globals = globals()
|
|
33
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
34
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'agentic_mesh_protocol.setup.v1.setup_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.setup.v1B\nSetupProtoP\001\242\002\003ASX\252\002\034AgenticMeshProtocol.Setup.V1\312\002\034AgenticMeshProtocol\\Setup\\V1\342\002(AgenticMeshProtocol\\Setup\\V1\\GPBMetadata\352\002\036AgenticMeshProtocol::Setup::V1'
|
|
38
|
+
_globals['_SETUPVERSION'].fields_by_name['id']._loaded_options = None
|
|
39
|
+
_globals['_SETUPVERSION'].fields_by_name['id']._serialized_options = b'\272H\003\310\001\001'
|
|
40
|
+
_globals['_SETUPVERSION'].fields_by_name['setup_id']._loaded_options = None
|
|
41
|
+
_globals['_SETUPVERSION'].fields_by_name['setup_id']._serialized_options = b'\272H\003\310\001\001'
|
|
42
|
+
_globals['_SETUPVERSION'].fields_by_name['version']._loaded_options = None
|
|
43
|
+
_globals['_SETUPVERSION'].fields_by_name['version']._serialized_options = b'\272H\003\310\001\001'
|
|
44
|
+
_globals['_SETUPVERSION'].fields_by_name['content']._loaded_options = None
|
|
45
|
+
_globals['_SETUPVERSION'].fields_by_name['content']._serialized_options = b'\272H\003\310\001\001'
|
|
46
|
+
_globals['_SETUP'].fields_by_name['id']._loaded_options = None
|
|
47
|
+
_globals['_SETUP'].fields_by_name['id']._serialized_options = b'\272H\003\310\001\001'
|
|
48
|
+
_globals['_SETUP'].fields_by_name['name']._loaded_options = None
|
|
49
|
+
_globals['_SETUP'].fields_by_name['name']._serialized_options = b'\272H\003\310\001\001'
|
|
50
|
+
_globals['_SETUP'].fields_by_name['organisation_id']._loaded_options = None
|
|
51
|
+
_globals['_SETUP'].fields_by_name['organisation_id']._serialized_options = b'\272H\003\310\001\001'
|
|
52
|
+
_globals['_SETUP'].fields_by_name['owner_id']._loaded_options = None
|
|
53
|
+
_globals['_SETUP'].fields_by_name['owner_id']._serialized_options = b'\272H\003\310\001\001'
|
|
54
|
+
_globals['_SETUP'].fields_by_name['module_id']._loaded_options = None
|
|
55
|
+
_globals['_SETUP'].fields_by_name['module_id']._serialized_options = b'\272H\003\310\001\001'
|
|
56
|
+
_globals['_SETUP'].fields_by_name['status']._loaded_options = None
|
|
57
|
+
_globals['_SETUP'].fields_by_name['status']._serialized_options = b'\272H\003\310\001\001'
|
|
58
|
+
_globals['_CREATESETUPREQUEST'].fields_by_name['name']._loaded_options = None
|
|
59
|
+
_globals['_CREATESETUPREQUEST'].fields_by_name['name']._serialized_options = b'\272H\003\310\001\001'
|
|
60
|
+
_globals['_CREATESETUPREQUEST'].fields_by_name['organisation_id']._loaded_options = None
|
|
61
|
+
_globals['_CREATESETUPREQUEST'].fields_by_name['organisation_id']._serialized_options = b'\272H\003\310\001\001'
|
|
62
|
+
_globals['_CREATESETUPREQUEST'].fields_by_name['owner_id']._loaded_options = None
|
|
63
|
+
_globals['_CREATESETUPREQUEST'].fields_by_name['owner_id']._serialized_options = b'\272H\003\310\001\001'
|
|
64
|
+
_globals['_CREATESETUPREQUEST'].fields_by_name['module_id']._loaded_options = None
|
|
65
|
+
_globals['_CREATESETUPREQUEST'].fields_by_name['module_id']._serialized_options = b'\272H\003\310\001\001'
|
|
66
|
+
_globals['_CREATESETUPREQUEST'].fields_by_name['status']._loaded_options = None
|
|
67
|
+
_globals['_CREATESETUPREQUEST'].fields_by_name['status']._serialized_options = b'\272H\003\310\001\001'
|
|
68
|
+
_globals['_GETSETUPREQUEST'].fields_by_name['setup_id']._loaded_options = None
|
|
69
|
+
_globals['_GETSETUPREQUEST'].fields_by_name['setup_id']._serialized_options = b'\272H\003\310\001\001'
|
|
70
|
+
_globals['_UPDATESETUPREQUEST'].fields_by_name['setup_id']._loaded_options = None
|
|
71
|
+
_globals['_UPDATESETUPREQUEST'].fields_by_name['setup_id']._serialized_options = b'\272H\003\310\001\001'
|
|
72
|
+
_globals['_UPDATESETUPREQUEST'].fields_by_name['name']._loaded_options = None
|
|
73
|
+
_globals['_UPDATESETUPREQUEST'].fields_by_name['name']._serialized_options = b'\272H\003\310\001\001'
|
|
74
|
+
_globals['_UPDATESETUPREQUEST'].fields_by_name['status']._loaded_options = None
|
|
75
|
+
_globals['_UPDATESETUPREQUEST'].fields_by_name['status']._serialized_options = b'\272H\003\310\001\001'
|
|
76
|
+
_globals['_DELETESETUPREQUEST'].fields_by_name['setup_id']._loaded_options = None
|
|
77
|
+
_globals['_DELETESETUPREQUEST'].fields_by_name['setup_id']._serialized_options = b'\272H\003\310\001\001'
|
|
78
|
+
_globals['_CREATESETUPVERSIONREQUEST'].fields_by_name['setup_id']._loaded_options = None
|
|
79
|
+
_globals['_CREATESETUPVERSIONREQUEST'].fields_by_name['setup_id']._serialized_options = b'\272H\003\310\001\001'
|
|
80
|
+
_globals['_CREATESETUPVERSIONREQUEST'].fields_by_name['version']._loaded_options = None
|
|
81
|
+
_globals['_CREATESETUPVERSIONREQUEST'].fields_by_name['version']._serialized_options = b'\272H\003\310\001\001'
|
|
82
|
+
_globals['_UPDATESETUPVERSIONREQUEST'].fields_by_name['setup_version_id']._loaded_options = None
|
|
83
|
+
_globals['_UPDATESETUPVERSIONREQUEST'].fields_by_name['setup_version_id']._serialized_options = b'\272H\003\310\001\001'
|
|
84
|
+
_globals['_UPDATESETUPVERSIONREQUEST'].fields_by_name['version']._loaded_options = None
|
|
85
|
+
_globals['_UPDATESETUPVERSIONREQUEST'].fields_by_name['version']._serialized_options = b'\272H\003\310\001\001'
|
|
86
|
+
_globals['_UPDATESETUPVERSIONREQUEST'].fields_by_name['content']._loaded_options = None
|
|
87
|
+
_globals['_UPDATESETUPVERSIONREQUEST'].fields_by_name['content']._serialized_options = b'\272H\003\310\001\001'
|
|
88
|
+
_globals['_DELETESETUPVERSIONREQUEST'].fields_by_name['setup_version_id']._loaded_options = None
|
|
89
|
+
_globals['_DELETESETUPVERSIONREQUEST'].fields_by_name['setup_version_id']._serialized_options = b'\272H\003\310\001\001'
|
|
90
|
+
_globals['_LISTSETUPSREQUEST'].fields_by_name['limit']._loaded_options = None
|
|
91
|
+
_globals['_LISTSETUPSREQUEST'].fields_by_name['limit']._serialized_options = b'\272H\007\032\005\030\350\007(\001'
|
|
92
|
+
_globals['_LISTSETUPSREQUEST'].fields_by_name['offset']._loaded_options = None
|
|
93
|
+
_globals['_LISTSETUPSREQUEST'].fields_by_name['offset']._serialized_options = b'\272H\004\032\002(\000'
|
|
94
|
+
_globals['_LISTSETUPSRESPONSE'].fields_by_name['total_count']._loaded_options = None
|
|
95
|
+
_globals['_LISTSETUPSRESPONSE'].fields_by_name['total_count']._serialized_options = b'\272H\004\032\002(\000'
|
|
96
|
+
_globals['_SETUPSTATUS']._serialized_start=3507
|
|
97
|
+
_globals['_SETUPSTATUS']._serialized_end=3676
|
|
98
|
+
_globals['_SETUPVERSION']._serialized_start=171
|
|
99
|
+
_globals['_SETUPVERSION']._serialized_end=402
|
|
100
|
+
_globals['_SETUP']._serialized_start=405
|
|
101
|
+
_globals['_SETUP']._serialized_end=791
|
|
102
|
+
_globals['_CREATESETUPREQUEST']._serialized_start=794
|
|
103
|
+
_globals['_CREATESETUPREQUEST']._serialized_end=1169
|
|
104
|
+
_globals['_CREATESETUPRESPONSE']._serialized_start=1171
|
|
105
|
+
_globals['_CREATESETUPRESPONSE']._serialized_end=1279
|
|
106
|
+
_globals['_GETSETUPREQUEST']._serialized_start=1281
|
|
107
|
+
_globals['_GETSETUPREQUEST']._serialized_end=1376
|
|
108
|
+
_globals['_GETSETUPRESPONSE']._serialized_start=1379
|
|
109
|
+
_globals['_GETSETUPRESPONSE']._serialized_end=1541
|
|
110
|
+
_globals['_UPDATESETUPREQUEST']._serialized_start=1544
|
|
111
|
+
_globals['_UPDATESETUPREQUEST']._serialized_end=1829
|
|
112
|
+
_globals['_UPDATESETUPRESPONSE']._serialized_start=1831
|
|
113
|
+
_globals['_UPDATESETUPRESPONSE']._serialized_end=1939
|
|
114
|
+
_globals['_DELETESETUPREQUEST']._serialized_start=1941
|
|
115
|
+
_globals['_DELETESETUPREQUEST']._serialized_end=1996
|
|
116
|
+
_globals['_DELETESETUPRESPONSE']._serialized_start=1998
|
|
117
|
+
_globals['_DELETESETUPRESPONSE']._serialized_end=2045
|
|
118
|
+
_globals['_CREATESETUPVERSIONREQUEST']._serialized_start=2048
|
|
119
|
+
_globals['_CREATESETUPVERSIONREQUEST']._serialized_end=2195
|
|
120
|
+
_globals['_CREATESETUPVERSIONRESPONSE']._serialized_start=2198
|
|
121
|
+
_globals['_CREATESETUPVERSIONRESPONSE']._serialized_end=2335
|
|
122
|
+
_globals['_GETSETUPVERSIONREQUEST']._serialized_start=2337
|
|
123
|
+
_globals['_GETSETUPVERSIONREQUEST']._serialized_end=2403
|
|
124
|
+
_globals['_GETSETUPVERSIONRESPONSE']._serialized_start=2405
|
|
125
|
+
_globals['_GETSETUPVERSIONRESPONSE']._serialized_end=2513
|
|
126
|
+
_globals['_SEARCHSETUPVERSIONSREQUEST']._serialized_start=2515
|
|
127
|
+
_globals['_SEARCHSETUPVERSIONSREQUEST']._serialized_end=2613
|
|
128
|
+
_globals['_SEARCHSETUPVERSIONSRESPONSE']._serialized_start=2615
|
|
129
|
+
_globals['_SEARCHSETUPVERSIONSRESPONSE']._serialized_end=2729
|
|
130
|
+
_globals['_UPDATESETUPVERSIONREQUEST']._serialized_start=2732
|
|
131
|
+
_globals['_UPDATESETUPVERSIONREQUEST']._serialized_end=2902
|
|
132
|
+
_globals['_UPDATESETUPVERSIONRESPONSE']._serialized_start=2905
|
|
133
|
+
_globals['_UPDATESETUPVERSIONRESPONSE']._serialized_end=3042
|
|
134
|
+
_globals['_DELETESETUPVERSIONREQUEST']._serialized_start=3044
|
|
135
|
+
_globals['_DELETESETUPVERSIONREQUEST']._serialized_end=3121
|
|
136
|
+
_globals['_DELETESETUPVERSIONRESPONSE']._serialized_start=3123
|
|
137
|
+
_globals['_DELETESETUPVERSIONRESPONSE']._serialized_end=3177
|
|
138
|
+
_globals['_LISTSETUPSREQUEST']._serialized_start=3180
|
|
139
|
+
_globals['_LISTSETUPSREQUEST']._serialized_end=3377
|
|
140
|
+
_globals['_LISTSETUPSRESPONSE']._serialized_start=3379
|
|
141
|
+
_globals['_LISTSETUPSRESPONSE']._serialized_end=3504
|
|
142
|
+
# @@protoc_insertion_point(module_scope)
|