diff options
author | Alexis de Talhouët <adetalhouet89@gmail.com> | 2019-01-13 16:49:32 -0500 |
---|---|---|
committer | Alexis de Talhouët <adetalhouet89@gmail.com> | 2019-01-18 13:56:01 -0500 |
commit | afa5c2df6c53dfce43c72c05457ec5a108ae0ed7 (patch) | |
tree | b7ec3f7ab41684d0e7a359cdeb49c7aa4ea3a8da /components | |
parent | 3c1cc5d3c33e0667b3d917cff1d1f0952b255461 (diff) |
Implement BluePrintManagementServiceGrpc
Change-Id: I66a6a3c23b5a3c24ce8d61178f00f053cb8bbbdc
Issue-ID: CCSDK-909
Signed-off-by: Alexis de Talhouët <adetalhouet89@gmail.com>
Diffstat (limited to 'components')
-rw-r--r-- | components/model-catalog/api-definition/proto/BluePrintManagement.proto | 58 |
1 files changed, 20 insertions, 38 deletions
diff --git a/components/model-catalog/api-definition/proto/BluePrintManagement.proto b/components/model-catalog/api-definition/proto/BluePrintManagement.proto index 55f9466e4..dc0680d57 100644 --- a/components/model-catalog/api-definition/proto/BluePrintManagement.proto +++ b/components/model-catalog/api-definition/proto/BluePrintManagement.proto @@ -2,55 +2,37 @@ syntax = "proto3"; option java_multiple_files = true; package org.onap.ccsdk.apps.controllerblueprints.management.api; -message BluePrintUploadInput { - CommonHeader commonHeader = 1; - string blueprintName = 2; - string blueprintVersion = 3; - FileChunk fileChunk = 4; +message BluePrintManagementInput { + CommonHeader commonHeader = 1; + string blueprintName = 2; + string blueprintVersion = 3; + FileChunk fileChunk = 4; } -message FileChunk { - bytes chunk = 1; -} - -message BluePrintUploadOutput { - CommonHeader commonHeader = 1; - Status status = 3; -} - -message BluePrintRemoveInput { - CommonHeader commonHeader = 1; - string blueprintName = 2; - string blueprintVersion = 3; +message BluePrintManagementOutput { + CommonHeader commonHeader = 1; + Status status = 3; } -message BluePrintRemoveOutput { - CommonHeader commonHeader = 1; - Status status = 3; +message FileChunk { + bytes chunk = 1; } message CommonHeader { - string timestamp = 1; - string originatorId = 23; - string requestId = 3; - string subRequestId = 4; -} - -message ActionIdentifiers { - string blueprintName = 1; - string blueprintVersion = 2; - string actionName = 3; - string mode = 4; + string timestamp = 1; + string originatorId = 23; + string requestId = 3; + string subRequestId = 4; } message Status { - string timestamp = 1; - int32 code = 2; - string message = 3; - string errorMessage = 4; + string timestamp = 1; + int32 code = 2; + string message = 3; + string errorMessage = 4; } service BluePrintManagementService { - rpc uploadBlueprint (BluePrintUploadInput) returns (BluePrintUploadOutput); - rpc removeBlueprint (BluePrintRemoveInput) returns (BluePrintRemoveOutput); + rpc uploadBlueprint (BluePrintManagementInput) returns (BluePrintManagementOutput); + rpc removeBlueprint (BluePrintManagementInput) returns (BluePrintManagementOutput); } |