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