agentic-mesh-protocol 0.2.1.dev0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (100) hide show
  1. agentic_mesh_protocol/__init__.py +5 -0
  2. agentic_mesh_protocol/__version__.py +8 -0
  3. agentic_mesh_protocol/cost/__init__.py +0 -0
  4. agentic_mesh_protocol/cost/v1/__init__.py +0 -0
  5. agentic_mesh_protocol/cost/v1/cost_pb2.py +108 -0
  6. agentic_mesh_protocol/cost/v1/cost_pb2.pyi +120 -0
  7. agentic_mesh_protocol/cost/v1/cost_pb2_grpc.py +4 -0
  8. agentic_mesh_protocol/cost/v1/cost_service_pb2.py +38 -0
  9. agentic_mesh_protocol/cost/v1/cost_service_pb2.pyi +5 -0
  10. agentic_mesh_protocol/cost/v1/cost_service_pb2_grpc.py +169 -0
  11. agentic_mesh_protocol/filesystem/__init__.py +0 -0
  12. agentic_mesh_protocol/filesystem/v1/__init__.py +0 -0
  13. agentic_mesh_protocol/filesystem/v1/filesystem_pb2.py +160 -0
  14. agentic_mesh_protocol/filesystem/v1/filesystem_pb2.pyi +248 -0
  15. agentic_mesh_protocol/filesystem/v1/filesystem_pb2_grpc.py +4 -0
  16. agentic_mesh_protocol/filesystem/v1/filesystem_service_pb2.py +38 -0
  17. agentic_mesh_protocol/filesystem/v1/filesystem_service_pb2.pyi +5 -0
  18. agentic_mesh_protocol/filesystem/v1/filesystem_service_pb2_grpc.py +274 -0
  19. agentic_mesh_protocol/module/__init__.py +0 -0
  20. agentic_mesh_protocol/module/v1/__init__.py +0 -0
  21. agentic_mesh_protocol/module/v1/information_pb2.py +77 -0
  22. agentic_mesh_protocol/module/v1/information_pb2.pyi +88 -0
  23. agentic_mesh_protocol/module/v1/information_pb2_grpc.py +4 -0
  24. agentic_mesh_protocol/module/v1/lifecycle_pb2.py +70 -0
  25. agentic_mesh_protocol/module/v1/lifecycle_pb2.pyi +61 -0
  26. agentic_mesh_protocol/module/v1/lifecycle_pb2_grpc.py +4 -0
  27. agentic_mesh_protocol/module/v1/module_service_pb2.py +40 -0
  28. agentic_mesh_protocol/module/v1/module_service_pb2.pyi +7 -0
  29. agentic_mesh_protocol/module/v1/module_service_pb2_grpc.py +500 -0
  30. agentic_mesh_protocol/module/v1/monitoring_pb2.py +58 -0
  31. agentic_mesh_protocol/module/v1/monitoring_pb2.pyi +64 -0
  32. agentic_mesh_protocol/module/v1/monitoring_pb2_grpc.py +4 -0
  33. agentic_mesh_protocol/module_registry/__init__.py +0 -0
  34. agentic_mesh_protocol/module_registry/v1/__init__.py +0 -0
  35. agentic_mesh_protocol/module_registry/v1/discover_pb2.py +63 -0
  36. agentic_mesh_protocol/module_registry/v1/discover_pb2.pyi +49 -0
  37. agentic_mesh_protocol/module_registry/v1/discover_pb2_grpc.py +4 -0
  38. agentic_mesh_protocol/module_registry/v1/metadata_pb2.py +46 -0
  39. agentic_mesh_protocol/module_registry/v1/metadata_pb2.pyi +24 -0
  40. agentic_mesh_protocol/module_registry/v1/metadata_pb2_grpc.py +4 -0
  41. agentic_mesh_protocol/module_registry/v1/module_registry_service_pb2.py +40 -0
  42. agentic_mesh_protocol/module_registry/v1/module_registry_service_pb2.pyi +7 -0
  43. agentic_mesh_protocol/module_registry/v1/module_registry_service_pb2_grpc.py +406 -0
  44. agentic_mesh_protocol/module_registry/v1/registration_pb2.py +57 -0
  45. agentic_mesh_protocol/module_registry/v1/registration_pb2.pyi +42 -0
  46. agentic_mesh_protocol/module_registry/v1/registration_pb2_grpc.py +4 -0
  47. agentic_mesh_protocol/module_registry/v1/status_pb2.py +58 -0
  48. agentic_mesh_protocol/module_registry/v1/status_pb2.pyi +70 -0
  49. agentic_mesh_protocol/module_registry/v1/status_pb2_grpc.py +4 -0
  50. agentic_mesh_protocol/py.typed +0 -0
  51. agentic_mesh_protocol/registry/__init__.py +0 -0
  52. agentic_mesh_protocol/registry/v1/__init__.py +0 -0
  53. agentic_mesh_protocol/registry/v1/registry_enums_pb2.py +43 -0
  54. agentic_mesh_protocol/registry/v1/registry_enums_pb2.pyi +59 -0
  55. agentic_mesh_protocol/registry/v1/registry_enums_pb2_grpc.py +4 -0
  56. agentic_mesh_protocol/registry/v1/registry_models_pb2.py +105 -0
  57. agentic_mesh_protocol/registry/v1/registry_models_pb2.pyi +82 -0
  58. agentic_mesh_protocol/registry/v1/registry_models_pb2_grpc.py +4 -0
  59. agentic_mesh_protocol/registry/v1/registry_requests_pb2.py +110 -0
  60. agentic_mesh_protocol/registry/v1/registry_requests_pb2.pyi +102 -0
  61. agentic_mesh_protocol/registry/v1/registry_requests_pb2_grpc.py +4 -0
  62. agentic_mesh_protocol/registry/v1/registry_service_pb2.py +39 -0
  63. agentic_mesh_protocol/registry/v1/registry_service_pb2.pyi +6 -0
  64. agentic_mesh_protocol/registry/v1/registry_service_pb2_grpc.py +322 -0
  65. agentic_mesh_protocol/setup/__init__.py +0 -0
  66. agentic_mesh_protocol/setup/v1/__init__.py +0 -0
  67. agentic_mesh_protocol/setup/v1/setup_pb2.py +142 -0
  68. agentic_mesh_protocol/setup/v1/setup_pb2.pyi +234 -0
  69. agentic_mesh_protocol/setup/v1/setup_pb2_grpc.py +4 -0
  70. agentic_mesh_protocol/setup/v1/setup_service_pb2.py +38 -0
  71. agentic_mesh_protocol/setup/v1/setup_service_pb2.pyi +5 -0
  72. agentic_mesh_protocol/setup/v1/setup_service_pb2_grpc.py +480 -0
  73. agentic_mesh_protocol/storage/__init__.py +0 -0
  74. agentic_mesh_protocol/storage/v1/__init__.py +0 -0
  75. agentic_mesh_protocol/storage/v1/data_pb2.py +136 -0
  76. agentic_mesh_protocol/storage/v1/data_pb2.pyi +148 -0
  77. agentic_mesh_protocol/storage/v1/data_pb2_grpc.py +4 -0
  78. agentic_mesh_protocol/storage/v1/storage_service_pb2.py +38 -0
  79. agentic_mesh_protocol/storage/v1/storage_service_pb2.pyi +5 -0
  80. agentic_mesh_protocol/storage/v1/storage_service_pb2_grpc.py +301 -0
  81. agentic_mesh_protocol/user_profile/__init__.py +0 -0
  82. agentic_mesh_protocol/user_profile/v1/__init__.py +0 -0
  83. agentic_mesh_protocol/user_profile/v1/user_profile_pb2.py +72 -0
  84. agentic_mesh_protocol/user_profile/v1/user_profile_pb2.pyi +82 -0
  85. agentic_mesh_protocol/user_profile/v1/user_profile_pb2_grpc.py +4 -0
  86. agentic_mesh_protocol/user_profile/v1/user_profile_service_pb2.py +38 -0
  87. agentic_mesh_protocol/user_profile/v1/user_profile_service_pb2.pyi +5 -0
  88. agentic_mesh_protocol/user_profile/v1/user_profile_service_pb2_grpc.py +81 -0
  89. agentic_mesh_protocol-0.2.1.dev0.dist-info/METADATA +177 -0
  90. agentic_mesh_protocol-0.2.1.dev0.dist-info/RECORD +100 -0
  91. agentic_mesh_protocol-0.2.1.dev0.dist-info/WHEEL +5 -0
  92. agentic_mesh_protocol-0.2.1.dev0.dist-info/licenses/LICENSE +430 -0
  93. agentic_mesh_protocol-0.2.1.dev0.dist-info/top_level.txt +3 -0
  94. buf/__init__.py +0 -0
  95. buf/validate/__init__.py +0 -0
  96. buf/validate/validate_pb2.py +465 -0
  97. buf/validate/validate_pb2.pyi +650 -0
  98. buf/validate/validate_pb2_grpc.py +4 -0
  99. digitalkin_proto/__init__.py +5 -0
  100. digitalkin_proto/__version__.py +8 -0
@@ -0,0 +1,57 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: agentic_mesh_protocol/module_registry/v1/registration.proto
5
+ # Protobuf Python Version: 6.33.0
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 6,
15
+ 33,
16
+ 0,
17
+ '',
18
+ 'agentic_mesh_protocol/module_registry/v1/registration.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from agentic_mesh_protocol.module_registry.v1 import metadata_pb2 as agentic__mesh__protocol_dot_module__registry_dot_v1_dot_metadata__pb2
26
+ from buf.validate import validate_pb2 as buf_dot_validate_dot_validate__pb2
27
+
28
+
29
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n;agentic_mesh_protocol/module_registry/v1/registration.proto\x12(agentic_mesh_protocol.module_registry.v1\x1a\x37\x61gentic_mesh_protocol/module_registry/v1/metadata.proto\x1a\x1b\x62uf/validate/validate.proto\"\xce\x02\n\x0fRegisterRequest\x12\'\n\tmodule_id\x18\x01 \x01(\tB\n\xbaH\x07r\x02\x10\x01\xc8\x01\x01R\x08moduleId\x12\x43\n\x0bmodule_type\x18\x02 \x01(\tB\"\xbaH\x1fr\x1aR\x07triggerR\x04toolR\x03kinR\x04view\xc8\x01\x01R\nmoduleType\x12$\n\x07\x61\x64\x64ress\x18\x03 \x01(\tB\n\xbaH\x07r\x02\x10\x01\xc8\x01\x01R\x07\x61\x64\x64ress\x12\x1f\n\x04port\x18\x04 \x01(\x05\x42\x0b\xbaH\x08\x1a\x06\x18\xff\xff\x03(\x01R\x04port\x12$\n\x07version\x18\x05 \x01(\tB\n\xbaH\x07r\x02\x10\x01\xc8\x01\x01R\x07version\x12S\n\x08metadata\x18\x06 \x01(\x0b\x32\x32.agentic_mesh_protocol.module_registry.v1.MetadataH\x00R\x08metadata\x88\x01\x01\x42\x0b\n\t_metadata\",\n\x10RegisterResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success\"<\n\x11\x44\x65registerRequest\x12\'\n\tmodule_id\x18\x01 \x01(\tB\n\xbaH\x07r\x02\x10\x01\xc8\x01\x01R\x08moduleId\".\n\x12\x44\x65registerResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07successB\xf7\x01\n,com.agentic_mesh_protocol.module_registry.v1B\x11RegistrationProtoP\x01\xa2\x02\x03\x41MX\xaa\x02%AgenticMeshProtocol.ModuleRegistry.V1\xca\x02%AgenticMeshProtocol\\ModuleRegistry\\V1\xe2\x02\x31\x41genticMeshProtocol\\ModuleRegistry\\V1\\GPBMetadata\xea\x02\'AgenticMeshProtocol::ModuleRegistry::V1b\x06proto3')
30
+
31
+ _globals = globals()
32
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
33
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'agentic_mesh_protocol.module_registry.v1.registration_pb2', _globals)
34
+ if not _descriptor._USE_C_DESCRIPTORS:
35
+ _globals['DESCRIPTOR']._loaded_options = None
36
+ _globals['DESCRIPTOR']._serialized_options = b'\n,com.agentic_mesh_protocol.module_registry.v1B\021RegistrationProtoP\001\242\002\003AMX\252\002%AgenticMeshProtocol.ModuleRegistry.V1\312\002%AgenticMeshProtocol\\ModuleRegistry\\V1\342\0021AgenticMeshProtocol\\ModuleRegistry\\V1\\GPBMetadata\352\002\'AgenticMeshProtocol::ModuleRegistry::V1'
37
+ _globals['_REGISTERREQUEST'].fields_by_name['module_id']._loaded_options = None
38
+ _globals['_REGISTERREQUEST'].fields_by_name['module_id']._serialized_options = b'\272H\007r\002\020\001\310\001\001'
39
+ _globals['_REGISTERREQUEST'].fields_by_name['module_type']._loaded_options = None
40
+ _globals['_REGISTERREQUEST'].fields_by_name['module_type']._serialized_options = b'\272H\037r\032R\007triggerR\004toolR\003kinR\004view\310\001\001'
41
+ _globals['_REGISTERREQUEST'].fields_by_name['address']._loaded_options = None
42
+ _globals['_REGISTERREQUEST'].fields_by_name['address']._serialized_options = b'\272H\007r\002\020\001\310\001\001'
43
+ _globals['_REGISTERREQUEST'].fields_by_name['port']._loaded_options = None
44
+ _globals['_REGISTERREQUEST'].fields_by_name['port']._serialized_options = b'\272H\010\032\006\030\377\377\003(\001'
45
+ _globals['_REGISTERREQUEST'].fields_by_name['version']._loaded_options = None
46
+ _globals['_REGISTERREQUEST'].fields_by_name['version']._serialized_options = b'\272H\007r\002\020\001\310\001\001'
47
+ _globals['_DEREGISTERREQUEST'].fields_by_name['module_id']._loaded_options = None
48
+ _globals['_DEREGISTERREQUEST'].fields_by_name['module_id']._serialized_options = b'\272H\007r\002\020\001\310\001\001'
49
+ _globals['_REGISTERREQUEST']._serialized_start=192
50
+ _globals['_REGISTERREQUEST']._serialized_end=526
51
+ _globals['_REGISTERRESPONSE']._serialized_start=528
52
+ _globals['_REGISTERRESPONSE']._serialized_end=572
53
+ _globals['_DEREGISTERREQUEST']._serialized_start=574
54
+ _globals['_DEREGISTERREQUEST']._serialized_end=634
55
+ _globals['_DEREGISTERRESPONSE']._serialized_start=636
56
+ _globals['_DEREGISTERRESPONSE']._serialized_end=682
57
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,42 @@
1
+ from agentic_mesh_protocol.module_registry.v1 import metadata_pb2 as _metadata_pb2
2
+ from buf.validate import validate_pb2 as _validate_pb2
3
+ from google.protobuf import descriptor as _descriptor
4
+ from google.protobuf import message as _message
5
+ from collections.abc import Mapping as _Mapping
6
+ from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
7
+
8
+ DESCRIPTOR: _descriptor.FileDescriptor
9
+
10
+ class RegisterRequest(_message.Message):
11
+ __slots__ = ()
12
+ MODULE_ID_FIELD_NUMBER: _ClassVar[int]
13
+ MODULE_TYPE_FIELD_NUMBER: _ClassVar[int]
14
+ ADDRESS_FIELD_NUMBER: _ClassVar[int]
15
+ PORT_FIELD_NUMBER: _ClassVar[int]
16
+ VERSION_FIELD_NUMBER: _ClassVar[int]
17
+ METADATA_FIELD_NUMBER: _ClassVar[int]
18
+ module_id: str
19
+ module_type: str
20
+ address: str
21
+ port: int
22
+ version: str
23
+ metadata: _metadata_pb2.Metadata
24
+ def __init__(self, module_id: _Optional[str] = ..., module_type: _Optional[str] = ..., address: _Optional[str] = ..., port: _Optional[int] = ..., version: _Optional[str] = ..., metadata: _Optional[_Union[_metadata_pb2.Metadata, _Mapping]] = ...) -> None: ...
25
+
26
+ class RegisterResponse(_message.Message):
27
+ __slots__ = ()
28
+ SUCCESS_FIELD_NUMBER: _ClassVar[int]
29
+ success: bool
30
+ def __init__(self, success: _Optional[bool] = ...) -> None: ...
31
+
32
+ class DeregisterRequest(_message.Message):
33
+ __slots__ = ()
34
+ MODULE_ID_FIELD_NUMBER: _ClassVar[int]
35
+ module_id: str
36
+ def __init__(self, module_id: _Optional[str] = ...) -> None: ...
37
+
38
+ class DeregisterResponse(_message.Message):
39
+ __slots__ = ()
40
+ SUCCESS_FIELD_NUMBER: _ClassVar[int]
41
+ success: bool
42
+ def __init__(self, success: _Optional[bool] = ...) -> None: ...
@@ -0,0 +1,4 @@
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
+
@@ -0,0 +1,58 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: agentic_mesh_protocol/module_registry/v1/status.proto
5
+ # Protobuf Python Version: 6.33.0
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 6,
15
+ 33,
16
+ 0,
17
+ '',
18
+ 'agentic_mesh_protocol/module_registry/v1/status.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
+
27
+
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n5agentic_mesh_protocol/module_registry/v1/status.proto\x12(agentic_mesh_protocol.module_registry.v1\x1a\x1b\x62uf/validate/validate.proto\"H\n\x13ModuleStatusRequest\x12\x31\n\tmodule_id\x18\x01 \x01(\tB\x14\xbaH\x11r\x0c\x10\x01:\x08modules:\xc8\x01\x01R\x08moduleId\"\xc4\x01\n\x14ModuleStatusResponse\x12\x31\n\tmodule_id\x18\x01 \x01(\tB\x14\xbaH\x11r\x0c\x10\x01:\x08modules:\xc8\x01\x01R\x08moduleId\x12N\n\x06status\x18\x02 \x01(\x0e\x32\x36.agentic_mesh_protocol.module_registry.v1.ModuleStatusR\x06status\x12\x1d\n\x07message\x18\x03 \x01(\tH\x00R\x07message\x88\x01\x01\x42\n\n\x08_message\"\x1c\n\x1aGetAllModulesStatusRequest\"r\n\x18ListModulesStatusRequest\x12 \n\tlist_size\x18\x01 \x01(\x05H\x00R\x08listSize\x88\x01\x01\x12\x1b\n\x06offset\x18\x02 \x01(\x05H\x01R\x06offset\x88\x01\x01\x42\x0c\n\n_list_sizeB\t\n\x07_offset\"\xa3\x01\n\x19ListModulesStatusResponse\x12\x1b\n\tlist_size\x18\x01 \x01(\x05R\x08listSize\x12i\n\x10modules_statuses\x18\x02 \x03(\x0b\x32>.agentic_mesh_protocol.module_registry.v1.ModuleStatusResponseR\x0fmodulesStatuses\"\x8e\x01\n\x13UpdateStatusRequest\x12\'\n\tmodule_id\x18\x01 \x01(\tB\n\xbaH\x07r\x02\x10\x01\xc8\x01\x01R\x08moduleId\x12N\n\x06status\x18\x02 \x01(\x0e\x32\x36.agentic_mesh_protocol.module_registry.v1.ModuleStatusR\x06status\"0\n\x14UpdateStatusResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success*y\n\x0cModuleStatus\x12\x1d\n\x19MODULE_STATUS_UNSPECIFIED\x10\x00\x12\x19\n\x15MODULE_STATUS_RUNNING\x10\x01\x12\x16\n\x12MODULE_STATUS_IDLE\x10\x02\x12\x17\n\x13MODULE_STATUS_ENDED\x10\x03\x42\xf1\x01\n,com.agentic_mesh_protocol.module_registry.v1B\x0bStatusProtoP\x01\xa2\x02\x03\x41MX\xaa\x02%AgenticMeshProtocol.ModuleRegistry.V1\xca\x02%AgenticMeshProtocol\\ModuleRegistry\\V1\xe2\x02\x31\x41genticMeshProtocol\\ModuleRegistry\\V1\\GPBMetadata\xea\x02\'AgenticMeshProtocol::ModuleRegistry::V1b\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'agentic_mesh_protocol.module_registry.v1.status_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.module_registry.v1B\013StatusProtoP\001\242\002\003AMX\252\002%AgenticMeshProtocol.ModuleRegistry.V1\312\002%AgenticMeshProtocol\\ModuleRegistry\\V1\342\0021AgenticMeshProtocol\\ModuleRegistry\\V1\\GPBMetadata\352\002\'AgenticMeshProtocol::ModuleRegistry::V1'
36
+ _globals['_MODULESTATUSREQUEST'].fields_by_name['module_id']._loaded_options = None
37
+ _globals['_MODULESTATUSREQUEST'].fields_by_name['module_id']._serialized_options = b'\272H\021r\014\020\001:\010modules:\310\001\001'
38
+ _globals['_MODULESTATUSRESPONSE'].fields_by_name['module_id']._loaded_options = None
39
+ _globals['_MODULESTATUSRESPONSE'].fields_by_name['module_id']._serialized_options = b'\272H\021r\014\020\001:\010modules:\310\001\001'
40
+ _globals['_UPDATESTATUSREQUEST'].fields_by_name['module_id']._loaded_options = None
41
+ _globals['_UPDATESTATUSREQUEST'].fields_by_name['module_id']._serialized_options = b'\272H\007r\002\020\001\310\001\001'
42
+ _globals['_MODULESTATUS']._serialized_start=908
43
+ _globals['_MODULESTATUS']._serialized_end=1029
44
+ _globals['_MODULESTATUSREQUEST']._serialized_start=128
45
+ _globals['_MODULESTATUSREQUEST']._serialized_end=200
46
+ _globals['_MODULESTATUSRESPONSE']._serialized_start=203
47
+ _globals['_MODULESTATUSRESPONSE']._serialized_end=399
48
+ _globals['_GETALLMODULESSTATUSREQUEST']._serialized_start=401
49
+ _globals['_GETALLMODULESSTATUSREQUEST']._serialized_end=429
50
+ _globals['_LISTMODULESSTATUSREQUEST']._serialized_start=431
51
+ _globals['_LISTMODULESSTATUSREQUEST']._serialized_end=545
52
+ _globals['_LISTMODULESSTATUSRESPONSE']._serialized_start=548
53
+ _globals['_LISTMODULESSTATUSRESPONSE']._serialized_end=711
54
+ _globals['_UPDATESTATUSREQUEST']._serialized_start=714
55
+ _globals['_UPDATESTATUSREQUEST']._serialized_end=856
56
+ _globals['_UPDATESTATUSRESPONSE']._serialized_start=858
57
+ _globals['_UPDATESTATUSRESPONSE']._serialized_end=906
58
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,70 @@
1
+ from buf.validate import validate_pb2 as _validate_pb2
2
+ from google.protobuf.internal import containers as _containers
3
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
4
+ from google.protobuf import descriptor as _descriptor
5
+ from google.protobuf import message as _message
6
+ from collections.abc import Iterable as _Iterable, Mapping as _Mapping
7
+ from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
8
+
9
+ DESCRIPTOR: _descriptor.FileDescriptor
10
+
11
+ class ModuleStatus(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
12
+ __slots__ = ()
13
+ MODULE_STATUS_UNSPECIFIED: _ClassVar[ModuleStatus]
14
+ MODULE_STATUS_RUNNING: _ClassVar[ModuleStatus]
15
+ MODULE_STATUS_IDLE: _ClassVar[ModuleStatus]
16
+ MODULE_STATUS_ENDED: _ClassVar[ModuleStatus]
17
+ MODULE_STATUS_UNSPECIFIED: ModuleStatus
18
+ MODULE_STATUS_RUNNING: ModuleStatus
19
+ MODULE_STATUS_IDLE: ModuleStatus
20
+ MODULE_STATUS_ENDED: ModuleStatus
21
+
22
+ class ModuleStatusRequest(_message.Message):
23
+ __slots__ = ()
24
+ MODULE_ID_FIELD_NUMBER: _ClassVar[int]
25
+ module_id: str
26
+ def __init__(self, module_id: _Optional[str] = ...) -> None: ...
27
+
28
+ class ModuleStatusResponse(_message.Message):
29
+ __slots__ = ()
30
+ MODULE_ID_FIELD_NUMBER: _ClassVar[int]
31
+ STATUS_FIELD_NUMBER: _ClassVar[int]
32
+ MESSAGE_FIELD_NUMBER: _ClassVar[int]
33
+ module_id: str
34
+ status: ModuleStatus
35
+ message: str
36
+ def __init__(self, module_id: _Optional[str] = ..., status: _Optional[_Union[ModuleStatus, str]] = ..., message: _Optional[str] = ...) -> None: ...
37
+
38
+ class GetAllModulesStatusRequest(_message.Message):
39
+ __slots__ = ()
40
+ def __init__(self) -> None: ...
41
+
42
+ class ListModulesStatusRequest(_message.Message):
43
+ __slots__ = ()
44
+ LIST_SIZE_FIELD_NUMBER: _ClassVar[int]
45
+ OFFSET_FIELD_NUMBER: _ClassVar[int]
46
+ list_size: int
47
+ offset: int
48
+ def __init__(self, list_size: _Optional[int] = ..., offset: _Optional[int] = ...) -> None: ...
49
+
50
+ class ListModulesStatusResponse(_message.Message):
51
+ __slots__ = ()
52
+ LIST_SIZE_FIELD_NUMBER: _ClassVar[int]
53
+ MODULES_STATUSES_FIELD_NUMBER: _ClassVar[int]
54
+ list_size: int
55
+ modules_statuses: _containers.RepeatedCompositeFieldContainer[ModuleStatusResponse]
56
+ def __init__(self, list_size: _Optional[int] = ..., modules_statuses: _Optional[_Iterable[_Union[ModuleStatusResponse, _Mapping]]] = ...) -> None: ...
57
+
58
+ class UpdateStatusRequest(_message.Message):
59
+ __slots__ = ()
60
+ MODULE_ID_FIELD_NUMBER: _ClassVar[int]
61
+ STATUS_FIELD_NUMBER: _ClassVar[int]
62
+ module_id: str
63
+ status: ModuleStatus
64
+ def __init__(self, module_id: _Optional[str] = ..., status: _Optional[_Union[ModuleStatus, str]] = ...) -> None: ...
65
+
66
+ class UpdateStatusResponse(_message.Message):
67
+ __slots__ = ()
68
+ SUCCESS_FIELD_NUMBER: _ClassVar[int]
69
+ success: bool
70
+ def __init__(self, success: _Optional[bool] = ...) -> None: ...
@@ -0,0 +1,4 @@
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
+
File without changes
File without changes
File without changes
@@ -0,0 +1,43 @@
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/registry/v1/registry_enums.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/registry/v1/registry_enums.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n6agentic_mesh_protocol/registry/v1/registry_enums.proto\x12!agentic_mesh_protocol.registry.v1*|\n\x0cModuleStatus\x12\x1d\n\x19MODULE_STATUS_UNSPECIFIED\x10\x00\x12\x17\n\x13MODULE_STATUS_READY\x10\x01\x12\x18\n\x14MODULE_STATUS_ACTIVE\x10\x02\x12\x1a\n\x16MODULE_STATUS_ARCHIVED\x10\x03*\xc6\x02\n\x0bSetupStatus\x12\x1c\n\x18SETUP_STATUS_UNSPECIFIED\x10\x00\x12\x16\n\x12SETUP_STATUS_DRAFT\x10\x01\x12%\n!SETUP_STATUS_WAITING_FOR_APPROVAL\x10\x02\x12\x16\n\x12SETUP_STATUS_READY\x10\x03\x12\x17\n\x13SETUP_STATUS_PAUSED\x10\x04\x12\x17\n\x13SETUP_STATUS_FAILED\x10\x05\x12\x19\n\x15SETUP_STATUS_ARCHIVED\x10\x06\x12$\n SETUP_STATUS_NEEDS_CONFIGURATION\x10\x07\x12%\n!SETUP_STATUS_CONFIGURATION_FAILED\x10\x08\x12(\n$SETUP_STATUS_CONFIGURATION_SUCCEEDED\x10\t*p\n\nVisibility\x12\x1a\n\x16VISIBILITY_UNSPECIFIED\x10\x00\x12\x15\n\x11VISIBILITY_PUBLIC\x10\x01\x12\x16\n\x12VISIBILITY_PRIVATE\x10\x02\x12\x17\n\x13VISIBILITY_INTERNAL\x10\x03*Z\n\nModuleType\x12\x1b\n\x17MODULE_TYPE_UNSPECIFIED\x10\x00\x12\x19\n\x15MODULE_TYPE_ARCHETYPE\x10\x01\x12\x14\n\x10MODULE_TYPE_TOOL\x10\x02\x42\xd9\x01\n%com.agentic_mesh_protocol.registry.v1B\x12RegistryEnumsProtoP\x01\xa2\x02\x03\x41RX\xaa\x02\x1f\x41genticMeshProtocol.Registry.V1\xca\x02\x1f\x41genticMeshProtocol\\Registry\\V1\xe2\x02+AgenticMeshProtocol\\Registry\\V1\\GPBMetadata\xea\x02!AgenticMeshProtocol::Registry::V1b\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'agentic_mesh_protocol.registry.v1.registry_enums_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ _globals['DESCRIPTOR']._loaded_options = None
34
+ _globals['DESCRIPTOR']._serialized_options = b'\n%com.agentic_mesh_protocol.registry.v1B\022RegistryEnumsProtoP\001\242\002\003ARX\252\002\037AgenticMeshProtocol.Registry.V1\312\002\037AgenticMeshProtocol\\Registry\\V1\342\002+AgenticMeshProtocol\\Registry\\V1\\GPBMetadata\352\002!AgenticMeshProtocol::Registry::V1'
35
+ _globals['_MODULESTATUS']._serialized_start=93
36
+ _globals['_MODULESTATUS']._serialized_end=217
37
+ _globals['_SETUPSTATUS']._serialized_start=220
38
+ _globals['_SETUPSTATUS']._serialized_end=546
39
+ _globals['_VISIBILITY']._serialized_start=548
40
+ _globals['_VISIBILITY']._serialized_end=660
41
+ _globals['_MODULETYPE']._serialized_start=662
42
+ _globals['_MODULETYPE']._serialized_end=752
43
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,59 @@
1
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
2
+ from google.protobuf import descriptor as _descriptor
3
+ from typing import ClassVar as _ClassVar
4
+
5
+ DESCRIPTOR: _descriptor.FileDescriptor
6
+
7
+ class ModuleStatus(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
8
+ __slots__ = ()
9
+ MODULE_STATUS_UNSPECIFIED: _ClassVar[ModuleStatus]
10
+ MODULE_STATUS_READY: _ClassVar[ModuleStatus]
11
+ MODULE_STATUS_ACTIVE: _ClassVar[ModuleStatus]
12
+ MODULE_STATUS_ARCHIVED: _ClassVar[ModuleStatus]
13
+
14
+ class SetupStatus(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
15
+ __slots__ = ()
16
+ SETUP_STATUS_UNSPECIFIED: _ClassVar[SetupStatus]
17
+ SETUP_STATUS_DRAFT: _ClassVar[SetupStatus]
18
+ SETUP_STATUS_WAITING_FOR_APPROVAL: _ClassVar[SetupStatus]
19
+ SETUP_STATUS_READY: _ClassVar[SetupStatus]
20
+ SETUP_STATUS_PAUSED: _ClassVar[SetupStatus]
21
+ SETUP_STATUS_FAILED: _ClassVar[SetupStatus]
22
+ SETUP_STATUS_ARCHIVED: _ClassVar[SetupStatus]
23
+ SETUP_STATUS_NEEDS_CONFIGURATION: _ClassVar[SetupStatus]
24
+ SETUP_STATUS_CONFIGURATION_FAILED: _ClassVar[SetupStatus]
25
+ SETUP_STATUS_CONFIGURATION_SUCCEEDED: _ClassVar[SetupStatus]
26
+
27
+ class Visibility(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
28
+ __slots__ = ()
29
+ VISIBILITY_UNSPECIFIED: _ClassVar[Visibility]
30
+ VISIBILITY_PUBLIC: _ClassVar[Visibility]
31
+ VISIBILITY_PRIVATE: _ClassVar[Visibility]
32
+ VISIBILITY_INTERNAL: _ClassVar[Visibility]
33
+
34
+ class ModuleType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
35
+ __slots__ = ()
36
+ MODULE_TYPE_UNSPECIFIED: _ClassVar[ModuleType]
37
+ MODULE_TYPE_ARCHETYPE: _ClassVar[ModuleType]
38
+ MODULE_TYPE_TOOL: _ClassVar[ModuleType]
39
+ MODULE_STATUS_UNSPECIFIED: ModuleStatus
40
+ MODULE_STATUS_READY: ModuleStatus
41
+ MODULE_STATUS_ACTIVE: ModuleStatus
42
+ MODULE_STATUS_ARCHIVED: ModuleStatus
43
+ SETUP_STATUS_UNSPECIFIED: SetupStatus
44
+ SETUP_STATUS_DRAFT: SetupStatus
45
+ SETUP_STATUS_WAITING_FOR_APPROVAL: SetupStatus
46
+ SETUP_STATUS_READY: SetupStatus
47
+ SETUP_STATUS_PAUSED: SetupStatus
48
+ SETUP_STATUS_FAILED: SetupStatus
49
+ SETUP_STATUS_ARCHIVED: SetupStatus
50
+ SETUP_STATUS_NEEDS_CONFIGURATION: SetupStatus
51
+ SETUP_STATUS_CONFIGURATION_FAILED: SetupStatus
52
+ SETUP_STATUS_CONFIGURATION_SUCCEEDED: SetupStatus
53
+ VISIBILITY_UNSPECIFIED: Visibility
54
+ VISIBILITY_PUBLIC: Visibility
55
+ VISIBILITY_PRIVATE: Visibility
56
+ VISIBILITY_INTERNAL: Visibility
57
+ MODULE_TYPE_UNSPECIFIED: ModuleType
58
+ MODULE_TYPE_ARCHETYPE: ModuleType
59
+ MODULE_TYPE_TOOL: ModuleType
@@ -0,0 +1,4 @@
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
+
@@ -0,0 +1,105 @@
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/registry/v1/registry_models.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/registry/v1/registry_models.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from agentic_mesh_protocol.registry.v1 import registry_enums_pb2 as agentic__mesh__protocol_dot_registry_dot_v1_dot_registry__enums__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
+ from buf.validate import validate_pb2 as buf_dot_validate_dot_validate__pb2
29
+
30
+
31
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n7agentic_mesh_protocol/registry/v1/registry_models.proto\x12!agentic_mesh_protocol.registry.v1\x1a\x36\x61gentic_mesh_protocol/registry/v1/registry_enums.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1b\x62uf/validate/validate.proto\"\xd9\x08\n\x10ModuleDescriptor\x12$\n\x02id\x18\x01 \x01(\tB\x14\xbaH\x11r\x0c\x10\x01:\x08modules:\xc8\x01\x01R\x02id\x12\x1e\n\x04name\x18\x02 \x01(\tB\n\xbaH\x07r\x02\x10\x01\xc8\x01\x01R\x04name\x12[\n\x0bmodule_type\x18\x03 \x01(\x0e\x32-.agentic_mesh_protocol.registry.v1.ModuleTypeB\x0b\xbaH\x08\x82\x01\x02 \x00\xc8\x01\x01R\nmoduleType\x12$\n\x07version\x18\x04 \x01(\tB\n\xbaH\x07r\x02\x10\x01\xc8\x01\x01R\x07version\x12$\n\x07\x61\x64\x64ress\x18\x05 \x01(\tB\n\xbaH\x07r\x02\x10\x01\xc8\x01\x01R\x07\x61\x64\x64ress\x12\"\n\x04port\x18\x06 \x01(\x05\x42\x0e\xbaH\x0b\x1a\x06\x18\xff\xff\x03(\x01\xc8\x01\x01R\x04port\x12T\n\x06status\x18\x07 \x01(\x0e\x32/.agentic_mesh_protocol.registry.v1.ModuleStatusB\x0b\xbaH\x08\x82\x01\x02 \x00\xc8\x01\x01R\x06status\x12Z\n\nvisibility\x18\x08 \x01(\x0e\x32-.agentic_mesh_protocol.registry.v1.VisibilityB\x0b\xbaH\x08\x82\x01\x02 \x00\xc8\x01\x01R\nvisibility\x12\x43\n\x0forganization_id\x18\t \x01(\tB\x1a\xbaH\x17r\x12\x10\x01:\x0eorganizations:\xc8\x01\x01R\x0eorganizationId\x12-\n\x08owner_id\x18\n \x01(\tB\x12\xbaH\x0fr\n\x10\x01:\x06users:\xc8\x01\x01R\x07ownerId\x12\x42\n\x0cinput_schema\x18\x0b \x01(\x0b\x32\x17.google.protobuf.StructB\x06\xbaH\x03\xc8\x01\x01R\x0binputSchema\x12\x44\n\routput_schema\x18\x0c \x01(\x0b\x32\x17.google.protobuf.StructB\x06\xbaH\x03\xc8\x01\x01R\x0coutputSchema\x12\x42\n\x0csetup_schema\x18\r \x01(\x0b\x32\x17.google.protobuf.StructB\x06\xbaH\x03\xc8\x01\x01R\x0bsetupSchema\x12\x44\n\rsecret_schema\x18\x0e \x01(\x0b\x32\x17.google.protobuf.StructB\x06\xbaH\x03\xc8\x01\x01R\x0csecretSchema\x12@\n\x0b\x63ost_schema\x18\x0f \x01(\x0b\x32\x17.google.protobuf.StructB\x06\xbaH\x03\xc8\x01\x01R\ncostSchema\x12\x30\n\rdocumentation\x18\x10 \x01(\tB\n\xbaH\x07r\x02\x10\x01\xc8\x01\x01R\rdocumentation\x12\x41\n\ncreated_at\x18\x11 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x06\xbaH\x03\xc8\x01\x01R\tcreatedAt\x12\x41\n\nupdated_at\x18\x12 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x06\xbaH\x03\xc8\x01\x01R\tupdatedAt\"\x90\x06\n\x0fSetupDescriptor\x12#\n\x02id\x18\x01 \x01(\tB\x13\xbaH\x10r\x0b\x10\x01:\x07setups:\xc8\x01\x01R\x02id\x12\x1e\n\x04name\x18\x02 \x01(\tB\n\xbaH\x07r\x02\x10\x01\xc8\x01\x01R\x04name\x12\x30\n\rdocumentation\x18\x03 \x01(\tB\n\xbaH\x07r\x02\x10\x01\xc8\x01\x01R\rdocumentation\x12S\n\x06status\x18\x04 \x01(\x0e\x32..agentic_mesh_protocol.registry.v1.SetupStatusB\x0b\xbaH\x08\x82\x01\x02 \x00\xc8\x01\x01R\x06status\x12Z\n\nvisibility\x18\x05 \x01(\x0e\x32-.agentic_mesh_protocol.registry.v1.VisibilityB\x0b\xbaH\x08\x82\x01\x02 \x00\xc8\x01\x01R\nvisibility\x12\x43\n\x0forganization_id\x18\x06 \x01(\tB\x1a\xbaH\x17r\x12\x10\x01:\x0eorganizations:\xc8\x01\x01R\x0eorganizationId\x12-\n\x08owner_id\x18\x07 \x01(\tB\x12\xbaH\x0fr\n\x10\x01:\x06users:\xc8\x01\x01R\x07ownerId\x12(\n\x07\x63\x61rd_id\x18\x08 \x01(\tB\x0f\xbaH\x0cr\n\x10\x01:\x06\x63\x61rds:R\x06\x63\x61rdId\x12\x31\n\tmodule_id\x18\t \x01(\tB\x14\xbaH\x11r\x0c\x10\x01:\x08modules:\xc8\x01\x01R\x08moduleId\x12\x45\n\x10setup_version_id\x18\n \x01(\tB\x1b\xbaH\x18r\x13\x10\x01:\x0fsetup_versions:\xc8\x01\x01R\x0esetupVersionId\x12/\n\rsetup_version\x18\x0b \x01(\tB\n\xbaH\x07r\x02\x10\x01\xc8\x01\x01R\x0csetupVersion\x12\x37\n\x06\x63onfig\x18\x0c \x01(\x0b\x32\x17.google.protobuf.StructB\x06\xbaH\x03\xc8\x01\x01R\x06\x63onfig\x12S\n\x06module\x18\r \x01(\x0b\x32\x33.agentic_mesh_protocol.registry.v1.ModuleDescriptorB\x06\xbaH\x03\xc8\x01\x01R\x06moduleB\xda\x01\n%com.agentic_mesh_protocol.registry.v1B\x13RegistryModelsProtoP\x01\xa2\x02\x03\x41RX\xaa\x02\x1f\x41genticMeshProtocol.Registry.V1\xca\x02\x1f\x41genticMeshProtocol\\Registry\\V1\xe2\x02+AgenticMeshProtocol\\Registry\\V1\\GPBMetadata\xea\x02!AgenticMeshProtocol::Registry::V1b\x06proto3')
32
+
33
+ _globals = globals()
34
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
35
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'agentic_mesh_protocol.registry.v1.registry_models_pb2', _globals)
36
+ if not _descriptor._USE_C_DESCRIPTORS:
37
+ _globals['DESCRIPTOR']._loaded_options = None
38
+ _globals['DESCRIPTOR']._serialized_options = b'\n%com.agentic_mesh_protocol.registry.v1B\023RegistryModelsProtoP\001\242\002\003ARX\252\002\037AgenticMeshProtocol.Registry.V1\312\002\037AgenticMeshProtocol\\Registry\\V1\342\002+AgenticMeshProtocol\\Registry\\V1\\GPBMetadata\352\002!AgenticMeshProtocol::Registry::V1'
39
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['id']._loaded_options = None
40
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['id']._serialized_options = b'\272H\021r\014\020\001:\010modules:\310\001\001'
41
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['name']._loaded_options = None
42
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['name']._serialized_options = b'\272H\007r\002\020\001\310\001\001'
43
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['module_type']._loaded_options = None
44
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['module_type']._serialized_options = b'\272H\010\202\001\002 \000\310\001\001'
45
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['version']._loaded_options = None
46
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['version']._serialized_options = b'\272H\007r\002\020\001\310\001\001'
47
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['address']._loaded_options = None
48
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['address']._serialized_options = b'\272H\007r\002\020\001\310\001\001'
49
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['port']._loaded_options = None
50
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['port']._serialized_options = b'\272H\013\032\006\030\377\377\003(\001\310\001\001'
51
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['status']._loaded_options = None
52
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['status']._serialized_options = b'\272H\010\202\001\002 \000\310\001\001'
53
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['visibility']._loaded_options = None
54
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['visibility']._serialized_options = b'\272H\010\202\001\002 \000\310\001\001'
55
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['organization_id']._loaded_options = None
56
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['organization_id']._serialized_options = b'\272H\027r\022\020\001:\016organizations:\310\001\001'
57
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['owner_id']._loaded_options = None
58
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['owner_id']._serialized_options = b'\272H\017r\n\020\001:\006users:\310\001\001'
59
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['input_schema']._loaded_options = None
60
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['input_schema']._serialized_options = b'\272H\003\310\001\001'
61
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['output_schema']._loaded_options = None
62
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['output_schema']._serialized_options = b'\272H\003\310\001\001'
63
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['setup_schema']._loaded_options = None
64
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['setup_schema']._serialized_options = b'\272H\003\310\001\001'
65
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['secret_schema']._loaded_options = None
66
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['secret_schema']._serialized_options = b'\272H\003\310\001\001'
67
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['cost_schema']._loaded_options = None
68
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['cost_schema']._serialized_options = b'\272H\003\310\001\001'
69
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['documentation']._loaded_options = None
70
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['documentation']._serialized_options = b'\272H\007r\002\020\001\310\001\001'
71
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['created_at']._loaded_options = None
72
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['created_at']._serialized_options = b'\272H\003\310\001\001'
73
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['updated_at']._loaded_options = None
74
+ _globals['_MODULEDESCRIPTOR'].fields_by_name['updated_at']._serialized_options = b'\272H\003\310\001\001'
75
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['id']._loaded_options = None
76
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['id']._serialized_options = b'\272H\020r\013\020\001:\007setups:\310\001\001'
77
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['name']._loaded_options = None
78
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['name']._serialized_options = b'\272H\007r\002\020\001\310\001\001'
79
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['documentation']._loaded_options = None
80
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['documentation']._serialized_options = b'\272H\007r\002\020\001\310\001\001'
81
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['status']._loaded_options = None
82
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['status']._serialized_options = b'\272H\010\202\001\002 \000\310\001\001'
83
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['visibility']._loaded_options = None
84
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['visibility']._serialized_options = b'\272H\010\202\001\002 \000\310\001\001'
85
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['organization_id']._loaded_options = None
86
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['organization_id']._serialized_options = b'\272H\027r\022\020\001:\016organizations:\310\001\001'
87
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['owner_id']._loaded_options = None
88
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['owner_id']._serialized_options = b'\272H\017r\n\020\001:\006users:\310\001\001'
89
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['card_id']._loaded_options = None
90
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['card_id']._serialized_options = b'\272H\014r\n\020\001:\006cards:'
91
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['module_id']._loaded_options = None
92
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['module_id']._serialized_options = b'\272H\021r\014\020\001:\010modules:\310\001\001'
93
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['setup_version_id']._loaded_options = None
94
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['setup_version_id']._serialized_options = b'\272H\030r\023\020\001:\017setup_versions:\310\001\001'
95
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['setup_version']._loaded_options = None
96
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['setup_version']._serialized_options = b'\272H\007r\002\020\001\310\001\001'
97
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['config']._loaded_options = None
98
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['config']._serialized_options = b'\272H\003\310\001\001'
99
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['module']._loaded_options = None
100
+ _globals['_SETUPDESCRIPTOR'].fields_by_name['module']._serialized_options = b'\272H\003\310\001\001'
101
+ _globals['_MODULEDESCRIPTOR']._serialized_start=243
102
+ _globals['_MODULEDESCRIPTOR']._serialized_end=1356
103
+ _globals['_SETUPDESCRIPTOR']._serialized_start=1359
104
+ _globals['_SETUPDESCRIPTOR']._serialized_end=2143
105
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,82 @@
1
+ import datetime
2
+
3
+ from agentic_mesh_protocol.registry.v1 import registry_enums_pb2 as _registry_enums_pb2
4
+ from google.protobuf import struct_pb2 as _struct_pb2
5
+ from google.protobuf import timestamp_pb2 as _timestamp_pb2
6
+ from buf.validate import validate_pb2 as _validate_pb2
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import message as _message
9
+ from collections.abc import Mapping as _Mapping
10
+ from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
11
+
12
+ DESCRIPTOR: _descriptor.FileDescriptor
13
+
14
+ class ModuleDescriptor(_message.Message):
15
+ __slots__ = ()
16
+ ID_FIELD_NUMBER: _ClassVar[int]
17
+ NAME_FIELD_NUMBER: _ClassVar[int]
18
+ MODULE_TYPE_FIELD_NUMBER: _ClassVar[int]
19
+ VERSION_FIELD_NUMBER: _ClassVar[int]
20
+ ADDRESS_FIELD_NUMBER: _ClassVar[int]
21
+ PORT_FIELD_NUMBER: _ClassVar[int]
22
+ STATUS_FIELD_NUMBER: _ClassVar[int]
23
+ VISIBILITY_FIELD_NUMBER: _ClassVar[int]
24
+ ORGANIZATION_ID_FIELD_NUMBER: _ClassVar[int]
25
+ OWNER_ID_FIELD_NUMBER: _ClassVar[int]
26
+ INPUT_SCHEMA_FIELD_NUMBER: _ClassVar[int]
27
+ OUTPUT_SCHEMA_FIELD_NUMBER: _ClassVar[int]
28
+ SETUP_SCHEMA_FIELD_NUMBER: _ClassVar[int]
29
+ SECRET_SCHEMA_FIELD_NUMBER: _ClassVar[int]
30
+ COST_SCHEMA_FIELD_NUMBER: _ClassVar[int]
31
+ DOCUMENTATION_FIELD_NUMBER: _ClassVar[int]
32
+ CREATED_AT_FIELD_NUMBER: _ClassVar[int]
33
+ UPDATED_AT_FIELD_NUMBER: _ClassVar[int]
34
+ id: str
35
+ name: str
36
+ module_type: _registry_enums_pb2.ModuleType
37
+ version: str
38
+ address: str
39
+ port: int
40
+ status: _registry_enums_pb2.ModuleStatus
41
+ visibility: _registry_enums_pb2.Visibility
42
+ organization_id: str
43
+ owner_id: str
44
+ input_schema: _struct_pb2.Struct
45
+ output_schema: _struct_pb2.Struct
46
+ setup_schema: _struct_pb2.Struct
47
+ secret_schema: _struct_pb2.Struct
48
+ cost_schema: _struct_pb2.Struct
49
+ documentation: str
50
+ created_at: _timestamp_pb2.Timestamp
51
+ updated_at: _timestamp_pb2.Timestamp
52
+ def __init__(self, id: _Optional[str] = ..., name: _Optional[str] = ..., module_type: _Optional[_Union[_registry_enums_pb2.ModuleType, str]] = ..., version: _Optional[str] = ..., address: _Optional[str] = ..., port: _Optional[int] = ..., status: _Optional[_Union[_registry_enums_pb2.ModuleStatus, str]] = ..., visibility: _Optional[_Union[_registry_enums_pb2.Visibility, str]] = ..., organization_id: _Optional[str] = ..., owner_id: _Optional[str] = ..., input_schema: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., output_schema: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., setup_schema: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., secret_schema: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., cost_schema: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., documentation: _Optional[str] = ..., created_at: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]] = ..., updated_at: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]] = ...) -> None: ...
53
+
54
+ class SetupDescriptor(_message.Message):
55
+ __slots__ = ()
56
+ ID_FIELD_NUMBER: _ClassVar[int]
57
+ NAME_FIELD_NUMBER: _ClassVar[int]
58
+ DOCUMENTATION_FIELD_NUMBER: _ClassVar[int]
59
+ STATUS_FIELD_NUMBER: _ClassVar[int]
60
+ VISIBILITY_FIELD_NUMBER: _ClassVar[int]
61
+ ORGANIZATION_ID_FIELD_NUMBER: _ClassVar[int]
62
+ OWNER_ID_FIELD_NUMBER: _ClassVar[int]
63
+ CARD_ID_FIELD_NUMBER: _ClassVar[int]
64
+ MODULE_ID_FIELD_NUMBER: _ClassVar[int]
65
+ SETUP_VERSION_ID_FIELD_NUMBER: _ClassVar[int]
66
+ SETUP_VERSION_FIELD_NUMBER: _ClassVar[int]
67
+ CONFIG_FIELD_NUMBER: _ClassVar[int]
68
+ MODULE_FIELD_NUMBER: _ClassVar[int]
69
+ id: str
70
+ name: str
71
+ documentation: str
72
+ status: _registry_enums_pb2.SetupStatus
73
+ visibility: _registry_enums_pb2.Visibility
74
+ organization_id: str
75
+ owner_id: str
76
+ card_id: str
77
+ module_id: str
78
+ setup_version_id: str
79
+ setup_version: str
80
+ config: _struct_pb2.Struct
81
+ module: ModuleDescriptor
82
+ def __init__(self, id: _Optional[str] = ..., name: _Optional[str] = ..., documentation: _Optional[str] = ..., status: _Optional[_Union[_registry_enums_pb2.SetupStatus, str]] = ..., visibility: _Optional[_Union[_registry_enums_pb2.Visibility, str]] = ..., organization_id: _Optional[str] = ..., owner_id: _Optional[str] = ..., card_id: _Optional[str] = ..., module_id: _Optional[str] = ..., setup_version_id: _Optional[str] = ..., setup_version: _Optional[str] = ..., config: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., module: _Optional[_Union[ModuleDescriptor, _Mapping]] = ...) -> None: ...
@@ -0,0 +1,4 @@
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
+