Azure Delete

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.Delete
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

Service endpoint URL

Base HTTPS endpoint of the target service.

Partition key to delete

Partition key of the entity to delete.

Row key to delete

Row key of the entity to delete.

Target Azure table name

Existing Azure Table Storage table to operate on; case-insensitive.

Connection string of the Storage Account.

Reference (ref) of the pluginDefaults to apply to this task.

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.

Shared Key access key for authenticating requests.

Shared Key account name for authenticating requests.