[#376] Added ape manager group command to grpc client

Signed-off-by: Dmitriy Zayakin
Signed-off-by: Dmitriy Zayakin <d.zayakin@yadro.com>
This commit is contained in:
Dmitriy Zayakin 2025-04-29 10:43:02 +03:00 committed by Dmitriy Zayakin
parent 517a7b9322
commit c27fb5747b
9 changed files with 150 additions and 0 deletions

View file

@ -8,6 +8,7 @@ class CliClientWrapper(interfaces_wrapper.GrpcClientWrapper):
self.object: interfaces.ObjectInterface = implementations.ObjectOperations(self.cli)
self.container: interfaces.ContainerInterface = implementations.ContainerOperations(self.cli)
self.netmap: interfaces.NetmapInterface = implementations.NetmapOperations(self.cli)
self.ape_manager: interfaces.ApeManagerInterface = implementations.ApeManagerOperations(self.cli)
class RpcClientWrapper(interfaces_wrapper.GrpcClientWrapper):