Bulk
yaml
type: "io.kestra.plugin.azure.storage.table.bulk"
Examples
yaml
id: azure_storage_table_bulk
namespace: company.team
tasks:
- id: bulk
type: io.kestra.plugin.azure.storage.table.Bulk
endpoint: "https://yourstorageaccount.blob.core.windows.net"
connectionString: "DefaultEndpointsProtocol=...=="
table: "table_name"
from:
- partitionKey: "color"
rowKey: "green"
type: "UPSERT_MERGE"
properties:
"code": "00FF00"
Properties
endpoint *Requiredstring
from *Requiredobject
table *Requiredstring
connectionString string
defaultType string
Default
UPSERT_REPLACE
Possible Values
CREATE
UPSERT_MERGE
UPSERT_REPLACE
UPDATE_MERGE
UPDATE_REPLACE
DELETE