mirror of https://github.com/dapr/docs.git
crosslink
Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
This commit is contained in:
parent
5173fd0c71
commit
2173f8a3e8
|
@ -9,8 +9,10 @@ aliases:
|
|||
no_list: true
|
||||
---
|
||||
|
||||
Every binding has its own unique set of properties. Click the name link to see the component YAML for each binding.
|
||||
The following table lists input and output bindings supported, at various levels, by the Dapr bindings building block. [Learn how to set up different input and output binding components for Dapr bindings.]({{< ref setup-bindings.md >}})
|
||||
|
||||
{{< partial "components/description.html" >}}
|
||||
|
||||
Every binding has its own unique set of properties. Click the name link to see the component YAML for each binding.
|
||||
|
||||
{{< partial "components/bindings.html" >}}
|
||||
|
|
|
@ -8,6 +8,9 @@ no_list: true
|
|||
aliases:
|
||||
- /developing-applications/middleware/supported-middleware/
|
||||
---
|
||||
|
||||
The following table lists middleware components supported, at various levels, by Dapr. [Learn how to customize processing pipelines and set up middleware components.]({{< ref "middleware.md" >}})
|
||||
|
||||
{{< partial "components/description.html" >}}
|
||||
|
||||
{{< partial "components/middleware.html" >}}
|
||||
|
|
|
@ -9,6 +9,12 @@ aliases:
|
|||
no_list: true
|
||||
---
|
||||
|
||||
The following table lists publish and subscribe brokers supported, at various levels, by the Dapr pub/sub building block. [Learn how to set up different brokers for Dapr publish and subscribe.]({{< ref setup-pubsub.md >}})
|
||||
|
||||
{{< partial "components/description.html" >}}
|
||||
|
||||
{{% alert title="Note" color="primary" %}}
|
||||
All pub/sub components support limiting pub/sub topics to specific applications using [namespace or component scopes]({{< ref pubsub-scopes.md >}}).
|
||||
{{% /alert %}}
|
||||
|
||||
{{< partial "components/pubsub.html" >}}
|
||||
|
|
|
@ -9,6 +9,8 @@ aliases:
|
|||
no_list: true
|
||||
---
|
||||
|
||||
The following table lists secret stores supported, at various levels, by the Dapr secrets building block. [Learn how to set up different secret stores for Dapr secrets management.]({{< ref setup-secret-store.md >}})
|
||||
|
||||
{{< partial "components/description.html" >}}
|
||||
|
||||
{{< partial "components/secret-stores.html" >}}
|
||||
|
|
|
@ -9,10 +9,12 @@ aliases:
|
|||
no_list: true
|
||||
---
|
||||
|
||||
The following table lists state stores supported, at various levels, by the Dapr state management building block. [Learn how to set up different state stores for Dapr state management.]({{< ref setup-state-store.md >}})
|
||||
|
||||
{{< partial "components/description.html" >}}
|
||||
|
||||
The following stores are supported, at various levels, by the Dapr state management building block:
|
||||
|
||||
> State stores can be used for actors if it supports both transactional operations and etag.
|
||||
{{% alert title="Note" color="primary" %}}
|
||||
State stores can be used for actors if it supports both transactional operations and ETag.
|
||||
{{% /alert %}}
|
||||
|
||||
{{< partial "components/state-stores.html" >}}
|
||||
|
|
|
@ -1,15 +1,29 @@
|
|||
<p>Table captions:</p>
|
||||
<blockquote>
|
||||
<p><code>Status</code>: <a href="/operations/components/certification-lifecycle/">component certification</a> status</p>
|
||||
</blockquote>
|
||||
<ul>
|
||||
<li><a href="/operations/components/certification-lifecycle/#alpha">Alpha</a></li>
|
||||
<li><a href="/operations/components/certification-lifecycle/#beta">Beta</a></li>
|
||||
<li><a href="/operations/components/certification-lifecycle/#stable">Stable</a></li>
|
||||
</ul>
|
||||
<blockquote>
|
||||
<p><code>Since</code>: the version of the Dapr Runtime in which the component first moved to the current status</p>
|
||||
</blockquote>
|
||||
<blockquote>
|
||||
<p><code>Component version</code>: the version of the component</p>
|
||||
</blockquote>
|
||||
<p>Table headers to note:</p>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<th>Header</th>
|
||||
<th>Description</th>
|
||||
<th>Example</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Status</td>
|
||||
<td><a href="/operations/components/certification-lifecycle/">Component certification</a> status</td>
|
||||
<td>
|
||||
<a href="/operations/components/certification-lifecycle/#alpha">Alpha</a><br>
|
||||
<a href="/operations/components/certification-lifecycle/#beta">Beta</a><br>
|
||||
<a href="/operations/components/certification-lifecycle/#stable">Stable</a><br>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Component version</td>
|
||||
<td>The version of the component</td>
|
||||
<td>v1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Since runtime version</td>
|
||||
<td>The version of the Dapr Runtime in which the component <br> first moved to the current status</td>
|
||||
<td>1.11</td>
|
||||
</tr>
|
||||
</table>
|
Loading…
Reference in New Issue