次の方法で共有


AzureTableOutputDataSource コンストラクター

定義

オーバーロード

AzureTableOutputDataSource()

AzureTableOutputDataSource クラスの新しいインスタンスを初期化します。

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

AzureTableOutputDataSource クラスの新しいインスタンスを初期化します。

AzureTableOutputDataSource()

AzureTableOutputDataSource クラスの新しいインスタンスを初期化します。

public AzureTableOutputDataSource ();
Public Sub New ()

適用対象

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

AzureTableOutputDataSource クラスの新しいインスタンスを初期化します。

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)

パラメーター

accountName
String

Azure ストレージ アカウントの名前。 PUT (CreateOrReplace) 要求で必須。

accountKey
String

Azure Storage アカウントのアカウント キー。 PUT (CreateOrReplace) 要求で必須。

table
String

Azure テーブルの名前。 PUT (CreateOrReplace) 要求で必須。

partitionKey
String

この要素は、Azure Table のパーティション キーとして使用されるクエリの SELECT ステートメントの列の名前を示します。 PUT (CreateOrReplace) 要求で必須。

rowKey
String

この要素は、Azure Table の行キーとして使用されるクエリの SELECT ステートメントの列の名前を示します。 PUT (CreateOrReplace) 要求で必須。

columnsToRemove
IList<String>

指定されている場合、配列の各項目は出力イベント エンティティから (存在する場合) 削除される列の名前になります。

batchSize
Nullable<Int32>

一度に Azure Table に書き込む行数。

適用対象