aboutsummaryrefslogtreecommitdiffstats
path: root/ms/command-executor/src/main/python/proto/CommandExecutor_pb2_grpc.py
diff options
context:
space:
mode:
Diffstat (limited to 'ms/command-executor/src/main/python/proto/CommandExecutor_pb2_grpc.py')
-rw-r--r--ms/command-executor/src/main/python/proto/CommandExecutor_pb2_grpc.py27
1 files changed, 22 insertions, 5 deletions
diff --git a/ms/command-executor/src/main/python/proto/CommandExecutor_pb2_grpc.py b/ms/command-executor/src/main/python/proto/CommandExecutor_pb2_grpc.py
index 3ea8ec4d6..b5c2c26ff 100644
--- a/ms/command-executor/src/main/python/proto/CommandExecutor_pb2_grpc.py
+++ b/ms/command-executor/src/main/python/proto/CommandExecutor_pb2_grpc.py
@@ -1,7 +1,7 @@
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
import grpc
-import proto.CommandExecutor_pb2 as CommandExecutor__pb2
+import CommandExecutor_pb2 as CommandExecutor__pb2
class CommandExecutorServiceStub(object):
@@ -14,6 +14,11 @@ class CommandExecutorServiceStub(object):
Args:
channel: A grpc.Channel.
"""
+ self.uploadBlueprint = channel.unary_unary(
+ '/org.onap.ccsdk.cds.controllerblueprints.command.api.CommandExecutorService/uploadBlueprint',
+ request_serializer=CommandExecutor__pb2.UploadBlueprintInput.SerializeToString,
+ response_deserializer=CommandExecutor__pb2.UploadBlueprintOutput.FromString,
+ )
self.prepareEnv = channel.unary_unary(
'/org.onap.ccsdk.cds.controllerblueprints.command.api.CommandExecutorService/prepareEnv',
request_serializer=CommandExecutor__pb2.PrepareEnvInput.SerializeToString,
@@ -30,16 +35,23 @@ class CommandExecutorServiceServicer(object):
# missing associated documentation comment in .proto file
pass
+ def uploadBlueprint(self, request, context):
+ """rpc to upload the CBA
+ """
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
+ context.set_details('Method not implemented!')
+ raise NotImplementedError('Method not implemented!')
+
def prepareEnv(self, request, context):
- # missing associated documentation comment in .proto file
- pass
+ """prepare Python environment
+ """
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def executeCommand(self, request, context):
- # missing associated documentation comment in .proto file
- pass
+ """execute the actual command.
+ """
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
@@ -47,6 +59,11 @@ class CommandExecutorServiceServicer(object):
def add_CommandExecutorServiceServicer_to_server(servicer, server):
rpc_method_handlers = {
+ 'uploadBlueprint': grpc.unary_unary_rpc_method_handler(
+ servicer.uploadBlueprint,
+ request_deserializer=CommandExecutor__pb2.UploadBlueprintInput.FromString,
+ response_serializer=CommandExecutor__pb2.UploadBlueprintOutput.SerializeToString,
+ ),
'prepareEnv': grpc.unary_unary_rpc_method_handler(
servicer.prepareEnv,
request_deserializer=CommandExecutor__pb2.PrepareEnvInput.FromString,