你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

TableInput 接口

public interface TableInput

TableInput (name = “items”, tableName = “mytablename”, partitionKey = “myparkey”, connection = “myconnvarname”) MyItem[] 项 ) { return items.length; }

方法摘要

修饰符和类型 方法和描述
String connection()

定义包含 Azure 存储连接字符串的应用设置名称。

String dataType()

定义 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>
    

String filter()

定义要绑定到的存储表的筛选器。

String name()

function.json 中使用的变量名称。

String partitionKey()

定义要绑定到的存储表的分区键。

String rowKey()

定义要绑定到的存储表的行键。

String tableName()

定义要绑定到的存储表的名称。

String take()

定义要从要绑定到的存储表中检索的行数。

方法详细信息

connection

public String connection() default ""

定义包含 Azure 存储连接字符串的应用设置名称。

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:

将由 Functions 运行时使用的 dataType。

filter

public String filter() default ""

定义要绑定到的存储表的筛选器。

Returns:

存储表筛选器字符串。

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:

存储表名称字符串。

take

public String take() default ""

定义要从要绑定到的存储表中检索的行数。

Returns:

检索行号字符串的存储表。

适用于