88 строки
4.9 KiB
YAML
88 строки
4.9 KiB
YAML
### YamlMime:JavaType
|
|
uid: "com.microsoft.azure.functions.annotation.TableOutput"
|
|
fullName: "com.microsoft.azure.functions.annotation.TableOutput"
|
|
name: "TableOutput"
|
|
nameWithType: "TableOutput"
|
|
summary: "Place this on a parameter whose value would be written to a storage table."
|
|
syntax: "public interface **TableOutput**</br> implements <xref href=\"java.lang.annotation.Annotation?alt=java.lang.annotation.Annotation&text=Annotation\" data-throw-if-not-resolved=\"False\" />"
|
|
methods:
|
|
- uid: "com.microsoft.azure.functions.annotation.TableOutput.connection()"
|
|
fullName: "com.microsoft.azure.functions.annotation.TableOutput.connection()"
|
|
name: "connection()"
|
|
nameWithType: "TableOutput.connection()"
|
|
summary: "Defines the app setting name that contains the Azure Storage connection string."
|
|
modifiers:
|
|
- "abstract"
|
|
syntax: "public abstract String connection()"
|
|
desc: "Defines the app setting name that contains the Azure Storage connection string."
|
|
returns:
|
|
description: "The app setting name of the connection string."
|
|
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
|
|
- uid: "com.microsoft.azure.functions.annotation.TableOutput.dataType()"
|
|
fullName: "com.microsoft.azure.functions.annotation.TableOutput.dataType()"
|
|
name: "dataType()"
|
|
nameWithType: "TableOutput.dataType()"
|
|
summary: "Defines how Functions runtime should treat the parameter value."
|
|
modifiers:
|
|
- "abstract"
|
|
syntax: "public abstract String dataType()"
|
|
desc: "Defines how Functions runtime should treat the parameter value. Possible values are:\n\n * \"\" or string: treat it as a string whose value is serialized from the parameter\n * binary: treat it as a binary data whose value comes from for example OutputBinding<byte\\[\\]>"
|
|
returns:
|
|
description: "The dataType which will be used by the Functions runtime."
|
|
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
|
|
- uid: "com.microsoft.azure.functions.annotation.TableOutput.name()"
|
|
fullName: "com.microsoft.azure.functions.annotation.TableOutput.name()"
|
|
name: "name()"
|
|
nameWithType: "TableOutput.name()"
|
|
summary: "The variable name used in function.<wbr>json."
|
|
modifiers:
|
|
- "abstract"
|
|
syntax: "public abstract String name()"
|
|
desc: "The variable name used in function.json."
|
|
returns:
|
|
description: "The variable name used in function.json."
|
|
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
|
|
- uid: "com.microsoft.azure.functions.annotation.TableOutput.partitionKey()"
|
|
fullName: "com.microsoft.azure.functions.annotation.TableOutput.partitionKey()"
|
|
name: "partitionKey()"
|
|
nameWithType: "TableOutput.partitionKey()"
|
|
summary: "Defines the partition key of the storage table to which to write."
|
|
modifiers:
|
|
- "abstract"
|
|
syntax: "public abstract String partitionKey()"
|
|
desc: "Defines the partition key of the storage table to which to write."
|
|
returns:
|
|
description: "The storage table partition key string."
|
|
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
|
|
- uid: "com.microsoft.azure.functions.annotation.TableOutput.rowKey()"
|
|
fullName: "com.microsoft.azure.functions.annotation.TableOutput.rowKey()"
|
|
name: "rowKey()"
|
|
nameWithType: "TableOutput.rowKey()"
|
|
summary: "Defines the row key of the storage table to which to write."
|
|
modifiers:
|
|
- "abstract"
|
|
syntax: "public abstract String rowKey()"
|
|
desc: "Defines the row key of the storage table to which to write."
|
|
returns:
|
|
description: "The storage table row key string."
|
|
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
|
|
- uid: "com.microsoft.azure.functions.annotation.TableOutput.tableName()"
|
|
fullName: "com.microsoft.azure.functions.annotation.TableOutput.tableName()"
|
|
name: "tableName()"
|
|
nameWithType: "TableOutput.tableName()"
|
|
summary: "Defines the name of the storage table to which to write."
|
|
modifiers:
|
|
- "abstract"
|
|
syntax: "public abstract String tableName()"
|
|
desc: "Defines the name of the storage table to which to write."
|
|
returns:
|
|
description: "The storage table name string."
|
|
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
|
|
type: "interface"
|
|
desc: "Place this on a parameter whose value would be written to a storage table. The parameter type should be OutputBinding<T>, where T could be one of:\n\n * Any native Java types such as int, String, byte\\[\\]\n * Any POJO type"
|
|
implements:
|
|
- "<xref href=\"java.lang.annotation.Annotation?alt=java.lang.annotation.Annotation&text=Annotation\" data-throw-if-not-resolved=\"False\" />"
|
|
metadata: {}
|
|
package: "com.microsoft.azure.functions.annotation"
|
|
artifact: com.microsoft.azure.functions:azure-functions-java-library:1.3.1
|