OptionalclientA pre-built BlobServiceClient. When given, connect() uses it directly and never loads the SDK.
OptionalconnectionAzure Storage connection string, e.g. DefaultEndpointsProtocol=https;AccountName=...;AccountKey=...;.
OptionalaccountStorage account name (used with accountKey to synthesize a connection string).
OptionalaccountStorage account key (used with account).
OptionalendpointEndpoint suffix for the synthesized connection string. Defaults to core.windows.net.
Connection options for
AzureBlobStore.Provide exactly one of:
client: a pre-builtBlobServiceClient(used as-is; the SDK is notrequire()d — this is how tests inject a mock).connectionString: an Azure Storage connection string, used to build a client viaBlobServiceClient.fromConnectionString(...).account+accountKey: builds a connection string from an account name and key (convenience overconnectionString).