delete
Delete an entity in an Azure Table Storage table.
delete
Delete an entity in an Azure Table Storage table.
Delete an entity in an Azure Table Storage table.
yaml
type: "io.kestra.plugin.azure.storage.table.delete"Examples
yaml
id: azure_storage_table_delete
namespace: company.team
tasks:
- id: delete
type: io.kestra.plugin.azure.storage.table.Delete
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.
rowKey*Requiredstring
The row key of the entity.
table*Requiredstring
The Azure Table Storage table name.
connectionStringstring
Connection string of the Storage Account.
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.