aboutsummaryrefslogtreecommitdiffstats
path: root/components/model-catalog/proto-definition/proto/BlueprintProcessing.proto
blob: 3e8bfd8c409fd2537d27b16670cdaad2cce2d4fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
syntax = "proto3";
import "google/protobuf/struct.proto";
import "BlueprintCommon.proto";
option java_multiple_files = true;
package org.onap.ccsdk.cds.controllerblueprints.processing.api;


message ExecutionServiceInput {
  org.onap.ccsdk.cds.controllerblueprints.common.api.CommonHeader commonHeader = 1;
  org.onap.ccsdk.cds.controllerblueprints.common.api.ActionIdentifiers actionIdentifiers = 2;
  google.protobuf.Struct payload = 3;
}

message ExecutionServiceOutput {
  org.onap.ccsdk.cds.controllerblueprints.common.api.CommonHeader commonHeader = 1;
  org.onap.ccsdk.cds.controllerblueprints.common.api.ActionIdentifiers actionIdentifiers = 2;
  org.onap.ccsdk.cds.controllerblueprints.common.api.Status status = 3;
  google.protobuf.Struct payload = 4;
}


service BlueprintProcessingService {
  rpc process (stream ExecutionServiceInput) returns (stream ExecutionServiceOutput);
}