TableInputOptions interface
Properties
connection | An app setting (or environment variable) with the storage connection string to be used by this table input |
filter | An OData filter expression for the entities to return from the table. Can't be used with |
partition |
The partition key of the table entity to read. |
row |
The row key of the table entity to read. Can't be used with |
table |
The table name |
take | The maximum number of entities to return. Can't be used with |
Property Details
connection
An app setting (or environment variable) with the storage connection string to be used by this table input
connection: string
Property Value
string
filter
An OData filter expression for the entities to return from the table. Can't be used with rowKey
.
filter?: string
Property Value
string
partitionKey
The partition key of the table entity to read.
partitionKey?: string
Property Value
string
rowKey
The row key of the table entity to read. Can't be used with take
or filter
.
rowKey?: string
Property Value
string
tableName
The table name
tableName: string
Property Value
string
take
The maximum number of entities to return. Can't be used with rowKey
take?: number
Property Value
number