Download
Download a file from Azure Blob Storage.
yaml
type: "io.kestra.plugin.azure.storage.blob.Download"
Examples
yaml
id: azure_storage_blob_download
namespace: company.team
tasks:
- id: download
type: io.kestra.plugin.azure.storage.blob.Download
endpoint: "https://yourblob.blob.core.windows.net"
connectionString: "DefaultEndpointsProtocol=...=="
container: "mydata"
name: "myblob"
Properties
container *Requiredstring
The blob container.
endpoint *Requiredstring
The blob service endpoint.
name *Requiredstring
The full blob path on the container.
connectionString string
Connection string of the Storage Account.
sasToken string
The SAS token to use for authenticating requests.
This string should only be the query parameters (with or without a leading '?') and not a full URL.
Outputs
blob Blob
The downloaded blob.
Definitions
io.kestra.plugin.azure.storage.blob.models.Blob
container string
name string
size integer
uri string
Format
uri