Share via


AzureTableOutputDataSource Constructors

Definition

Overloads

AzureTableOutputDataSource()

Initializes a new instance of the AzureTableOutputDataSource class.

AzureTableOutputDataSource(String, String, String, String, String, IList<String>, Nullable<Int32>)

Initializes a new instance of the AzureTableOutputDataSource class.

AzureTableOutputDataSource()

Initializes a new instance of the AzureTableOutputDataSource class.

public AzureTableOutputDataSource ();
Public Sub New ()

Applies to

AzureTableOutputDataSource(String, String, String, String, String, IList<String>, Nullable<Int32>)

Initializes a new instance of the AzureTableOutputDataSource class.

public AzureTableOutputDataSource (string accountName = default, string accountKey = default, string table = default, string partitionKey = default, string rowKey = default, System.Collections.Generic.IList<string> columnsToRemove = default, int? batchSize = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.AzureTableOutputDataSource : string * string * string * string * string * System.Collections.Generic.IList<string> * Nullable<int> -> Microsoft.Azure.Management.StreamAnalytics.Models.AzureTableOutputDataSource
Public Sub New (Optional accountName As String = Nothing, Optional accountKey As String = Nothing, Optional table As String = Nothing, Optional partitionKey As String = Nothing, Optional rowKey As String = Nothing, Optional columnsToRemove As IList(Of String) = Nothing, Optional batchSize As Nullable(Of Integer) = Nothing)

Parameters

accountName
String

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

accountKey
String

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

table
String

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

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.

columnsToRemove
IList<String>

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

batchSize
Nullable<Int32>

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

Applies to