BlobTrigger インターフェイス
public interface BlobTrigger
BindingName("name") String filename, final ExecutionContext context ) { context.getLogger().info("Name: " + filename + ", Size: " + content.length + "bytes"); }
メソッドの概要
修飾子と型 | メソッドと説明 |
---|---|
String |
connection()
Azure Storage 接続文字列を含むアプリ設定名を定義します。 |
String |
dataType()
Functions ランタイムがパラメーター値をどのように扱うかを定義します。 次のいずれかの値になります。
|
String |
name()
function.json で使用される変数名。 |
String |
path()
バインド先の BLOB のパスを定義します。 |
String |
source()
使用する BLOB トリガーの種類を指定するパラメーターを定義します(イベント グリッド BLOB トリガーの EventGrid など)。 |
メソッドの詳細
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:
name
public String name()
function.json で使用される変数名。
Returns:
path
public String path()
バインド先の BLOB のパスを定義します。
Returns:
source
public String source() default ""
使用する BLOB トリガーの種類を指定するパラメーターを定義します(イベント グリッド BLOB トリガーの EventGrid など)。
Returns:
適用対象
Azure SDK for Java