mirror of https://github.com/dapr/docs.git
Merge pull request #2971 from sarsharma/cron_certification
Change Cron Binding from `input/output` to `input` binding
This commit is contained in:
commit
616fa44034
|
@ -29,7 +29,7 @@ spec:
|
||||||
|
|
||||||
| Field | Required | Binding support | Details | Example |
|
| Field | Required | Binding support | Details | Example |
|
||||||
|--------------------|:--------:|-------|--------|---------|
|
|--------------------|:--------:|-------|--------|---------|
|
||||||
| schedule | Y | Input/Output | The valid cron schedule to use. See [this](#schedule-format) for more details | `"@every 15m"`
|
| schedule | Y | Input| The valid cron schedule to use. See [this](#schedule-format) for more details | `"@every 15m"`
|
||||||
|
|
||||||
### Schedule Format
|
### Schedule Format
|
||||||
|
|
||||||
|
@ -74,11 +74,7 @@ When running this code, note that the `/scheduled` endpoint is called every five
|
||||||
|
|
||||||
## Binding support
|
## Binding support
|
||||||
|
|
||||||
This component supports both **input and output** binding interfaces.
|
This component supports **input** binding interface.
|
||||||
|
|
||||||
This component supports **output binding** with the following operations:
|
|
||||||
|
|
||||||
- `delete`
|
|
||||||
|
|
||||||
## Related links
|
## Related links
|
||||||
|
|
||||||
|
|
|
@ -8,12 +8,12 @@
|
||||||
output: true
|
output: true
|
||||||
- component: Cron (Scheduler)
|
- component: Cron (Scheduler)
|
||||||
link: cron
|
link: cron
|
||||||
state: Alpha
|
state: Stable
|
||||||
version: v1
|
version: v1
|
||||||
since: "1.0"
|
since: "1.10"
|
||||||
features:
|
features:
|
||||||
input: true
|
input: true
|
||||||
output: true
|
output: false
|
||||||
- component: GraphQL
|
- component: GraphQL
|
||||||
link: graghql
|
link: graghql
|
||||||
state: Alpha
|
state: Alpha
|
||||||
|
@ -45,7 +45,7 @@
|
||||||
since: "1.0"
|
since: "1.0"
|
||||||
features:
|
features:
|
||||||
input: true
|
input: true
|
||||||
output: true
|
output: false
|
||||||
- component: Local Storage
|
- component: Local Storage
|
||||||
link: localstorage
|
link: localstorage
|
||||||
state: Stable
|
state: Stable
|
||||||
|
|
Loading…
Reference in New Issue