TableInput インターフェイス
public interface TableInput
TableInput(name = "items", tableName = "mytablename", partitionKey = "myparkey", connection = "myconnvarname") MyItem[] items ) { return items.length; }
メソッドの概要
修飾子と型 | メソッドと説明 |
---|---|
String |
connection()
Azure Storage 接続文字列を含むアプリ設定名を定義します。 |
String |
dataType()
Functions ランタイムがパラメーター値をどのように扱うかを定義します。 次のいずれかの値になります。
|
String |
filter()
バインド先のストレージ テーブルのフィルターを定義します。 |
String |
name()
function.json で使用される変数名。 |
String |
partitionKey()
バインド先のストレージ テーブルのパーティション キーを定義します。 |
String |
rowKey()
バインド先のストレージ テーブルの行キーを定義します。 |
String |
tableName()
バインド先のストレージ テーブルの名前を定義します。 |
String |
take()
バインド先のストレージ テーブルから取得する行数を定義します。 |
メソッドの詳細
connection
public String connection() default ""
Azure Storage 接続文字列を含むアプリ設定名を定義します。
Returns:
dataType
public String dataType() default ""
Functions ランタイムがパラメーター値をどのように扱うかを定義します。 次のいずれかの値になります。
<li>
<p>"": get the value as a string, and try to deserialize to actual parameter type like POJO </p>
</li>
<li>
<p>string: always get the value as a string </p>
</li>
<li>
<p>binary: get the value as a binary data, and try to deserialize to actual parameter type byte[] </p>
</li>
Returns:
filter
public String filter() default ""
バインド先のストレージ テーブルのフィルターを定義します。
Returns:
name
public String name()
function.json で使用される変数名。
Returns:
partitionKey
public String partitionKey() default ""
バインド先のストレージ テーブルのパーティション キーを定義します。
Returns:
rowKey
public String rowKey() default ""
バインド先のストレージ テーブルの行キーを定義します。
Returns:
tableName
public String tableName()
バインド先のストレージ テーブルの名前を定義します。
Returns:
take
public String take() default ""
バインド先のストレージ テーブルから取得する行数を定義します。
Returns:
適用対象
Azure SDK for Java