List List

yaml
type: "io.kestra.plugin.azure.storage.table.List"

Lists entities using the parameters in the provided options.

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.

Examples

yaml
id: "list"
type: "io.kestra.plugin.azure.storage.table.List"
endpoint: "https://yourblob.blob.core.windows.net"
connectionString: "DefaultEndpointsProtocol=...=="
table: "mydata"

Properties

endpoint

  • Type: string
  • Dynamic: ✔️
  • Required: ✔️

The blob service endpoint.

additionally parses it for information (SAS token)

table

  • Type: string
  • Dynamic: ✔️
  • Required: ✔️

The table name

connectionString

  • Type: string
  • Dynamic: ✔️
  • Required:

Connection string of the storage account.

filter

  • Type: string
  • Dynamic: ✔️
  • Required:

Returns only tables or entities that satisfy the specified filter.

using Filter Strings

sasToken

  • Type: string
  • Dynamic: ✔️
  • Required:

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.

select

  • Type: array
  • SubType: string
  • Dynamic: ✔️
  • Required:

Returns the desired properties of an entity from the set.

sharedKeyAccountAccessKey

  • Type: string
  • Dynamic: ✔️
  • Required:

Shared Key access key for authenticating requests

sharedKeyAccountName

  • Type: string
  • Dynamic: ✔️
  • Required:

Shared Key account name for authenticating requests

top

  • Type: integer
  • Dynamic: ✔️
  • Required:

Returns only the top n tables or entities from the set.

Outputs

count

  • Type: integer

Number of entity

uri

  • Type: string

URI of a kestra internal storage file