summaryrefslogtreecommitdiffstats
path: root/components/model-catalog
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2019-04-19 00:03:50 +0000
committerGerrit Code Review <gerrit@onap.org>2019-04-19 00:03:50 +0000
commit0e71bb35c7c2a6697216ea0ed203849400c46409 (patch)
tree02e7a4a18ca6eb95b15efc359cc363b4c2a136fd /components/model-catalog
parent1e7aa69376ee082cc85f1e22f27763cdbb0c0be3 (diff)
parentbc95a55c61685694a930d659bef336989a04df2f (diff)
Merge "Add grpc execution service"
Diffstat (limited to 'components/model-catalog')
-rw-r--r--components/model-catalog/proto-definition/proto/CommandExecutor.proto27
1 files changed, 15 insertions, 12 deletions
diff --git a/components/model-catalog/proto-definition/proto/CommandExecutor.proto b/components/model-catalog/proto-definition/proto/CommandExecutor.proto
index e95e55521..f488cc1b4 100644
--- a/components/model-catalog/proto-definition/proto/CommandExecutor.proto
+++ b/components/model-catalog/proto-definition/proto/CommandExecutor.proto
@@ -6,27 +6,30 @@ package org.onap.ccsdk.cds.controllerblueprints.command.api;
message ExecutionInput {
string requestId = 1;
+ // Optional Id used to correlate multiple requests so that it can identify previous request information.
+ string correlationId = 2;
// Optional Blueprint Information used to identify CBA content information in shared file structure environment.
- Identifiers identifiers = 2;
- ScriptType scriptType = 3;
+ Identifiers identifiers = 3;
+ ScriptType scriptType = 4;
// Actual Command to Execute in Scripting Environment
- string command = 4;
- int32 timeOut = 5;
+ string command = 5;
+ int32 timeOut = 6;
// Extra Dynamic Properties for Command processing in JSON format
- google.protobuf.Struct properties = 6;
+ google.protobuf.Struct properties = 7;
// Request Time Stamp
- google.protobuf.Timestamp timestamp = 7;
+ google.protobuf.Timestamp timestamp = 8;
}
message PrepareEnvInput {
Identifiers identifiers = 1;
+ string requestId = 2;
// Optional Id used to correlate multiple requests so that it can identify previous request information.
- string correlationId = 2;
- ScriptType scriptType = 3;
- repeated string packages = 4;
- int32 timeOut = 5;
- google.protobuf.Struct properties = 6;
- google.protobuf.Timestamp timestamp = 7;
+ string correlationId = 3;
+ ScriptType scriptType = 4;
+ repeated string packages = 5;
+ int32 timeOut = 6;
+ google.protobuf.Struct properties = 7;
+ google.protobuf.Timestamp timestamp = 8;
}
message Identifiers {