list
List blob objects in an Azure Blob Storage container.
List blob objects in an Azure Blob Storage container.
List blob objects in an Azure Blob Storage container.
type: "io.kestra.plugin.azure.storage.blob.list"Examples
id: azure_storage_blob_list
namespace: company.team
tasks:
- id: list
type: io.kestra.plugin.azure.storage.blob.List
endpoint: "https://yourblob.blob.core.windows.net"
connectionString: "DefaultEndpointsProtocol=...=="
container: "mydata"
prefix: "sub-dir"
delimiter: "/"
Properties
container*Requiredstring
The blob container.
endpoint*Requiredstring
The blob service endpoint.
connectionStringstring
Connection string of the Storage Account.
delimiterstring
The delimiter for blob hierarchy, "/" for hierarchy based on directories.
filterstring
FILESFILESDIRECTORYBOTHThe filter for files or directories.
prefixstring
Limits the response to keys that begin with the specified prefix.
regexpstring
A regular expression to filter on the full key.
ex:
regExp: .* to match all files
regExp: .*2020-01-0.\\.csv to match files between 01 and 09 of January ending with .csv
sasTokenstring
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
blobsarray
The list of blobs.
io.kestra.plugin.azure.storage.blob.models.Blob
date-timeuriMetrics
blobs.countcounter
The total number of blobs listed.