AzureTableOutputDataSource Class

Describes an Azure Table output data source.

All required parameters must be populated in order to send to Azure.

Inheritance
azure.mgmt.streamanalytics.models._models_py3.OutputDataSource
AzureTableOutputDataSource

Constructor

AzureTableOutputDataSource(*, account_name: Optional[str] = None, account_key: Optional[str] = None, table: Optional[str] = None, partition_key: Optional[str] = None, row_key: Optional[str] = None, columns_to_remove: Optional[List[str]] = None, batch_size: Optional[int] = None, **kwargs)

Parameters

type
str
Required

Required. Indicates the type of data source output will be written to. Required on PUT (CreateOrReplace) requests.Constant filled by server.

account_name
str
Required

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

account_key
str
Required

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

table
str
Required

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

partition_key
str
Required

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.

row_key
str
Required

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.

columns_to_remove
list[str]
Required

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

batch_size
int
Required

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