
List
List entities from an Azure Table Storage table.
If the filter parameter in the options is set, only entities matching the filter will be returned.
If the select parameter is set, only the properties included in the select parameter will be returned for each entity.
If the top parameter is set, the maximum number of returned entities per page will be limited to that value.
type: "io.kestra.plugin.azure.storage.table.List"Examples
id: azure_storage_table_list
namespace: company.team
tasks:
- id: list
type: io.kestra.plugin.azure.storage.table.List
endpoint: "https://yourstorageaccount.table.core.windows.net"
connectionString: "DefaultEndpointsProtocol=...=="
table: "table_name"
Properties
endpoint*Requiredstring
The blob service endpoint.
table*Requiredstring
The Azure Table Storage table name.
connectionStringstring
Connection string of the Storage Account.
filterstring
Returns only tables or entities that satisfy the specified filter.
You can specify the filter using Filter Strings.
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.
selectarray
The desired properties of an entity from the Azure Table Storage table.
topintegerstring
List the top n tables or entities from the Azure Table Storage table.
Outputs
countinteger
Number of listed entities.
uristring
uriURI of the Kestra internal storage file containing the output.
Metrics
records.countcounter
The total number of entities listed.