TableOutput Interface
Definition
Place this on a parameter whose value would be written to a storage table. The parameter type should be OutputBinding, where T could be one of:
- Any native Java types such as int, String, byte[]
- Any POJO type
public interface TableOutput implements Annotation
- Implements
-
java.lang.annotation.Annotation
Methods
| connection() |
Defines the app setting name that contains the Azure Storage connection string. |
| dataType() |
Defines how Functions runtime should treat the parameter value. Possible values are:
|
| name() |
The variable name used in function.json. |
| partitionKey() |
Defines the partition key of the storage table to which to write. |
| rowKey() |
Defines the row key of the storage table to which to write. |
| tableName() |
Defines the name of the storage table to which to write. |