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.
Files changed (98) 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 +132 -0
  6. agentic_mesh_protocol/cost/v1/cost_pb2.pyi +162 -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 +257 -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 +85 -0
  22. agentic_mesh_protocol/module/v1/information_pb2.pyi +104 -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 +544 -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.dev1.dist-info/METADATA +177 -0
  90. agentic_mesh_protocol-0.2.1.dev1.dist-info/RECORD +98 -0
  91. agentic_mesh_protocol-0.2.1.dev1.dist-info/WHEEL +5 -0
  92. agentic_mesh_protocol-0.2.1.dev1.dist-info/licenses/LICENSE +430 -0
  93. agentic_mesh_protocol-0.2.1.dev1.dist-info/top_level.txt +2 -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
@@ -0,0 +1,40 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: agentic_mesh_protocol/module/v1/module_service.proto
5
+ # Protobuf Python Version: 6.33.0
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 6,
15
+ 33,
16
+ 0,
17
+ '',
18
+ 'agentic_mesh_protocol/module/v1/module_service.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from agentic_mesh_protocol.module.v1 import information_pb2 as agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2
26
+ from agentic_mesh_protocol.module.v1 import lifecycle_pb2 as agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2
27
+ from agentic_mesh_protocol.module.v1 import monitoring_pb2 as agentic__mesh__protocol_dot_module_dot_v1_dot_monitoring__pb2
28
+
29
+
30
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n4agentic_mesh_protocol/module/v1/module_service.proto\x12\x1f\x61gentic_mesh_protocol.module.v1\x1a\x31\x61gentic_mesh_protocol/module/v1/information.proto\x1a/agentic_mesh_protocol/module/v1/lifecycle.proto\x1a\x30\x61gentic_mesh_protocol/module/v1/monitoring.proto2\xc2\x0b\n\rModuleService\x12z\n\x0bStartModule\x12\x33.agentic_mesh_protocol.module.v1.StartModuleRequest\x1a\x34.agentic_mesh_protocol.module.v1.StartModuleResponse0\x01\x12u\n\nStopModule\x12\x32.agentic_mesh_protocol.module.v1.StopModuleRequest\x1a\x33.agentic_mesh_protocol.module.v1.StopModuleResponse\x12\x84\x01\n\x0fGetModuleStatus\x12\x37.agentic_mesh_protocol.module.v1.GetModuleStatusRequest\x1a\x38.agentic_mesh_protocol.module.v1.GetModuleStatusResponse\x12~\n\rGetModuleJobs\x12\x35.agentic_mesh_protocol.module.v1.GetModuleJobsRequest\x1a\x36.agentic_mesh_protocol.module.v1.GetModuleJobsResponse\x12\x81\x01\n\x0eGetModuleInput\x12\x36.agentic_mesh_protocol.module.v1.GetModuleInputRequest\x1a\x37.agentic_mesh_protocol.module.v1.GetModuleInputResponse\x12\x84\x01\n\x0fGetModuleOutput\x12\x37.agentic_mesh_protocol.module.v1.GetModuleOutputRequest\x1a\x38.agentic_mesh_protocol.module.v1.GetModuleOutputResponse\x12\x81\x01\n\x0eGetModuleSetup\x12\x36.agentic_mesh_protocol.module.v1.GetModuleSetupRequest\x1a\x37.agentic_mesh_protocol.module.v1.GetModuleSetupResponse\x12\x84\x01\n\x0fGetModuleSecret\x12\x37.agentic_mesh_protocol.module.v1.GetModuleSecretRequest\x1a\x38.agentic_mesh_protocol.module.v1.GetModuleSecretResponse\x12\x93\x01\n\x14GetConfigSetupModule\x12<.agentic_mesh_protocol.module.v1.GetConfigSetupModuleRequest\x1a=.agentic_mesh_protocol.module.v1.GetConfigSetupModuleResponse\x12\x8a\x01\n\x11\x43onfigSetupModule\x12\x39.agentic_mesh_protocol.module.v1.ConfigSetupModuleRequest\x1a:.agentic_mesh_protocol.module.v1.ConfigSetupModuleResponse\x12~\n\rGetModuleCost\x12\x35.agentic_mesh_protocol.module.v1.GetModuleCostRequest\x1a\x36.agentic_mesh_protocol.module.v1.GetModuleCostResponseB\xcf\x01\n#com.agentic_mesh_protocol.module.v1B\x12ModuleServiceProtoP\x01\xa2\x02\x03\x41MX\xaa\x02\x1d\x41genticMeshProtocol.Module.V1\xca\x02\x1d\x41genticMeshProtocol\\Module\\V1\xe2\x02)AgenticMeshProtocol\\Module\\V1\\GPBMetadata\xea\x02\x1f\x41genticMeshProtocol::Module::V1b\x06proto3')
31
+
32
+ _globals = globals()
33
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
34
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'agentic_mesh_protocol.module.v1.module_service_pb2', _globals)
35
+ if not _descriptor._USE_C_DESCRIPTORS:
36
+ _globals['DESCRIPTOR']._loaded_options = None
37
+ _globals['DESCRIPTOR']._serialized_options = b'\n#com.agentic_mesh_protocol.module.v1B\022ModuleServiceProtoP\001\242\002\003AMX\252\002\035AgenticMeshProtocol.Module.V1\312\002\035AgenticMeshProtocol\\Module\\V1\342\002)AgenticMeshProtocol\\Module\\V1\\GPBMetadata\352\002\037AgenticMeshProtocol::Module::V1'
38
+ _globals['_MODULESERVICE']._serialized_start=240
39
+ _globals['_MODULESERVICE']._serialized_end=1714
40
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,7 @@
1
+ from agentic_mesh_protocol.module.v1 import information_pb2 as _information_pb2
2
+ from agentic_mesh_protocol.module.v1 import lifecycle_pb2 as _lifecycle_pb2
3
+ from agentic_mesh_protocol.module.v1 import monitoring_pb2 as _monitoring_pb2
4
+ from google.protobuf import descriptor as _descriptor
5
+ from typing import ClassVar as _ClassVar
6
+
7
+ DESCRIPTOR: _descriptor.FileDescriptor
@@ -0,0 +1,544 @@
1
+ # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2
+ """Client and server classes corresponding to protobuf-defined services."""
3
+ import grpc
4
+
5
+ from agentic_mesh_protocol.module.v1 import information_pb2 as agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2
6
+ from agentic_mesh_protocol.module.v1 import lifecycle_pb2 as agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2
7
+ from agentic_mesh_protocol.module.v1 import monitoring_pb2 as agentic__mesh__protocol_dot_module_dot_v1_dot_monitoring__pb2
8
+
9
+
10
+ class ModuleServiceStub(object):
11
+ """ModuleService
12
+ It represents a functional unit within an agent in the multi-agent system (SMA).
13
+ Modules can be of three types: Kin, Tool, and Trigger.
14
+ - Kin: Represents the agent's core data architecture or "brain", such as a workflow-based model or an LLM (Large Language Model).
15
+ - Tool: Refers to external utilities or tools that the agent uses to perform tasks or enhance its capabilities.
16
+ - Trigger: Serves as the entry point for the agent, initiating processes or actions based on external inputs.
17
+ This service manages the lifecycle and interactions of these modules, including starting, stopping,
18
+ and monitoring the module's status, as well as handling input and output operations.
19
+ """
20
+
21
+ def __init__(self, channel):
22
+ """Constructor.
23
+
24
+ Args:
25
+ channel: A grpc.Channel.
26
+ """
27
+ self.StartModule = channel.unary_stream(
28
+ '/agentic_mesh_protocol.module.v1.ModuleService/StartModule',
29
+ request_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2.StartModuleRequest.SerializeToString,
30
+ response_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2.StartModuleResponse.FromString,
31
+ _registered_method=True)
32
+ self.StopModule = channel.unary_unary(
33
+ '/agentic_mesh_protocol.module.v1.ModuleService/StopModule',
34
+ request_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2.StopModuleRequest.SerializeToString,
35
+ response_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2.StopModuleResponse.FromString,
36
+ _registered_method=True)
37
+ self.GetModuleStatus = channel.unary_unary(
38
+ '/agentic_mesh_protocol.module.v1.ModuleService/GetModuleStatus',
39
+ request_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_monitoring__pb2.GetModuleStatusRequest.SerializeToString,
40
+ response_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_monitoring__pb2.GetModuleStatusResponse.FromString,
41
+ _registered_method=True)
42
+ self.GetModuleJobs = channel.unary_unary(
43
+ '/agentic_mesh_protocol.module.v1.ModuleService/GetModuleJobs',
44
+ request_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_monitoring__pb2.GetModuleJobsRequest.SerializeToString,
45
+ response_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_monitoring__pb2.GetModuleJobsResponse.FromString,
46
+ _registered_method=True)
47
+ self.GetModuleInput = channel.unary_unary(
48
+ '/agentic_mesh_protocol.module.v1.ModuleService/GetModuleInput',
49
+ request_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleInputRequest.SerializeToString,
50
+ response_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleInputResponse.FromString,
51
+ _registered_method=True)
52
+ self.GetModuleOutput = channel.unary_unary(
53
+ '/agentic_mesh_protocol.module.v1.ModuleService/GetModuleOutput',
54
+ request_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleOutputRequest.SerializeToString,
55
+ response_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleOutputResponse.FromString,
56
+ _registered_method=True)
57
+ self.GetModuleSetup = channel.unary_unary(
58
+ '/agentic_mesh_protocol.module.v1.ModuleService/GetModuleSetup',
59
+ request_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleSetupRequest.SerializeToString,
60
+ response_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleSetupResponse.FromString,
61
+ _registered_method=True)
62
+ self.GetModuleSecret = channel.unary_unary(
63
+ '/agentic_mesh_protocol.module.v1.ModuleService/GetModuleSecret',
64
+ request_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleSecretRequest.SerializeToString,
65
+ response_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleSecretResponse.FromString,
66
+ _registered_method=True)
67
+ self.GetConfigSetupModule = channel.unary_unary(
68
+ '/agentic_mesh_protocol.module.v1.ModuleService/GetConfigSetupModule',
69
+ request_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetConfigSetupModuleRequest.SerializeToString,
70
+ response_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetConfigSetupModuleResponse.FromString,
71
+ _registered_method=True)
72
+ self.ConfigSetupModule = channel.unary_unary(
73
+ '/agentic_mesh_protocol.module.v1.ModuleService/ConfigSetupModule',
74
+ request_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2.ConfigSetupModuleRequest.SerializeToString,
75
+ response_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2.ConfigSetupModuleResponse.FromString,
76
+ _registered_method=True)
77
+ self.GetModuleCost = channel.unary_unary(
78
+ '/agentic_mesh_protocol.module.v1.ModuleService/GetModuleCost',
79
+ request_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleCostRequest.SerializeToString,
80
+ response_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleCostResponse.FromString,
81
+ _registered_method=True)
82
+
83
+
84
+ class ModuleServiceServicer(object):
85
+ """ModuleService
86
+ It represents a functional unit within an agent in the multi-agent system (SMA).
87
+ Modules can be of three types: Kin, Tool, and Trigger.
88
+ - Kin: Represents the agent's core data architecture or "brain", such as a workflow-based model or an LLM (Large Language Model).
89
+ - Tool: Refers to external utilities or tools that the agent uses to perform tasks or enhance its capabilities.
90
+ - Trigger: Serves as the entry point for the agent, initiating processes or actions based on external inputs.
91
+ This service manages the lifecycle and interactions of these modules, including starting, stopping,
92
+ and monitoring the module's status, as well as handling input and output operations.
93
+ """
94
+
95
+ def StartModule(self, request, context):
96
+ """StartModule
97
+ """
98
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
99
+ context.set_details('Method not implemented!')
100
+ raise NotImplementedError('Method not implemented!')
101
+
102
+ def StopModule(self, request, context):
103
+ """StopModule
104
+ """
105
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
106
+ context.set_details('Method not implemented!')
107
+ raise NotImplementedError('Method not implemented!')
108
+
109
+ def GetModuleStatus(self, request, context):
110
+ """GetModuleStatus
111
+ """
112
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
113
+ context.set_details('Method not implemented!')
114
+ raise NotImplementedError('Method not implemented!')
115
+
116
+ def GetModuleJobs(self, request, context):
117
+ """GetModuleJobs
118
+ """
119
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
120
+ context.set_details('Method not implemented!')
121
+ raise NotImplementedError('Method not implemented!')
122
+
123
+ def GetModuleInput(self, request, context):
124
+ """GetModuleInput
125
+ """
126
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
127
+ context.set_details('Method not implemented!')
128
+ raise NotImplementedError('Method not implemented!')
129
+
130
+ def GetModuleOutput(self, request, context):
131
+ """GetModuleOutput
132
+ """
133
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
134
+ context.set_details('Method not implemented!')
135
+ raise NotImplementedError('Method not implemented!')
136
+
137
+ def GetModuleSetup(self, request, context):
138
+ """GetModuleSetup
139
+ """
140
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
141
+ context.set_details('Method not implemented!')
142
+ raise NotImplementedError('Method not implemented!')
143
+
144
+ def GetModuleSecret(self, request, context):
145
+ """GetModuleSecret
146
+ """
147
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
148
+ context.set_details('Method not implemented!')
149
+ raise NotImplementedError('Method not implemented!')
150
+
151
+ def GetConfigSetupModule(self, request, context):
152
+ """GetConfigSetupModule
153
+ """
154
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
155
+ context.set_details('Method not implemented!')
156
+ raise NotImplementedError('Method not implemented!')
157
+
158
+ def ConfigSetupModule(self, request, context):
159
+ """ConfigSetupModule
160
+ """
161
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
162
+ context.set_details('Method not implemented!')
163
+ raise NotImplementedError('Method not implemented!')
164
+
165
+ def GetModuleCost(self, request, context):
166
+ """GetModuleCost
167
+ """
168
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
169
+ context.set_details('Method not implemented!')
170
+ raise NotImplementedError('Method not implemented!')
171
+
172
+
173
+ def add_ModuleServiceServicer_to_server(servicer, server):
174
+ rpc_method_handlers = {
175
+ 'StartModule': grpc.unary_stream_rpc_method_handler(
176
+ servicer.StartModule,
177
+ request_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2.StartModuleRequest.FromString,
178
+ response_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2.StartModuleResponse.SerializeToString,
179
+ ),
180
+ 'StopModule': grpc.unary_unary_rpc_method_handler(
181
+ servicer.StopModule,
182
+ request_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2.StopModuleRequest.FromString,
183
+ response_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2.StopModuleResponse.SerializeToString,
184
+ ),
185
+ 'GetModuleStatus': grpc.unary_unary_rpc_method_handler(
186
+ servicer.GetModuleStatus,
187
+ request_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_monitoring__pb2.GetModuleStatusRequest.FromString,
188
+ response_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_monitoring__pb2.GetModuleStatusResponse.SerializeToString,
189
+ ),
190
+ 'GetModuleJobs': grpc.unary_unary_rpc_method_handler(
191
+ servicer.GetModuleJobs,
192
+ request_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_monitoring__pb2.GetModuleJobsRequest.FromString,
193
+ response_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_monitoring__pb2.GetModuleJobsResponse.SerializeToString,
194
+ ),
195
+ 'GetModuleInput': grpc.unary_unary_rpc_method_handler(
196
+ servicer.GetModuleInput,
197
+ request_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleInputRequest.FromString,
198
+ response_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleInputResponse.SerializeToString,
199
+ ),
200
+ 'GetModuleOutput': grpc.unary_unary_rpc_method_handler(
201
+ servicer.GetModuleOutput,
202
+ request_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleOutputRequest.FromString,
203
+ response_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleOutputResponse.SerializeToString,
204
+ ),
205
+ 'GetModuleSetup': grpc.unary_unary_rpc_method_handler(
206
+ servicer.GetModuleSetup,
207
+ request_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleSetupRequest.FromString,
208
+ response_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleSetupResponse.SerializeToString,
209
+ ),
210
+ 'GetModuleSecret': grpc.unary_unary_rpc_method_handler(
211
+ servicer.GetModuleSecret,
212
+ request_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleSecretRequest.FromString,
213
+ response_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleSecretResponse.SerializeToString,
214
+ ),
215
+ 'GetConfigSetupModule': grpc.unary_unary_rpc_method_handler(
216
+ servicer.GetConfigSetupModule,
217
+ request_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetConfigSetupModuleRequest.FromString,
218
+ response_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetConfigSetupModuleResponse.SerializeToString,
219
+ ),
220
+ 'ConfigSetupModule': grpc.unary_unary_rpc_method_handler(
221
+ servicer.ConfigSetupModule,
222
+ request_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2.ConfigSetupModuleRequest.FromString,
223
+ response_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2.ConfigSetupModuleResponse.SerializeToString,
224
+ ),
225
+ 'GetModuleCost': grpc.unary_unary_rpc_method_handler(
226
+ servicer.GetModuleCost,
227
+ request_deserializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleCostRequest.FromString,
228
+ response_serializer=agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleCostResponse.SerializeToString,
229
+ ),
230
+ }
231
+ generic_handler = grpc.method_handlers_generic_handler(
232
+ 'agentic_mesh_protocol.module.v1.ModuleService', rpc_method_handlers)
233
+ server.add_generic_rpc_handlers((generic_handler,))
234
+ server.add_registered_method_handlers('agentic_mesh_protocol.module.v1.ModuleService', rpc_method_handlers)
235
+
236
+
237
+ # This class is part of an EXPERIMENTAL API.
238
+ class ModuleService(object):
239
+ """ModuleService
240
+ It represents a functional unit within an agent in the multi-agent system (SMA).
241
+ Modules can be of three types: Kin, Tool, and Trigger.
242
+ - Kin: Represents the agent's core data architecture or "brain", such as a workflow-based model or an LLM (Large Language Model).
243
+ - Tool: Refers to external utilities or tools that the agent uses to perform tasks or enhance its capabilities.
244
+ - Trigger: Serves as the entry point for the agent, initiating processes or actions based on external inputs.
245
+ This service manages the lifecycle and interactions of these modules, including starting, stopping,
246
+ and monitoring the module's status, as well as handling input and output operations.
247
+ """
248
+
249
+ @staticmethod
250
+ def StartModule(request,
251
+ target,
252
+ options=(),
253
+ channel_credentials=None,
254
+ call_credentials=None,
255
+ insecure=False,
256
+ compression=None,
257
+ wait_for_ready=None,
258
+ timeout=None,
259
+ metadata=None):
260
+ return grpc.experimental.unary_stream(
261
+ request,
262
+ target,
263
+ '/agentic_mesh_protocol.module.v1.ModuleService/StartModule',
264
+ agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2.StartModuleRequest.SerializeToString,
265
+ agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2.StartModuleResponse.FromString,
266
+ options,
267
+ channel_credentials,
268
+ insecure,
269
+ call_credentials,
270
+ compression,
271
+ wait_for_ready,
272
+ timeout,
273
+ metadata,
274
+ _registered_method=True)
275
+
276
+ @staticmethod
277
+ def StopModule(request,
278
+ target,
279
+ options=(),
280
+ channel_credentials=None,
281
+ call_credentials=None,
282
+ insecure=False,
283
+ compression=None,
284
+ wait_for_ready=None,
285
+ timeout=None,
286
+ metadata=None):
287
+ return grpc.experimental.unary_unary(
288
+ request,
289
+ target,
290
+ '/agentic_mesh_protocol.module.v1.ModuleService/StopModule',
291
+ agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2.StopModuleRequest.SerializeToString,
292
+ agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2.StopModuleResponse.FromString,
293
+ options,
294
+ channel_credentials,
295
+ insecure,
296
+ call_credentials,
297
+ compression,
298
+ wait_for_ready,
299
+ timeout,
300
+ metadata,
301
+ _registered_method=True)
302
+
303
+ @staticmethod
304
+ def GetModuleStatus(request,
305
+ target,
306
+ options=(),
307
+ channel_credentials=None,
308
+ call_credentials=None,
309
+ insecure=False,
310
+ compression=None,
311
+ wait_for_ready=None,
312
+ timeout=None,
313
+ metadata=None):
314
+ return grpc.experimental.unary_unary(
315
+ request,
316
+ target,
317
+ '/agentic_mesh_protocol.module.v1.ModuleService/GetModuleStatus',
318
+ agentic__mesh__protocol_dot_module_dot_v1_dot_monitoring__pb2.GetModuleStatusRequest.SerializeToString,
319
+ agentic__mesh__protocol_dot_module_dot_v1_dot_monitoring__pb2.GetModuleStatusResponse.FromString,
320
+ options,
321
+ channel_credentials,
322
+ insecure,
323
+ call_credentials,
324
+ compression,
325
+ wait_for_ready,
326
+ timeout,
327
+ metadata,
328
+ _registered_method=True)
329
+
330
+ @staticmethod
331
+ def GetModuleJobs(request,
332
+ target,
333
+ options=(),
334
+ channel_credentials=None,
335
+ call_credentials=None,
336
+ insecure=False,
337
+ compression=None,
338
+ wait_for_ready=None,
339
+ timeout=None,
340
+ metadata=None):
341
+ return grpc.experimental.unary_unary(
342
+ request,
343
+ target,
344
+ '/agentic_mesh_protocol.module.v1.ModuleService/GetModuleJobs',
345
+ agentic__mesh__protocol_dot_module_dot_v1_dot_monitoring__pb2.GetModuleJobsRequest.SerializeToString,
346
+ agentic__mesh__protocol_dot_module_dot_v1_dot_monitoring__pb2.GetModuleJobsResponse.FromString,
347
+ options,
348
+ channel_credentials,
349
+ insecure,
350
+ call_credentials,
351
+ compression,
352
+ wait_for_ready,
353
+ timeout,
354
+ metadata,
355
+ _registered_method=True)
356
+
357
+ @staticmethod
358
+ def GetModuleInput(request,
359
+ target,
360
+ options=(),
361
+ channel_credentials=None,
362
+ call_credentials=None,
363
+ insecure=False,
364
+ compression=None,
365
+ wait_for_ready=None,
366
+ timeout=None,
367
+ metadata=None):
368
+ return grpc.experimental.unary_unary(
369
+ request,
370
+ target,
371
+ '/agentic_mesh_protocol.module.v1.ModuleService/GetModuleInput',
372
+ agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleInputRequest.SerializeToString,
373
+ agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleInputResponse.FromString,
374
+ options,
375
+ channel_credentials,
376
+ insecure,
377
+ call_credentials,
378
+ compression,
379
+ wait_for_ready,
380
+ timeout,
381
+ metadata,
382
+ _registered_method=True)
383
+
384
+ @staticmethod
385
+ def GetModuleOutput(request,
386
+ target,
387
+ options=(),
388
+ channel_credentials=None,
389
+ call_credentials=None,
390
+ insecure=False,
391
+ compression=None,
392
+ wait_for_ready=None,
393
+ timeout=None,
394
+ metadata=None):
395
+ return grpc.experimental.unary_unary(
396
+ request,
397
+ target,
398
+ '/agentic_mesh_protocol.module.v1.ModuleService/GetModuleOutput',
399
+ agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleOutputRequest.SerializeToString,
400
+ agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleOutputResponse.FromString,
401
+ options,
402
+ channel_credentials,
403
+ insecure,
404
+ call_credentials,
405
+ compression,
406
+ wait_for_ready,
407
+ timeout,
408
+ metadata,
409
+ _registered_method=True)
410
+
411
+ @staticmethod
412
+ def GetModuleSetup(request,
413
+ target,
414
+ options=(),
415
+ channel_credentials=None,
416
+ call_credentials=None,
417
+ insecure=False,
418
+ compression=None,
419
+ wait_for_ready=None,
420
+ timeout=None,
421
+ metadata=None):
422
+ return grpc.experimental.unary_unary(
423
+ request,
424
+ target,
425
+ '/agentic_mesh_protocol.module.v1.ModuleService/GetModuleSetup',
426
+ agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleSetupRequest.SerializeToString,
427
+ agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleSetupResponse.FromString,
428
+ options,
429
+ channel_credentials,
430
+ insecure,
431
+ call_credentials,
432
+ compression,
433
+ wait_for_ready,
434
+ timeout,
435
+ metadata,
436
+ _registered_method=True)
437
+
438
+ @staticmethod
439
+ def GetModuleSecret(request,
440
+ target,
441
+ options=(),
442
+ channel_credentials=None,
443
+ call_credentials=None,
444
+ insecure=False,
445
+ compression=None,
446
+ wait_for_ready=None,
447
+ timeout=None,
448
+ metadata=None):
449
+ return grpc.experimental.unary_unary(
450
+ request,
451
+ target,
452
+ '/agentic_mesh_protocol.module.v1.ModuleService/GetModuleSecret',
453
+ agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleSecretRequest.SerializeToString,
454
+ agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleSecretResponse.FromString,
455
+ options,
456
+ channel_credentials,
457
+ insecure,
458
+ call_credentials,
459
+ compression,
460
+ wait_for_ready,
461
+ timeout,
462
+ metadata,
463
+ _registered_method=True)
464
+
465
+ @staticmethod
466
+ def GetConfigSetupModule(request,
467
+ target,
468
+ options=(),
469
+ channel_credentials=None,
470
+ call_credentials=None,
471
+ insecure=False,
472
+ compression=None,
473
+ wait_for_ready=None,
474
+ timeout=None,
475
+ metadata=None):
476
+ return grpc.experimental.unary_unary(
477
+ request,
478
+ target,
479
+ '/agentic_mesh_protocol.module.v1.ModuleService/GetConfigSetupModule',
480
+ agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetConfigSetupModuleRequest.SerializeToString,
481
+ agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetConfigSetupModuleResponse.FromString,
482
+ options,
483
+ channel_credentials,
484
+ insecure,
485
+ call_credentials,
486
+ compression,
487
+ wait_for_ready,
488
+ timeout,
489
+ metadata,
490
+ _registered_method=True)
491
+
492
+ @staticmethod
493
+ def ConfigSetupModule(request,
494
+ target,
495
+ options=(),
496
+ channel_credentials=None,
497
+ call_credentials=None,
498
+ insecure=False,
499
+ compression=None,
500
+ wait_for_ready=None,
501
+ timeout=None,
502
+ metadata=None):
503
+ return grpc.experimental.unary_unary(
504
+ request,
505
+ target,
506
+ '/agentic_mesh_protocol.module.v1.ModuleService/ConfigSetupModule',
507
+ agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2.ConfigSetupModuleRequest.SerializeToString,
508
+ agentic__mesh__protocol_dot_module_dot_v1_dot_lifecycle__pb2.ConfigSetupModuleResponse.FromString,
509
+ options,
510
+ channel_credentials,
511
+ insecure,
512
+ call_credentials,
513
+ compression,
514
+ wait_for_ready,
515
+ timeout,
516
+ metadata,
517
+ _registered_method=True)
518
+
519
+ @staticmethod
520
+ def GetModuleCost(request,
521
+ target,
522
+ options=(),
523
+ channel_credentials=None,
524
+ call_credentials=None,
525
+ insecure=False,
526
+ compression=None,
527
+ wait_for_ready=None,
528
+ timeout=None,
529
+ metadata=None):
530
+ return grpc.experimental.unary_unary(
531
+ request,
532
+ target,
533
+ '/agentic_mesh_protocol.module.v1.ModuleService/GetModuleCost',
534
+ agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleCostRequest.SerializeToString,
535
+ agentic__mesh__protocol_dot_module_dot_v1_dot_information__pb2.GetModuleCostResponse.FromString,
536
+ options,
537
+ channel_credentials,
538
+ insecure,
539
+ call_credentials,
540
+ compression,
541
+ wait_for_ready,
542
+ timeout,
543
+ metadata,
544
+ _registered_method=True)
@@ -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/v1/monitoring.proto
5
+ # Protobuf Python Version: 6.33.0
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 6,
15
+ 33,
16
+ 0,
17
+ '',
18
+ 'agentic_mesh_protocol/module/v1/monitoring.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'\n0agentic_mesh_protocol/module/v1/monitoring.proto\x12\x1f\x61gentic_mesh_protocol.module.v1\x1a\x1b\x62uf/validate/validate.proto\"\x8e\x01\n\x07JobInfo\x12(\n\x06job_id\x18\x01 \x01(\tB\x11\xbaH\x0er\t\x10\x01:\x05jobs:\xc8\x01\x01R\x05jobId\x12Y\n\njob_status\x18\x02 \x01(\x0e\x32-.agentic_mesh_protocol.module.v1.ModuleStatusB\x0b\xbaH\x08\x82\x01\x02\x10\x01\xc8\x01\x01R\tjobStatus\"B\n\x16GetModuleStatusRequest\x12(\n\x06job_id\x18\x01 \x01(\tB\x11\xbaH\x0er\t\x10\x01:\x05jobs:\xc8\x01\x01R\x05jobId\"\xb1\x01\n\x17GetModuleStatusResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success\x12R\n\x06status\x18\x02 \x01(\x0e\x32-.agentic_mesh_protocol.module.v1.ModuleStatusB\x0b\xbaH\x08\x82\x01\x02\x10\x01\xc8\x01\x01R\x06status\x12(\n\x06job_id\x18\x03 \x01(\tB\x11\xbaH\x0er\t\x10\x01:\x05jobs:\xc8\x01\x01R\x05jobId\"\x16\n\x14GetModuleJobsRequest\"o\n\x15GetModuleJobsResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success\x12<\n\x04jobs\x18\x03 \x03(\x0b\x32(.agentic_mesh_protocol.module.v1.JobInfoR\x04jobs*\xee\x01\n\x0cModuleStatus\x12\x1d\n\x19MODULE_STATUS_UNSPECIFIED\x10\x00\x12\x1a\n\x16MODULE_STATUS_STARTING\x10\x01\x12\x1c\n\x18MODULE_STATUS_PROCESSING\x10\x02\x12\x1a\n\x16MODULE_STATUS_CANCELED\x10\x03\x12\x18\n\x14MODULE_STATUS_FAILED\x10\x04\x12\x19\n\x15MODULE_STATUS_EXPIRED\x10\x05\x12\x19\n\x15MODULE_STATUS_SUCCESS\x10\x06\x12\x19\n\x15MODULE_STATUS_STOPPED\x10\x07\x42\xcc\x01\n#com.agentic_mesh_protocol.module.v1B\x0fMonitoringProtoP\x01\xa2\x02\x03\x41MX\xaa\x02\x1d\x41genticMeshProtocol.Module.V1\xca\x02\x1d\x41genticMeshProtocol\\Module\\V1\xe2\x02)AgenticMeshProtocol\\Module\\V1\\GPBMetadata\xea\x02\x1f\x41genticMeshProtocol::Module::V1b\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'agentic_mesh_protocol.module.v1.monitoring_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.v1B\017MonitoringProtoP\001\242\002\003AMX\252\002\035AgenticMeshProtocol.Module.V1\312\002\035AgenticMeshProtocol\\Module\\V1\342\002)AgenticMeshProtocol\\Module\\V1\\GPBMetadata\352\002\037AgenticMeshProtocol::Module::V1'
36
+ _globals['_JOBINFO'].fields_by_name['job_id']._loaded_options = None
37
+ _globals['_JOBINFO'].fields_by_name['job_id']._serialized_options = b'\272H\016r\t\020\001:\005jobs:\310\001\001'
38
+ _globals['_JOBINFO'].fields_by_name['job_status']._loaded_options = None
39
+ _globals['_JOBINFO'].fields_by_name['job_status']._serialized_options = b'\272H\010\202\001\002\020\001\310\001\001'
40
+ _globals['_GETMODULESTATUSREQUEST'].fields_by_name['job_id']._loaded_options = None
41
+ _globals['_GETMODULESTATUSREQUEST'].fields_by_name['job_id']._serialized_options = b'\272H\016r\t\020\001:\005jobs:\310\001\001'
42
+ _globals['_GETMODULESTATUSRESPONSE'].fields_by_name['status']._loaded_options = None
43
+ _globals['_GETMODULESTATUSRESPONSE'].fields_by_name['status']._serialized_options = b'\272H\010\202\001\002\020\001\310\001\001'
44
+ _globals['_GETMODULESTATUSRESPONSE'].fields_by_name['job_id']._loaded_options = None
45
+ _globals['_GETMODULESTATUSRESPONSE'].fields_by_name['job_id']._serialized_options = b'\272H\016r\t\020\001:\005jobs:\310\001\001'
46
+ _globals['_MODULESTATUS']._serialized_start=645
47
+ _globals['_MODULESTATUS']._serialized_end=883
48
+ _globals['_JOBINFO']._serialized_start=115
49
+ _globals['_JOBINFO']._serialized_end=257
50
+ _globals['_GETMODULESTATUSREQUEST']._serialized_start=259
51
+ _globals['_GETMODULESTATUSREQUEST']._serialized_end=325
52
+ _globals['_GETMODULESTATUSRESPONSE']._serialized_start=328
53
+ _globals['_GETMODULESTATUSRESPONSE']._serialized_end=505
54
+ _globals['_GETMODULEJOBSREQUEST']._serialized_start=507
55
+ _globals['_GETMODULEJOBSREQUEST']._serialized_end=529
56
+ _globals['_GETMODULEJOBSRESPONSE']._serialized_start=531
57
+ _globals['_GETMODULEJOBSRESPONSE']._serialized_end=642
58
+ # @@protoc_insertion_point(module_scope)