mirror of https://github.com/dapr/docs.git
add metadata to event hubs binding spec
Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
This commit is contained in:
parent
021bc388e1
commit
c112151ae9
|
@ -58,6 +58,8 @@ spec:
|
||||||
- name: storageConnectionString
|
- name: storageConnectionString
|
||||||
value: "DefaultEndpointsProtocol=https;AccountName=<account>;AccountKey=<account-key>"
|
value: "DefaultEndpointsProtocol=https;AccountName=<account>;AccountKey=<account-key>"
|
||||||
# Optional metadata
|
# Optional metadata
|
||||||
|
- name: getAllMessageProperties
|
||||||
|
value: "true"
|
||||||
- name: direction
|
- name: direction
|
||||||
value: "input, output"
|
value: "input, output"
|
||||||
```
|
```
|
||||||
|
@ -84,6 +86,7 @@ The above example uses secrets as plain strings. It is recommended to use a secr
|
||||||
| `storageAccountKey` | Y* | Input | Storage account key for the checkpoint store account.<br>* When using Microsoft Entra ID, it's possible to omit this if the service principal has access to the storage account too. | `"112233445566778899"`
|
| `storageAccountKey` | Y* | Input | Storage account key for the checkpoint store account.<br>* When using Microsoft Entra ID, it's possible to omit this if the service principal has access to the storage account too. | `"112233445566778899"`
|
||||||
| `storageConnectionString` | Y* | Input | Connection string for the checkpoint store, alternative to specifying `storageAccountKey` | `"DefaultEndpointsProtocol=https;AccountName=myeventhubstorage;AccountKey=<account-key>"`
|
| `storageConnectionString` | Y* | Input | Connection string for the checkpoint store, alternative to specifying `storageAccountKey` | `"DefaultEndpointsProtocol=https;AccountName=myeventhubstorage;AccountKey=<account-key>"`
|
||||||
| `storageContainerName` | Y | Input | Storage container name for the storage account name. | `"myeventhubstoragecontainer"`
|
| `storageContainerName` | Y | Input | Storage container name for the storage account name. | `"myeventhubstoragecontainer"`
|
||||||
|
| `getAllMessageProperties` | N | Input | When set to `true`, retrieves all message properties and includes them in the returned event metadata. Default setting is `"false"`. | `"true"`, `"false"`
|
||||||
| `direction` | N | Input/Output | The direction of the binding. | `"input"`, `"output"`, `"input, output"`
|
| `direction` | N | Input/Output | The direction of the binding. | `"input"`, `"output"`, `"input, output"`
|
||||||
|
|
||||||
### Microsoft Entra ID authentication
|
### Microsoft Entra ID authentication
|
||||||
|
|
Loading…
Reference in New Issue