AzureTableOutputDataSourceArgs

data class AzureTableOutputDataSourceArgs(val accountKey: Output<String>? = null, val accountName: Output<String>? = null, val batchSize: Output<Int>? = null, val columnsToRemove: Output<List<String>>? = null, val partitionKey: Output<String>? = null, val rowKey: Output<String>? = null, val table: Output<String>? = null, val type: Output<String>) : ConvertibleToJava<AzureTableOutputDataSourceArgs>

Describes an Azure Table output data source.

Constructors

Link copied to clipboard
constructor(accountKey: Output<String>? = null, accountName: Output<String>? = null, batchSize: Output<Int>? = null, columnsToRemove: Output<List<String>>? = null, partitionKey: Output<String>? = null, rowKey: Output<String>? = null, table: Output<String>? = null, type: Output<String>)

Properties

Link copied to clipboard
val accountKey: Output<String>? = null

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

Link copied to clipboard
val accountName: Output<String>? = null

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

Link copied to clipboard
val batchSize: Output<Int>? = null

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

Link copied to clipboard
val columnsToRemove: Output<List<String>>? = null

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

Link copied to clipboard
val partitionKey: Output<String>? = null

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.

Link copied to clipboard
val rowKey: Output<String>? = null

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.

Link copied to clipboard
val table: Output<String>? = null

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

Link copied to clipboard
val type: Output<String>

Indicates the type of data source output will be written to. Required on PUT (CreateOrReplace) requests. Expected value is 'Microsoft.Storage/Table'.

Functions

Link copied to clipboard
open override fun toJava(): AzureTableOutputDataSourceArgs