mirror of https://github.com/dapr/docs.git
Merge branch 'v1.15' into issue_4522
This commit is contained in:
commit
dbdd7433f6
File diff suppressed because it is too large
Load Diff
|
@ -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 user/app/custom properties from the Event Hub message and forwards 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
|
||||||
|
|
|
@ -0,0 +1,45 @@
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
|
{{ hugo.Generator }}
|
||||||
|
{{ range .AlternativeOutputFormats -}}
|
||||||
|
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink | safeURL }}">
|
||||||
|
{{ end -}}
|
||||||
|
|
||||||
|
{{ $outputFormat := partial "outputformat.html" . -}}
|
||||||
|
{{ if and hugo.IsProduction (ne $outputFormat "print") -}}
|
||||||
|
<meta name="robots" content="index, follow">
|
||||||
|
{{ else -}}
|
||||||
|
<meta name="robots" content="noindex, nofollow">
|
||||||
|
{{ end -}}
|
||||||
|
|
||||||
|
{{ partialCached "favicons.html" . }}
|
||||||
|
<title>
|
||||||
|
{{- if .IsHome -}}
|
||||||
|
{{ .Site.Title -}}
|
||||||
|
{{ else -}}
|
||||||
|
{{ with .Title }}{{ . }} | {{ end -}}
|
||||||
|
{{ .Site.Title -}}
|
||||||
|
{{ end -}}
|
||||||
|
</title>
|
||||||
|
{{ $desc := .Page.Description | default (.Page.Content | safeHTML | truncate 150) -}}
|
||||||
|
<meta name="description" content="{{ $desc }}">
|
||||||
|
{{ template "_internal/opengraph.html" . -}}
|
||||||
|
{{ template "_internal/schema.html" . -}}
|
||||||
|
{{ template "_internal/twitter_cards.html" . -}}
|
||||||
|
{{ partialCached "head-css.html" . "asdf" -}}
|
||||||
|
<script
|
||||||
|
src="https://code.jquery.com/jquery-3.5.1.min.js"
|
||||||
|
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
{{ if .Site.Params.offlineSearch -}}
|
||||||
|
<script
|
||||||
|
src="https://unpkg.com/lunr@2.3.8/lunr.min.js"
|
||||||
|
integrity="sha384-vRQ9bDyE0Wnu+lMfm57BlYLO0/XauFuKpVsZPs7KEDwYKktWi5+Kz3MP8++DFlRY"
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
{{ end -}}
|
||||||
|
|
||||||
|
{{ if .Site.Params.prism_syntax_highlighting -}}
|
||||||
|
<link rel="stylesheet" href="{{ "/css/prism.css" | relURL }}"/>
|
||||||
|
{{ end -}}
|
||||||
|
|
||||||
|
{{ partial "hooks/head-end.html" . -}}
|
Binary file not shown.
After Width: | Height: | Size: 246 KiB |
Binary file not shown.
Before Width: | Height: | Size: 65 KiB After Width: | Height: | Size: 192 KiB |
Loading…
Reference in New Issue