[#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

@ -123,3 +123,7 @@ class ContainerInterface(ABC):
) -> List[ClusterNode]:
"""Show the nodes participating in the container in the current epoch."""
raise NotImplementedError("No implemethed method nodes")
@abstractmethod
def wait_creation(self, cid: str, endpoint: str, attempts: Optional[str], sleep_interval: Optional[int]) -> None:
raise NotImplementedError("No implemented method wait_creation")