frostfs-sdk-csharp/sdk/src/FrostFS.SDK.ClientV2/Interfaces/IFrostFSClient.cs
Ivan Pchelintsev bb6e187b61 [#1] Add presentation layer
Signed-off-by: Ivan Pchelintsev <i.pchelintsev@yadro.com>
2024-05-22 14:29:20 +03:00

11 lines
No EOL
380 B
C#

using FrostFS.Refs;
namespace FrostFS.SDK.ClientV2;
public interface IFrostFSClient
{
Task<Container.ListResponse> ListContainersAsync();
Task<Container.PutResponse> CreateContainerAsync(Container.Container container);
Task<Container.GetResponse> GetContainerAsync(ContainerID containerId);
Task<Container.DeleteResponse> DeleteContainerAsync(ContainerID cid);
}