
Azure Delete
CertifiedDelete one Table entity
Azure Delete
Certified
Delete one Table entity
Removes an entity by partitionKey and rowKey. Uses unconditional delete (no ETag check); fails if the entity is missing.
yaml
type: io.kestra.plugin.azure.storage.table.DeleteExamples
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
Service endpoint URL
Base HTTPS endpoint of the target service.
partitionKey *Requiredstring
Partition key to delete
Partition key of the entity to delete.
rowKey *Requiredstring
Row key to delete
Row key of the entity to delete.
table *Requiredstring
Target Azure table name
Existing Azure Table Storage table to operate on; case-insensitive.
connectionString string
Connection string of the Storage Account.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
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.