Get Get

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

Gets an entity from the Azure Storage Table.

Examples

yaml
id: "get"
type: "io.kestra.plugin.azure.storage.table.Get"
endpoint: "https://yourstorageaccount.table.core.windows.net"
connectionString: "DefaultEndpointsProtocol=...=="
table: "table_name"
partitionKey: "color"
rowKey: "green"

Properties

endpoint

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

The blob service endpoint.

partitionKey

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

The partition key of the entity.

table

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

The Azure Storage Table name.

connectionString

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

Connection string of the Storage Account.

rowKey

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

The row key of the entity.

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.

sharedKeyAccountAccessKey

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

Shared Key access key for authenticating requests.

sharedKeyAccountName

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

Shared Key account name for authenticating requests.

Outputs

row

  • Type: Entity
  • Dynamic:
  • Required:

The entity retrieved from the table.

Definitions

io.kestra.plugin.azure.storage.table.models.Entity

Properties

etag
  • Type: string
  • Dynamic:
  • Required:
partitionKey
  • Type: string
  • Dynamic:
  • Required:
properties
  • Type: object
  • Dynamic:
  • Required:
rowKey
  • Type: string
  • Dynamic:
  • Required:
timestamp
  • Type: string
  • Dynamic:
  • Required:
  • Format: date-time
type
  • Type: string
  • Dynamic:
  • Required:
  • Possible Values:
    • CREATE
    • UPSERT_MERGE
    • UPSERT_REPLACE
    • UPDATE_MERGE
    • UPDATE_REPLACE
    • DELETE