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 |
|
||||
|--------------------|:--------:|-------|--------|---------|
|
||||
| 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
|
||||
|
||||
|
@ -74,11 +74,7 @@ When running this code, note that the `/scheduled` endpoint is called every five
|
|||
|
||||
## Binding support
|
||||
|
||||
This component supports both **input and output** binding interfaces.
|
||||
|
||||
This component supports **output binding** with the following operations:
|
||||
|
||||
- `delete`
|
||||
This component supports **input** binding interface.
|
||||
|
||||
## Related links
|
||||
|
||||
|
|
|
@ -8,12 +8,12 @@
|
|||
output: true
|
||||
- component: Cron (Scheduler)
|
||||
link: cron
|
||||
state: Alpha
|
||||
state: Stable
|
||||
version: v1
|
||||
since: "1.0"
|
||||
since: "1.10"
|
||||
features:
|
||||
input: true
|
||||
output: true
|
||||
output: false
|
||||
- component: GraphQL
|
||||
link: graghql
|
||||
state: Alpha
|
||||
|
@ -45,7 +45,7 @@
|
|||
since: "1.0"
|
||||
features:
|
||||
input: true
|
||||
output: true
|
||||
output: false
|
||||
- component: Local Storage
|
||||
link: localstorage
|
||||
state: Stable
|
||||
|
|
Loading…
Reference in New Issue