11 lines
No EOL
380 B
C#
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);
|
|
} |