mirror of https://github.com/dapr/docs.git
39 lines
1.3 KiB
HTML
39 lines
1.3 KiB
HTML
{{- $groups := dict
|
|
" Generic" $.Site.Data.components.state_stores.generic
|
|
"Microsoft Azure" $.Site.Data.components.state_stores.azure
|
|
"Google Cloud Platform (GCP)" $.Site.Data.components.state_stores.gcp
|
|
"Amazon Web Services (AWS)" $.Site.Data.components.state_stores.aws
|
|
"Oracle Cloud" $.Site.Data.components.state_stores.oracle
|
|
}}
|
|
|
|
{{ range $group, $components := $groups }}
|
|
<h3>{{ $group }}</h3>
|
|
<table width="100%">
|
|
<tr>
|
|
<th>Component</th>
|
|
<th>CRUD</th>
|
|
<th>Transactional</th>
|
|
<th>ETag</th>
|
|
<th>Actors</th>
|
|
<th>Query</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-state-stores/{{ .link }}/" }}>{{ .component
|
|
}}</a>
|
|
</td>
|
|
<td>{{ if .features.crud }}✅{{ end }}</td>
|
|
<td>{{ if .features.transactions }}✅{{ end }}</td>
|
|
<td>{{ if .features.etag }}✅{{ end }}</td>
|
|
<td>{{ if (and .features.transactions .features.etag) }}✅{{ end }}</td>
|
|
<td>{{ if .features.query }}✅{{ end }}</td>
|
|
<td>{{ .state }}</td>
|
|
<td>{{ .version }}</td>
|
|
<td>{{ .since }}</td>
|
|
</tr>
|
|
{{ end }}
|
|
</table>
|
|
{{ end }} |