Package version:

Interface AzureTableOutputDataSource

Describes an Azure Table output data source.

interface AzureTableOutputDataSource {
    accountKey?: string;
    accountName?: string;
    batchSize?: number;
    columnsToRemove?: string[];
    partitionKey?: string;
    rowKey?: string;
    table?: string;
    type: "Microsoft.Storage/Table";
}

Hierarchy (view full)

Properties

accountKey?: string

The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.

accountName?: string

The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.

batchSize?: number

The number of rows to write to the Azure Table at a time.

columnsToRemove?: string[]

If specified, each item in the array is the name of a column to remove (if present) from output event entities.

partitionKey?: string

This element indicates the name of a column from the SELECT statement in the query that will be used as the partition key for the Azure Table. Required on PUT (CreateOrReplace) requests.

rowKey?: string

This element indicates the name of a column from the SELECT statement in the query that will be used as the row key for the Azure Table. Required on PUT (CreateOrReplace) requests.

table?: string

The name of the Azure Table. Required on PUT (CreateOrReplace) requests.

type: "Microsoft.Storage/Table"

Polymorphic discriminator, which specifies the different types this object can be

Generated using TypeDoc