Minio.AspNetCore.HealthChecks
3.1.13
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 Minio.AspNetCore.HealthChecks --version 3.1.13
NuGet\Install-Package Minio.AspNetCore.HealthChecks -Version 3.1.13
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="Minio.AspNetCore.HealthChecks" Version="3.1.13" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Minio.AspNetCore.HealthChecks --version 3.1.13
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Minio.AspNetCore.HealthChecks, 3.1.13"
#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 Minio.AspNetCore.HealthChecks as a Cake Addin #addin nuget:?package=Minio.AspNetCore.HealthChecks&version=3.1.13 // Install Minio.AspNetCore.HealthChecks as a Cake Tool #tool nuget:?package=Minio.AspNetCore.HealthChecks&version=3.1.13
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Minio.AspNetCore
Microsoft.Extensions.DependencyInjection
and HealthChecks
extensions for Minio client
Usage
services.AddMinio(options =>
{
options.Endpoint = "endpoint";
// ...
options.OnClientConfiguration = client =>
{
client.WithSSL();
}
});
// Url based configuration
services.AddMinio(new Uri("s3://accessKey:secretKey@localhost:9000/region"));
// Get or inject
var client = serviceProvider.GetRequiredService<MinioClient>();
// Create new from factory
var client = serviceProvider.GetRequiredService<IMinioClientFactory>().CreateClient();
Multiple clients support using named options
services.AddMinio(options =>
{
options.Endpoint = "endpoint1";
// ...
options.OnClientConfiguration = client =>
{
client.WithSSL();
}
});
// Named extension overload
services.AddMinio("minio2", options =>
{
options.Endpoint = "endpoint2";
// ...
options.OnClientConfiguration = client =>
{
client.WithSSL().WithTimeout(...);
}
});
// Explicit named Configure
services.AddMinio()
.Configure<MinioOptions>("minio3", options =>
{
options.Endpoint = "endpoint3";
// ...
});
// Get or inject first minio client
var client = serviceProvider.GetRequiredService<MinioClient>();
// Create new minio2
var client = serviceProvider.GetRequiredService<IMinioClientFactory>().CreateClient("minio2");
// Create new minio3
var client = serviceProvider.GetRequiredService<IMinioClientFactory>().CreateClient("minio3");
HealthChecks
// Minio.AspNetCore.HealthChecks package
services.AddHealthChecks()
.AddMinio(sp => sp.GetRequiredService<MinioClient>());
services.AddHealthChecks()
.AddMinio(sp => sp.GetRequiredService<MinioClient>())
.AddMinio(sp => /* Get named client from cache or create new */);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net5.0
- Minio.AspNetCore (>= 3.1.13)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Minio.AspNetCore.HealthChecks:
Package | Downloads |
---|---|
WebApiSkeleton.FileSystem.MinIO
Package containing implementation of file system based on Minio S3 storage. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
6.0.1 | 14,174 | 6/24/2024 |
6.0.0 | 15,548 | 1/8/2024 |
5.0.0 | 21,508 | 5/7/2023 |
4.0.8 | 2,873 | 2/22/2023 |
4.0.7 | 943 | 2/13/2023 |
4.0.6 | 28,341 | 12/15/2022 |
4.0.5 | 10,907 | 9/29/2022 |
4.0.2 | 2,158 | 4/10/2022 |
4.0.1 | 567 | 3/25/2022 |
4.0.0 | 3,210 | 3/15/2022 |
3.1.22 | 1,911 | 12/14/2021 |
3.1.21 | 599 | 7/24/2021 |
3.1.20 | 312 | 5/30/2021 |
3.1.19 | 295 | 4/12/2021 |
3.1.17 | 7,438 | 3/26/2021 |
3.1.15 | 862 | 2/26/2021 |
3.1.14 | 420 | 2/16/2021 |
3.1.13 | 31,414 | 11/23/2020 |
1.0.0 | 497 | 9/29/2022 |