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,234 @@
|
|
|
1
|
+
import datetime
|
|
2
|
+
|
|
3
|
+
from buf.validate import validate_pb2 as _validate_pb2
|
|
4
|
+
from google.protobuf import struct_pb2 as _struct_pb2
|
|
5
|
+
from google.protobuf import timestamp_pb2 as _timestamp_pb2
|
|
6
|
+
from google.protobuf.internal import containers as _containers
|
|
7
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
8
|
+
from google.protobuf import descriptor as _descriptor
|
|
9
|
+
from google.protobuf import message as _message
|
|
10
|
+
from collections.abc import Iterable as _Iterable, Mapping as _Mapping
|
|
11
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
|
|
12
|
+
|
|
13
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
14
|
+
|
|
15
|
+
class SetupStatus(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
16
|
+
__slots__ = ()
|
|
17
|
+
DRAFT: _ClassVar[SetupStatus]
|
|
18
|
+
VALIDATING: _ClassVar[SetupStatus]
|
|
19
|
+
READY: _ClassVar[SetupStatus]
|
|
20
|
+
PAUSED: _ClassVar[SetupStatus]
|
|
21
|
+
FAILED: _ClassVar[SetupStatus]
|
|
22
|
+
ARCHIVED: _ClassVar[SetupStatus]
|
|
23
|
+
NEEDS_CONFIGURATION: _ClassVar[SetupStatus]
|
|
24
|
+
CONFIGURATION_FAILED: _ClassVar[SetupStatus]
|
|
25
|
+
CONFIGURATION_SUCCEEDED: _ClassVar[SetupStatus]
|
|
26
|
+
DRAFT: SetupStatus
|
|
27
|
+
VALIDATING: SetupStatus
|
|
28
|
+
READY: SetupStatus
|
|
29
|
+
PAUSED: SetupStatus
|
|
30
|
+
FAILED: SetupStatus
|
|
31
|
+
ARCHIVED: SetupStatus
|
|
32
|
+
NEEDS_CONFIGURATION: SetupStatus
|
|
33
|
+
CONFIGURATION_FAILED: SetupStatus
|
|
34
|
+
CONFIGURATION_SUCCEEDED: SetupStatus
|
|
35
|
+
|
|
36
|
+
class SetupVersion(_message.Message):
|
|
37
|
+
__slots__ = ()
|
|
38
|
+
ID_FIELD_NUMBER: _ClassVar[int]
|
|
39
|
+
SETUP_ID_FIELD_NUMBER: _ClassVar[int]
|
|
40
|
+
VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
41
|
+
CONTENT_FIELD_NUMBER: _ClassVar[int]
|
|
42
|
+
CREATION_DATE_FIELD_NUMBER: _ClassVar[int]
|
|
43
|
+
id: str
|
|
44
|
+
setup_id: str
|
|
45
|
+
version: str
|
|
46
|
+
content: _struct_pb2.Struct
|
|
47
|
+
creation_date: _timestamp_pb2.Timestamp
|
|
48
|
+
def __init__(self, id: _Optional[str] = ..., setup_id: _Optional[str] = ..., version: _Optional[str] = ..., content: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., creation_date: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]] = ...) -> None: ...
|
|
49
|
+
|
|
50
|
+
class Setup(_message.Message):
|
|
51
|
+
__slots__ = ()
|
|
52
|
+
ID_FIELD_NUMBER: _ClassVar[int]
|
|
53
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
54
|
+
ORGANISATION_ID_FIELD_NUMBER: _ClassVar[int]
|
|
55
|
+
OWNER_ID_FIELD_NUMBER: _ClassVar[int]
|
|
56
|
+
MODULE_ID_FIELD_NUMBER: _ClassVar[int]
|
|
57
|
+
CURRENT_SETUP_VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
58
|
+
STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
59
|
+
id: str
|
|
60
|
+
name: str
|
|
61
|
+
organisation_id: str
|
|
62
|
+
owner_id: str
|
|
63
|
+
module_id: str
|
|
64
|
+
current_setup_version: SetupVersion
|
|
65
|
+
status: SetupStatus
|
|
66
|
+
def __init__(self, id: _Optional[str] = ..., name: _Optional[str] = ..., organisation_id: _Optional[str] = ..., owner_id: _Optional[str] = ..., module_id: _Optional[str] = ..., current_setup_version: _Optional[_Union[SetupVersion, _Mapping]] = ..., status: _Optional[_Union[SetupStatus, str]] = ...) -> None: ...
|
|
67
|
+
|
|
68
|
+
class CreateSetupRequest(_message.Message):
|
|
69
|
+
__slots__ = ()
|
|
70
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
71
|
+
ORGANISATION_ID_FIELD_NUMBER: _ClassVar[int]
|
|
72
|
+
OWNER_ID_FIELD_NUMBER: _ClassVar[int]
|
|
73
|
+
MODULE_ID_FIELD_NUMBER: _ClassVar[int]
|
|
74
|
+
CURRENT_SETUP_VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
75
|
+
STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
76
|
+
name: str
|
|
77
|
+
organisation_id: str
|
|
78
|
+
owner_id: str
|
|
79
|
+
module_id: str
|
|
80
|
+
current_setup_version: SetupVersion
|
|
81
|
+
status: SetupStatus
|
|
82
|
+
def __init__(self, name: _Optional[str] = ..., organisation_id: _Optional[str] = ..., owner_id: _Optional[str] = ..., module_id: _Optional[str] = ..., current_setup_version: _Optional[_Union[SetupVersion, _Mapping]] = ..., status: _Optional[_Union[SetupStatus, str]] = ...) -> None: ...
|
|
83
|
+
|
|
84
|
+
class CreateSetupResponse(_message.Message):
|
|
85
|
+
__slots__ = ()
|
|
86
|
+
SUCCESS_FIELD_NUMBER: _ClassVar[int]
|
|
87
|
+
SETUP_FIELD_NUMBER: _ClassVar[int]
|
|
88
|
+
success: bool
|
|
89
|
+
setup: Setup
|
|
90
|
+
def __init__(self, success: _Optional[bool] = ..., setup: _Optional[_Union[Setup, _Mapping]] = ...) -> None: ...
|
|
91
|
+
|
|
92
|
+
class GetSetupRequest(_message.Message):
|
|
93
|
+
__slots__ = ()
|
|
94
|
+
SETUP_ID_FIELD_NUMBER: _ClassVar[int]
|
|
95
|
+
VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
96
|
+
setup_id: str
|
|
97
|
+
version: str
|
|
98
|
+
def __init__(self, setup_id: _Optional[str] = ..., version: _Optional[str] = ...) -> None: ...
|
|
99
|
+
|
|
100
|
+
class GetSetupResponse(_message.Message):
|
|
101
|
+
__slots__ = ()
|
|
102
|
+
SETUP_FIELD_NUMBER: _ClassVar[int]
|
|
103
|
+
SETUP_VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
104
|
+
setup: Setup
|
|
105
|
+
setup_version: SetupVersion
|
|
106
|
+
def __init__(self, setup: _Optional[_Union[Setup, _Mapping]] = ..., setup_version: _Optional[_Union[SetupVersion, _Mapping]] = ...) -> None: ...
|
|
107
|
+
|
|
108
|
+
class UpdateSetupRequest(_message.Message):
|
|
109
|
+
__slots__ = ()
|
|
110
|
+
SETUP_ID_FIELD_NUMBER: _ClassVar[int]
|
|
111
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
112
|
+
OWNER_ID_FIELD_NUMBER: _ClassVar[int]
|
|
113
|
+
CURRENT_SETUP_VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
114
|
+
STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
115
|
+
setup_id: str
|
|
116
|
+
name: str
|
|
117
|
+
owner_id: str
|
|
118
|
+
current_setup_version: SetupVersion
|
|
119
|
+
status: SetupStatus
|
|
120
|
+
def __init__(self, setup_id: _Optional[str] = ..., name: _Optional[str] = ..., owner_id: _Optional[str] = ..., current_setup_version: _Optional[_Union[SetupVersion, _Mapping]] = ..., status: _Optional[_Union[SetupStatus, str]] = ...) -> None: ...
|
|
121
|
+
|
|
122
|
+
class UpdateSetupResponse(_message.Message):
|
|
123
|
+
__slots__ = ()
|
|
124
|
+
SUCCESS_FIELD_NUMBER: _ClassVar[int]
|
|
125
|
+
SETUP_FIELD_NUMBER: _ClassVar[int]
|
|
126
|
+
success: bool
|
|
127
|
+
setup: Setup
|
|
128
|
+
def __init__(self, success: _Optional[bool] = ..., setup: _Optional[_Union[Setup, _Mapping]] = ...) -> None: ...
|
|
129
|
+
|
|
130
|
+
class DeleteSetupRequest(_message.Message):
|
|
131
|
+
__slots__ = ()
|
|
132
|
+
SETUP_ID_FIELD_NUMBER: _ClassVar[int]
|
|
133
|
+
setup_id: str
|
|
134
|
+
def __init__(self, setup_id: _Optional[str] = ...) -> None: ...
|
|
135
|
+
|
|
136
|
+
class DeleteSetupResponse(_message.Message):
|
|
137
|
+
__slots__ = ()
|
|
138
|
+
SUCCESS_FIELD_NUMBER: _ClassVar[int]
|
|
139
|
+
success: bool
|
|
140
|
+
def __init__(self, success: _Optional[bool] = ...) -> None: ...
|
|
141
|
+
|
|
142
|
+
class CreateSetupVersionRequest(_message.Message):
|
|
143
|
+
__slots__ = ()
|
|
144
|
+
SETUP_ID_FIELD_NUMBER: _ClassVar[int]
|
|
145
|
+
VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
146
|
+
CONTENT_FIELD_NUMBER: _ClassVar[int]
|
|
147
|
+
setup_id: str
|
|
148
|
+
version: str
|
|
149
|
+
content: _struct_pb2.Struct
|
|
150
|
+
def __init__(self, setup_id: _Optional[str] = ..., version: _Optional[str] = ..., content: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ...) -> None: ...
|
|
151
|
+
|
|
152
|
+
class CreateSetupVersionResponse(_message.Message):
|
|
153
|
+
__slots__ = ()
|
|
154
|
+
SUCCESS_FIELD_NUMBER: _ClassVar[int]
|
|
155
|
+
SETUP_VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
156
|
+
success: bool
|
|
157
|
+
setup_version: SetupVersion
|
|
158
|
+
def __init__(self, success: _Optional[bool] = ..., setup_version: _Optional[_Union[SetupVersion, _Mapping]] = ...) -> None: ...
|
|
159
|
+
|
|
160
|
+
class GetSetupVersionRequest(_message.Message):
|
|
161
|
+
__slots__ = ()
|
|
162
|
+
SETUP_VERSION_ID_FIELD_NUMBER: _ClassVar[int]
|
|
163
|
+
setup_version_id: str
|
|
164
|
+
def __init__(self, setup_version_id: _Optional[str] = ...) -> None: ...
|
|
165
|
+
|
|
166
|
+
class GetSetupVersionResponse(_message.Message):
|
|
167
|
+
__slots__ = ()
|
|
168
|
+
SETUP_VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
169
|
+
setup_version: SetupVersion
|
|
170
|
+
def __init__(self, setup_version: _Optional[_Union[SetupVersion, _Mapping]] = ...) -> None: ...
|
|
171
|
+
|
|
172
|
+
class SearchSetupVersionsRequest(_message.Message):
|
|
173
|
+
__slots__ = ()
|
|
174
|
+
SETUP_ID_FIELD_NUMBER: _ClassVar[int]
|
|
175
|
+
VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
176
|
+
setup_id: str
|
|
177
|
+
version: str
|
|
178
|
+
def __init__(self, setup_id: _Optional[str] = ..., version: _Optional[str] = ...) -> None: ...
|
|
179
|
+
|
|
180
|
+
class SearchSetupVersionsResponse(_message.Message):
|
|
181
|
+
__slots__ = ()
|
|
182
|
+
SETUP_VERSIONS_FIELD_NUMBER: _ClassVar[int]
|
|
183
|
+
setup_versions: _containers.RepeatedCompositeFieldContainer[SetupVersion]
|
|
184
|
+
def __init__(self, setup_versions: _Optional[_Iterable[_Union[SetupVersion, _Mapping]]] = ...) -> None: ...
|
|
185
|
+
|
|
186
|
+
class UpdateSetupVersionRequest(_message.Message):
|
|
187
|
+
__slots__ = ()
|
|
188
|
+
SETUP_VERSION_ID_FIELD_NUMBER: _ClassVar[int]
|
|
189
|
+
VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
190
|
+
CONTENT_FIELD_NUMBER: _ClassVar[int]
|
|
191
|
+
setup_version_id: str
|
|
192
|
+
version: str
|
|
193
|
+
content: _struct_pb2.Struct
|
|
194
|
+
def __init__(self, setup_version_id: _Optional[str] = ..., version: _Optional[str] = ..., content: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ...) -> None: ...
|
|
195
|
+
|
|
196
|
+
class UpdateSetupVersionResponse(_message.Message):
|
|
197
|
+
__slots__ = ()
|
|
198
|
+
SUCCESS_FIELD_NUMBER: _ClassVar[int]
|
|
199
|
+
SETUP_VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
200
|
+
success: bool
|
|
201
|
+
setup_version: SetupVersion
|
|
202
|
+
def __init__(self, success: _Optional[bool] = ..., setup_version: _Optional[_Union[SetupVersion, _Mapping]] = ...) -> None: ...
|
|
203
|
+
|
|
204
|
+
class DeleteSetupVersionRequest(_message.Message):
|
|
205
|
+
__slots__ = ()
|
|
206
|
+
SETUP_VERSION_ID_FIELD_NUMBER: _ClassVar[int]
|
|
207
|
+
setup_version_id: str
|
|
208
|
+
def __init__(self, setup_version_id: _Optional[str] = ...) -> None: ...
|
|
209
|
+
|
|
210
|
+
class DeleteSetupVersionResponse(_message.Message):
|
|
211
|
+
__slots__ = ()
|
|
212
|
+
SUCCESS_FIELD_NUMBER: _ClassVar[int]
|
|
213
|
+
success: bool
|
|
214
|
+
def __init__(self, success: _Optional[bool] = ...) -> None: ...
|
|
215
|
+
|
|
216
|
+
class ListSetupsRequest(_message.Message):
|
|
217
|
+
__slots__ = ()
|
|
218
|
+
ORGANISATION_ID_FIELD_NUMBER: _ClassVar[int]
|
|
219
|
+
OWNER_ID_FIELD_NUMBER: _ClassVar[int]
|
|
220
|
+
LIMIT_FIELD_NUMBER: _ClassVar[int]
|
|
221
|
+
OFFSET_FIELD_NUMBER: _ClassVar[int]
|
|
222
|
+
organisation_id: str
|
|
223
|
+
owner_id: str
|
|
224
|
+
limit: int
|
|
225
|
+
offset: int
|
|
226
|
+
def __init__(self, organisation_id: _Optional[str] = ..., owner_id: _Optional[str] = ..., limit: _Optional[int] = ..., offset: _Optional[int] = ...) -> None: ...
|
|
227
|
+
|
|
228
|
+
class ListSetupsResponse(_message.Message):
|
|
229
|
+
__slots__ = ()
|
|
230
|
+
SETUPS_FIELD_NUMBER: _ClassVar[int]
|
|
231
|
+
TOTAL_COUNT_FIELD_NUMBER: _ClassVar[int]
|
|
232
|
+
setups: _containers.RepeatedCompositeFieldContainer[Setup]
|
|
233
|
+
total_count: int
|
|
234
|
+
def __init__(self, setups: _Optional[_Iterable[_Union[Setup, _Mapping]]] = ..., total_count: _Optional[int] = ...) -> None: ...
|
|
@@ -0,0 +1,38 @@
|
|
|
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_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/setup/v1/setup_service.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
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n2agentic_mesh_protocol/setup/v1/setup_service.proto\x12\x1e\x61gentic_mesh_protocol.setup.v1\x1a*agentic_mesh_protocol/setup/v1/setup.proto2\x9a\n\n\x0cSetupService\x12v\n\x0b\x43reateSetup\x12\x32.agentic_mesh_protocol.setup.v1.CreateSetupRequest\x1a\x33.agentic_mesh_protocol.setup.v1.CreateSetupResponse\x12m\n\x08GetSetup\x12/.agentic_mesh_protocol.setup.v1.GetSetupRequest\x1a\x30.agentic_mesh_protocol.setup.v1.GetSetupResponse\x12v\n\x0bUpdateSetup\x12\x32.agentic_mesh_protocol.setup.v1.UpdateSetupRequest\x1a\x33.agentic_mesh_protocol.setup.v1.UpdateSetupResponse\x12v\n\x0b\x44\x65leteSetup\x12\x32.agentic_mesh_protocol.setup.v1.DeleteSetupRequest\x1a\x33.agentic_mesh_protocol.setup.v1.DeleteSetupResponse\x12\x8b\x01\n\x12\x43reateSetupVersion\x12\x39.agentic_mesh_protocol.setup.v1.CreateSetupVersionRequest\x1a:.agentic_mesh_protocol.setup.v1.CreateSetupVersionResponse\x12\x82\x01\n\x0fGetSetupVersion\x12\x36.agentic_mesh_protocol.setup.v1.GetSetupVersionRequest\x1a\x37.agentic_mesh_protocol.setup.v1.GetSetupVersionResponse\x12\x8e\x01\n\x13SearchSetupVersions\x12:.agentic_mesh_protocol.setup.v1.SearchSetupVersionsRequest\x1a;.agentic_mesh_protocol.setup.v1.SearchSetupVersionsResponse\x12\x8b\x01\n\x12UpdateSetupVersion\x12\x39.agentic_mesh_protocol.setup.v1.UpdateSetupVersionRequest\x1a:.agentic_mesh_protocol.setup.v1.UpdateSetupVersionResponse\x12\x8b\x01\n\x12\x44\x65leteSetupVersion\x12\x39.agentic_mesh_protocol.setup.v1.DeleteSetupVersionRequest\x1a:.agentic_mesh_protocol.setup.v1.DeleteSetupVersionResponse\x12s\n\nListSetups\x12\x31.agentic_mesh_protocol.setup.v1.ListSetupsRequest\x1a\x32.agentic_mesh_protocol.setup.v1.ListSetupsResponseB\xc9\x01\n\"com.agentic_mesh_protocol.setup.v1B\x11SetupServiceProtoP\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')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'agentic_mesh_protocol.setup.v1.setup_service_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
35
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\"com.agentic_mesh_protocol.setup.v1B\021SetupServiceProtoP\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'
|
|
36
|
+
_globals['_SETUPSERVICE']._serialized_start=131
|
|
37
|
+
_globals['_SETUPSERVICE']._serialized_end=1437
|
|
38
|
+
# @@protoc_insertion_point(module_scope)
|