Dosaic.Plugins.Persistence.S3
1.0.27
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Dosaic.Plugins.Persistence.S3 --version 1.0.27
NuGet\Install-Package Dosaic.Plugins.Persistence.S3 -Version 1.0.27
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Dosaic.Plugins.Persistence.S3" Version="1.0.27" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Dosaic.Plugins.Persistence.S3 --version 1.0.27
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Dosaic.Plugins.Persistence.S3, 1.0.27"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Dosaic.Plugins.Persistence.S3 as a Cake Addin #addin nuget:?package=Dosaic.Plugins.Persistence.S3&version=1.0.27 // Install Dosaic.Plugins.Persistence.S3 as a Cake Tool #tool nuget:?package=Dosaic.Plugins.Persistence.S3&version=1.0.27
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Dosaic.Plugins.Persistence.S3
Dosaic.Plugins.Persistence.S3 is a plugin
that allows other dosaic components
to do interact witha s3 compatible storage
.
Installation
To install the nuget package follow these steps:
dotnet add package Dosaic.Plugins.Persistence.S3
or add as package reference to your .csproj
<PackageReference Include="Dosaic.Plugins.Persistence.S3" Version="" />
Appsettings.yml
Configure your appsettings.yml with these properties
s3:
endpoint: ""
accessKey: ""
secretKey: ""
region: ""
useSsl: true
healthCheckPath: ""
Usage
public interface IExampleService
{
Task PutObjectAsync();
Task GetObjectAsync();
Task DeleteObjectAsync()
}
public class ExampleService : IExampleService
{
private readonly IBlobStorage _blobStorage;
// retrieve the registered service IBlobStorage from the DI container via depentency injection
public ExampleService(IBlobStorage blobStorage)
{
_blobStorage = blobStorage;
}
// put/update a (new) object into the s3 storage
public async Task PutObjectAsync()
{
var sampleDataBlobObject = new SampleDataBlobObject();
sampleDataBlobObject.Bucket = "BucketName";
sampleDataBlobObject.Key = "Key";
sampleDataBlobObject.MetaData = new() { { BlobMetaData.ContentType, "application/pdf" } };
sampleDataBlobObject.Data = SampleDataBlobObject.GenerateStreamFromString("my-fancy-file-content");
var result = await _blobStorage.PutObjectAsync(sampleDataBlobObject);
}
// retrieve a object from the s3 storage
public async Task GetObjectAsync()
{
var result = await _blobStorage.GetObjectAsync("bucketName", "Key", CancellationToken.None);
var fileContent = new StreamReader(result.Value.Data).ReadToEnd();
}
// delete a object from the s3 storage
public async Task DeleteObjectAsync()
{
var result = await blobStorage.DeleteObjectAsync("BucketName", "Key", CancellationToken.None);
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net9.0
- AspNetCore.HealthChecks.Uris (>= 9.0.0)
- Dosaic.Plugins.Persistence.Abstractions (>= 1.0.27)
- Minio (>= 6.0.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.