Get an entity from an Azure Storage Table.
yaml
type: "io.kestra.plugin.azure.storage.table.Get"
Examples
yaml
id: azure_storage_table_get
namespace: company.team
tasks:
- 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 *Requiredstring
The blob service endpoint.
partitionKey *Requiredstring
The partition key of the entity.
table *Requiredstring
The Azure Storage Table name.
connectionString string
Connection string of the Storage Account.
rowKey string
The row key of the entity.
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
row Entity
The entity retrieved from the table.
Definitions
io.kestra.plugin.azure.storage.table.models.Entity
etag string
partitionKey string
properties object
rowKey string
timestamp string
Format
date-time
type string
Possible Values
CREATE
UPSERT_MERGE
UPSERT_REPLACE
UPDATE_MERGE
UPDATE_REPLACE
DELETE