Insert or update entities in an Azure Storage Table.
Make sure to pass either a list of entities or a file with a list of entities.
type: "io.kestra.plugin.azure.storage.table.bulk"Examples
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
The blob service endpoint.
from*Requiredstringarrayobject
Structured data items, either as a map, a list of map, a URI, or a JSON string.
Structured data items can be defined in the following ways:
- A single item as a map (a document).
- A list of items as a list of maps (a list of documents).
- A URI, supported schemes are
kestrafor internal storage files,filefor host local files, andnsfilefor namespace files. - A JSON String that will then be serialized either as a single item or a list of items.
table*Requiredstring
The Azure Storage Table name.
connectionStringstring
Connection string of the Storage Account.
defaultTypestring
UPSERT_REPLACECREATEUPSERT_MERGEUPSERT_REPLACEUPDATE_MERGEUPDATE_REPLACEDELETEThe default operation type to be applied to the entity.
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.
Outputs
countinteger
Number of entities created.
Metrics
records.countcounter
The total number of entities processed in the bulk operation.