Implement BluePrintManagementServiceGrpc
authorAlexis de Talhouët <adetalhouet89@gmail.com>
Sun, 13 Jan 2019 21:49:32 +0000 (16:49 -0500)
committerAlexis de Talhouët <adetalhouet89@gmail.com>
Fri, 18 Jan 2019 18:56:01 +0000 (13:56 -0500)
Change-Id: I66a6a3c23b5a3c24ce8d61178f00f053cb8bbbdc
Issue-ID: CCSDK-909
Signed-off-by: Alexis de Talhouët <adetalhouet89@gmail.com>
components/model-catalog/api-definition/proto/BluePrintManagement.proto

index 55f9466..dc0680d 100644 (file)
@@ -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);
 }