diff options
author | Dan Timoney <dtimoney@att.com> | 2022-05-23 16:20:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-05-23 16:20:49 +0000 |
commit | b4cbb0ee94eb086a2355998189bd94fedc503c79 (patch) | |
tree | b241343b41a4999746886674b4148875243182df /components | |
parent | c71ec674f81560753730ac39647d773600ecc418 (diff) | |
parent | 0094e13ddec035faf7f80943783943003f12889a (diff) |
Merge "CCSDK-3671 add workflows list for grpc"
Diffstat (limited to 'components')
-rw-r--r-- | components/model-catalog/proto-definition/proto/BluePrintManagement.proto | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/components/model-catalog/proto-definition/proto/BluePrintManagement.proto b/components/model-catalog/proto-definition/proto/BluePrintManagement.proto index a363e8ade..ee8bd2540 100644 --- a/components/model-catalog/proto-definition/proto/BluePrintManagement.proto +++ b/components/model-catalog/proto-definition/proto/BluePrintManagement.proto @@ -42,6 +42,13 @@ message BluePrintManagementOutput { google.protobuf.Struct properties = 4; } +// Get the list of workflows available for a given blueprintName/Version +message BluePrintGetWorkflowsInput { + org.onap.ccsdk.cds.controllerblueprints.common.api.CommonHeader commonHeader = 1; + string blueprintName = 2; + string blueprintVersion = 3; +} + message FileChunk { bytes chunk = 1; } @@ -73,4 +80,5 @@ service BluePrintManagementService { rpc uploadBlueprint (BluePrintUploadInput) returns (BluePrintManagementOutput); rpc removeBlueprint (BluePrintRemoveInput) returns (BluePrintManagementOutput); rpc bootstrapBlueprint (BluePrintBootstrapInput) returns (BluePrintManagementOutput); + rpc getWorkflows(BluePrintGetWorkflowsInput) returns (BluePrintManagementOutput); } |