diff options
author | KAPIL SINGAL <ks220y@att.com> | 2021-01-22 11:49:51 -0500 |
---|---|---|
committer | Singal, Kapil (ks220y) <ks220y@att.com> | 2021-01-22 12:08:19 -0500 |
commit | adcd4f2bc695840e9ecbc05003bc52c675f22fec (patch) | |
tree | 5db58ce9b6b3e86977ca3c697ce3e8998523eb61 /ms/artifact-manager/README | |
parent | dc8252f3cfa1ddd0c1c8c70513c16c738d840822 (diff) |
Renaming Files having BluePrint to have Blueprint
Replacing BluePrint with Blueprint throughout
Issue-ID: CCSDK-3098
Signed-off-by: KAPIL SINGAL <ks220y@att.com>
Change-Id: Ibee8bad07ae7d9287073db2d4f2f2cd730fa8b96
Diffstat (limited to 'ms/artifact-manager/README')
-rw-r--r-- | ms/artifact-manager/README | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/ms/artifact-manager/README b/ms/artifact-manager/README index 290dadfde..d77762842 100644 --- a/ms/artifact-manager/README +++ b/ms/artifact-manager/README @@ -38,9 +38,9 @@ Upload `CBA.zip` file for storage in artifact manager. File needs to be sent as #### Example ``` -stub: BluePrintManagementServiceStub = BluePrintManagementServiceStub(channel) +stub: BlueprintManagementServiceStub = BlueprintManagementServiceStub(channel) with open(file_path, "rb") as cba_file: - msg: BluePrintUploadInput = BluePrintUploadInput() + msg: BlueprintUploadInput = BlueprintUploadInput() msg.actionIdentifiers.blueprintName = "Test" msg.actionIdentifiers.blueprintVersion = "0.0.1" msg.fileChunk.chunk = cba_file.read() @@ -54,8 +54,8 @@ Download existing `CBA.zip` file. #### Example ``` -stub: BluePrintManagementServiceStub = BluePrintManagementServiceStub(channel) -msg: BluePrintDownloadInput = BluePrintDownloadInput() +stub: BlueprintManagementServiceStub = BlueprintManagementServiceStub(channel) +msg: BlueprintDownloadInput = BlueprintDownloadInput() msg.actionIdentifiers.blueprintName = "Test" msg.actionIdentifiers.blueprintVersion = "0.0.1" return stub.downloadBlueprint(msg) @@ -67,8 +67,8 @@ Delete existing `CBA.zip` file. #### Example ``` -stub: BluePrintManagementServiceStub = BluePrintManagementServiceStub(channel) -msg: BluePrintRemoveInput = BluePrintRemoveInput() +stub: BlueprintManagementServiceStub = BlueprintManagementServiceStub(channel) +msg: BlueprintRemoveInput = BlueprintRemoveInput() msg.actionIdentifiers.blueprintName = "Test" msg.actionIdentifiers.blueprintVersion = "0.0.1" return stub.removeBlueprint(msg) @@ -88,13 +88,13 @@ import zipfile from grpc import Channel, ChannelCredentials, insecure_channel, secure_channel, ssl_channel_credentials -from proto.BluePrintManagement_pb2 import ( - BluePrintDownloadInput, - BluePrintRemoveInput, - BluePrintUploadInput, - BluePrintManagementOutput, +from proto.BlueprintManagement_pb2 import ( + BlueprintDownloadInput, + BlueprintRemoveInput, + BlueprintUploadInput, + BlueprintManagementOutput, ) -from proto.BluePrintManagement_pb2_grpc import BluePrintManagementServiceStub +from proto.BlueprintManagement_pb2_grpc import BlueprintManagementServiceStub logging.basicConfig(level=logging.DEBUG) @@ -139,31 +139,31 @@ class Client: :param config: ConfigParser object with "client" section """ self.channel: Channel = channel - self.stub: BluePrintManagementServiceStub = BluePrintManagementServiceStub(self.channel) + self.stub: BlueprintManagementServiceStub = BlueprintManagementServiceStub(self.channel) self.config = config - def upload(self) -> BluePrintManagementOutput: + def upload(self) -> BlueprintManagementOutput: """Prepare upload message and send it to server.""" logging.info("Call upload client method") with open(self.config.get("client", "cba_file"), "rb") as cba_file: - msg: BluePrintUploadInput = BluePrintUploadInput() + msg: BlueprintUploadInput = BlueprintUploadInput() msg.actionIdentifiers.blueprintName = "Test" msg.actionIdentifiers.blueprintVersion = "0.0.1" msg.fileChunk.chunk = cba_file.read() return self.stub.uploadBlueprint(msg) - def download(self) -> BluePrintManagementOutput: + def download(self) -> BlueprintManagementOutput: """Prepare download message and send it to server.""" logging.info("Call download client method") - msg: BluePrintDownloadInput = BluePrintDownloadInput() + msg: BlueprintDownloadInput = BlueprintDownloadInput() msg.actionIdentifiers.blueprintName = "Test" msg.actionIdentifiers.blueprintVersion = "0.0.1" return self.stub.downloadBlueprint(msg) - def remove(self) -> BluePrintManagementOutput: + def remove(self) -> BlueprintManagementOutput: """Prepare remove message and send it to server.""" logging.info("Call remove client method") - msg: BluePrintRemoveInput = BluePrintRemoveInput() + msg: BlueprintRemoveInput = BlueprintRemoveInput() msg.actionIdentifiers.blueprintName = "Test" msg.actionIdentifiers.blueprintVersion = "0.0.1" return self.stub.removeBlueprint(msg) |