Files
duplicati/Duplicati/Library/Backend/S3/IS3Client.cs
T

45 lines
2.1 KiB
C#
Raw Normal View History

2025-01-07 09:40:39 +01:00
// Copyright (C) 2025, The Duplicati Team
2024-02-28 15:45:30 +01:00
// https://duplicati.com, hello@duplicati.com
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
2019-11-21 22:37:32 +01:00
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Duplicati.Library.Interface;
2019-11-21 22:00:23 +01:00
namespace Duplicati.Library.Backend
{
2019-11-22 22:37:23 +01:00
public interface IS3Client : IDisposable
2019-11-21 22:00:23 +01:00
{
IAsyncEnumerable<IFileEntry> ListBucketAsync(string bucketName, string prefix, bool recursive, CancellationToken cancellationToken);
2019-11-21 22:37:32 +01:00
Task AddBucketAsync(string bucketName, CancellationToken cancelToken);
2019-11-21 22:37:32 +01:00
2024-09-29 23:04:54 +02:00
Task DeleteObjectAsync(string bucketName, string keyName, CancellationToken cancelToken);
2019-11-21 22:37:32 +01:00
Task RenameFileAsync(string bucketName, string source, string target, CancellationToken cancelToken);
2019-11-21 22:37:32 +01:00
Task GetFileStreamAsync(string bucketName, string keyName, System.IO.Stream target, CancellationToken cancelToken);
2019-11-21 22:37:32 +01:00
string GetDnsHost();
Task AddFileStreamAsync(string bucketName, string keyName, System.IO.Stream source, CancellationToken cancelToken);
2019-11-21 22:00:23 +01:00
}
}