15 lines
No EOL
675 B
C#
15 lines
No EOL
675 B
C#
using FrostFS.Object;
|
|
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 containerId);
|
|
Task<HeadResponse> GetObjectHeadAsync(ContainerID containerId, ObjectID objectId);
|
|
Task<Object.PutResponse> PutObjectAsync(ContainerID containerId, Stream data);
|
|
Task<Object.DeleteResponse> DeleteObjectAsync(ContainerID containerId, ObjectID objectId);
|
|
} |