[#172] client/container: Support listing containers with containersOf

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
Evgenii Stratonikov 2023-03-24 11:55:14 +03:00 committed by Gitea
parent bf7d80f44b
commit 9e54646248
2 changed files with 60 additions and 6 deletions

View file

@ -22,12 +22,13 @@ type Client struct {
}
const (
putMethod = "put"
deleteMethod = "delete"
getMethod = "get"
listMethod = "list"
eaclMethod = "eACL"
setEACLMethod = "setEACL"
putMethod = "put"
deleteMethod = "delete"
getMethod = "get"
listMethod = "list"
containersOfMethod = "containersOf"
eaclMethod = "eACL"
setEACLMethod = "setEACL"
startEstimationMethod = "startContainerEstimation"
stopEstimationMethod = "stopContainerEstimation"