@Retention(value=RUNTIME) @Target(value={PARAMETER,METHOD}) public @interface TableOutput
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:
| Modifier and Type | Required Element and Description |
|---|---|
String |
name
The variable name used in function.json.
|
String |
tableName
Defines the name of the storage table to which to write.
|
| Modifier and Type | Optional Element and Description |
|---|---|
String |
connection
Defines the app setting name that contains the Azure Storage connection string.
|
String |
dataType
Defines how Functions runtime should treat the parameter value.
|
String |
partitionKey
Defines the partition key of the storage table to which to write.
|
String |
rowKey
Defines the row key of the storage table to which to write.
|
public abstract String name
public abstract String tableName
public abstract String dataType
Defines how Functions runtime should treat the parameter value. Possible values are:
public abstract String partitionKey
public abstract String rowKey
public abstract String connection
Copyright © 2022. All rights reserved.