Skip to content

Commit 4e4c37f

Browse files
authored
(AzureCXP) fixes MicrosoftDocs/azure-docs#106724
1 parent 4a5d4bb commit 4e4c37f

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

articles/azure-functions/functions-bindings-storage-table-input.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -896,12 +896,13 @@ In the [Java functions runtime library](/java/api/overview/azure/functions/runti
896896

897897
| Element |Description|
898898
|---------|---------|
899-
| **[TableInputName](/java/api/com.microsoft.azure.functions.annotation.tableinput.name)** | The name of the table. |
900-
**[PartitionKey](/java/api/com.microsoft.azure.functions.annotation.tableinput.partitionkey)** |Optional. The partition key of the table entity to read. |
901-
|**[RowKey](/java/api/com.microsoft.azure.functions.annotation.tableinput.rowkey)** | The row key of the table entity to read. |
902-
|**[Take](/java/api/com.microsoft.azure.functions.annotation.tableinput.take)** | Optional. The maximum number of entities to read.|
903-
|**[Filter](/java/api/com.microsoft.azure.functions.annotation.tableinput.filter)** | Optional. An OData filter expression for table input. |
904-
|**[Connection](/java/api/com.microsoft.azure.functions.annotation.tableinput.connection)** | The name of an app setting or setting collection that specifies how to connect to the table service. See [Connections](#connections). |
899+
|**[name](/java/api/com.microsoft.azure.functions.annotation.tableinput.name)** | The name of the variable that represents the table or entity in function code.|
900+
|**[tableName](/java/api/com.microsoft.azure.functions.annotation.tableinput.tableName)** | The name of the table.|
901+
**[partitionKey](/java/api/com.microsoft.azure.functions.annotation.tableinput.partitionkey)** |Optional. The partition key of the table entity to read. |
902+
|**[rowKey](/java/api/com.microsoft.azure.functions.annotation.tableinput.rowkey)** |Optional. The row key of the table entity to read.|
903+
|**[take](/java/api/com.microsoft.azure.functions.annotation.tableinput.take)** | Optional. The maximum number of entities to read.|
904+
|**[filter](/java/api/com.microsoft.azure.functions.annotation.tableinput.filter)** | Optional. An OData filter expression for table input.|
905+
|**[connection](/java/api/com.microsoft.azure.functions.annotation.tableinput.connection)** | The name of an app setting or setting collection that specifies how to connect to the table service. See [Connections](#connections). |
905906

906907
::: zone-end
907908
::: zone pivot="programming-language-javascript,programming-language-powershell,programming-language-python"

0 commit comments

Comments
 (0)