Mythosia.Azure.Storage.Blobs 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Mythosia.Azure.Storage.Blobs --version 1.0.1                
NuGet\Install-Package Mythosia.Azure.Storage.Blobs -Version 1.0.1                
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="Mythosia.Azure.Storage.Blobs" Version="1.0.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Mythosia.Azure.Storage.Blobs --version 1.0.1                
#r "nuget: Mythosia.Azure.Storage.Blobs, 1.0.1"                
#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 Mythosia.Azure.Storage.Blobs as a Cake Addin
#addin nuget:?package=Mythosia.Azure.Storage.Blobs&version=1.0.1

// Install Mythosia.Azure.Storage.Blobs as a Cake Tool
#tool nuget:?package=Mythosia.Azure.Storage.Blobs&version=1.0.1                

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 61 9/9/2024
1.0.1 67 9/6/2024
1.0.0 77 9/5/2024