Share via


TableOutput インターフェイス

public interface TableOutput

この値を、ストレージ テーブルに書き込むパラメーターに配置します。 パラメーターの型は OutputBinding<T> である必要があります。T は次のいずれかになります。

    <li>
    
      <p>Any native Java types such as int, String, byte[] </p>
    
    </li>
    
    <li>
    
      <p>Any POJO type </p>
    
    </li>
    

メソッドの概要

修飾子と型 メソッドと説明
String connection()

Azure Storage 接続文字列を含むアプリ設定名を定義します。

String dataType()

Functions ランタイムがパラメーター値をどのように扱うかを定義します。 次のいずれかの値になります。

    <li>
    
      <p>"" or string: treat it as a string whose value is serialized from the parameter </p>
    
    </li>
    
    <li>
    
      <p>binary: treat it as a binary data whose value comes from for example OutputBinding&lt;byte[]&gt; </p>
    
    </li>
    

String name()

function.json で使用される変数名。

String partitionKey()

書き込むストレージ テーブルのパーティション キーを定義します。

String rowKey()

書き込むストレージ テーブルの行キーを定義します。

String tableName()

書き込むストレージ テーブルの名前を定義します。

メソッドの詳細

connection

public String connection() default ""

Azure Storage 接続文字列を含むアプリ設定名を定義します。

Returns:

接続文字列のアプリ設定名。

dataType

public String dataType() default ""

Functions ランタイムがパラメーター値をどのように扱うかを定義します。 次のいずれかの値になります。

    <li>
    
      <p>"" or string: treat it as a string whose value is serialized from the parameter </p>
    
    </li>
    
    <li>
    
      <p>binary: treat it as a binary data whose value comes from for example OutputBinding&lt;byte[]&gt; </p>
    
    </li>
    

Returns:

Functions ランタイムによって使用される dataType。

name

public String name()

function.json で使用される変数名。

Returns:

function.json で使用される変数名。

partitionKey

public String partitionKey() default ""

書き込むストレージ テーブルのパーティション キーを定義します。

Returns:

ストレージ テーブルのパーティション キー文字列。

rowKey

public String rowKey() default ""

書き込むストレージ テーブルの行キーを定義します。

Returns:

ストレージ テーブルの行キー文字列。

tableName

public String tableName()

書き込むストレージ テーブルの名前を定義します。

Returns:

ストレージ テーブル名の文字列。

適用対象