Mythosia.Azure.Storage.Blobs
1.0.0
See the version list below for details.
dotnet add package Mythosia.Azure.Storage.Blobs --version 1.0.0
NuGet\Install-Package Mythosia.Azure.Storage.Blobs -Version 1.0.0
<PackageReference Include="Mythosia.Azure.Storage.Blobs" Version="1.0.0" />
paket add Mythosia.Azure.Storage.Blobs --version 1.0.0
#r "nuget: Mythosia.Azure.Storage.Blobs, 1.0.0"
// Install Mythosia.Azure.Storage.Blobs as a Cake Addin #addin nuget:?package=Mythosia.Azure.Storage.Blobs&version=1.0.0 // Install Mythosia.Azure.Storage.Blobs as a Cake Tool #tool nuget:?package=Mythosia.Azure.Storage.Blobs&version=1.0.0
BlobServiceClient and Azure Key Vault Integration
The BlobServiceClient is a part of the Azure SDK designed to interact with Azure Blob Storage. It provides methods for working with containers and blobs, such as uploading, downloading, deleting, and generating Shared Access Signatures (SAS). However, BlobServiceClient does not natively include integration with Azure Key Vault for secret management, such as storing or retrieving credentials or connection strings.
Azure Key Vault, on the other hand, is a service that provides centralized secret management, enabling secure storage and access to sensitive information such as API keys, connection strings, and certificates. It allows secure access using Azure Managed Identity or Service Principal Authentication.
While BlobServiceClient itself does not handle secrets or authentication via Azure Key Vault, you can integrate the two services by retrieving secrets (such as Blob Storage connection strings or SAS tokens) from Azure Key Vault and using them to initialize BlobServiceClient.
Key Points:
BlobServiceClient:
Used to perform operations on Azure Blob Storage (upload, download, delete, etc.).
Does not have native support for managing secrets or authentication via Azure Key Vault.
Azure Key Vault:
A service for managing and securing sensitive information like connection strings and credentials.
Can store secrets required for securely accessing services like Azure Blob Storage.
Integration:
You can retrieve connection strings or SAS tokens from Azure Key Vault using Azure SDKs (e.g., SecretClient) and use them to instantiate BlobServiceClient.
Example:
// create BlobServiceClient with key vault information
new ExtendBlobServiceClient("https://mythosia-key-vault.vault.azure.net/", "blob");
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. 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. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Azure.Core (>= 1.42.0)
- Azure.Identity (>= 1.12.0)
- Azure.Security.KeyVault.Secrets (>= 4.6.0)
- Azure.Storage.Blobs (>= 12.21.2)
- Azure.Storage.Common (>= 12.20.1)
- Mythosia (>= 1.2.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.