mirror of https://github.com/dapr/docs.git
33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
{{- $groups := dict
|
|
" Generic" $.Site.Data.components.pubsub.generic
|
|
"Microsoft Azure" $.Site.Data.components.pubsub.azure
|
|
"Google Cloud Platform (GCP)" $.Site.Data.components.pubsub.gcp
|
|
"Amazon Web Services (AWS)" $.Site.Data.components.pubsub.aws
|
|
}}
|
|
|
|
{{ range $group, $components := $groups }}
|
|
<h3>{{ $group }}</h3>
|
|
<table width="100%">
|
|
<tr>
|
|
<th>Component</th>
|
|
<th>Bulk Publish</th>
|
|
<th>Bulk Subscribe</th>
|
|
<th>Status</th>
|
|
<th>Component version</th>
|
|
<th>Since runtime version</th>
|
|
</tr>
|
|
{{ range sort $components "component" }}
|
|
<tr>
|
|
<td><a href="/reference/components-reference/supported-pubsub/{{ .link }}/">{{ .component }}</a>
|
|
</td>
|
|
<td align="center">{{ if .features.bulkPublish }}✅{{else}}<img src="/images/emptybox.png">{{ end }}</td>
|
|
<td align="center">{{ if .features.bulkSubscribe }}✅{{else}}<img src="/images/emptybox.png">{{ end }}</td>
|
|
<td>{{ .state }}</td>
|
|
<td>{{ .version }}</td>
|
|
<td>{{ .since }}</td>
|
|
</tr>
|
|
{{ end }}
|
|
</table>
|
|
{{ end }}
|
|
|
|
{{ partial "components/componenttoc.html" . }} |