EventGridTrigger インターフェイス
public interface EventGridTrigger
EventGridTrigger(name = "event") String content, final ExecutionContext context ) { context.getLogger().info(content); }
メソッドの概要
修飾子と型 | メソッドと説明 |
---|---|
String |
dataType()
Functions ランタイムがパラメーター値をどのように扱うかを定義します。 次のいずれかの値になります。
|
String |
name()
function.json で使用される変数名。 |
メソッドの詳細
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:
Functions ランタイムによって使用される dataType。
name
public String name()
function.json で使用される変数名。
Returns:
function.json で使用される変数名。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for Java