|
1 | 1 | Task:
|
2 | 2 | type: object
|
3 | 3 | additionalProperties: false
|
| 4 | + properties: |
| 5 | + taskID: |
| 6 | + $ref: './common.yml#/taskID' |
| 7 | + sourceID: |
| 8 | + $ref: './common.yml#/sourceID' |
| 9 | + destinationID: |
| 10 | + $ref: './common.yml#/destinationID' |
| 11 | + cron: |
| 12 | + $ref: '#/Cron' |
| 13 | + lastRun: |
| 14 | + $ref: '#/LastRun' |
| 15 | + nextRun: |
| 16 | + $ref: '#/NextRun' |
| 17 | + input: |
| 18 | + $ref: '#/TaskInput' |
| 19 | + enabled: |
| 20 | + type: boolean |
| 21 | + default: true |
| 22 | + description: Whether the task is enabled. |
| 23 | + failureThreshold: |
| 24 | + $ref: '#/failureThreshold' |
| 25 | + action: |
| 26 | + $ref: '#/ActionType' |
| 27 | + cursor: |
| 28 | + $ref: './common.yml#/cursor' |
| 29 | + createdAt: |
| 30 | + $ref: './common.yml#/createdAt' |
| 31 | + updatedAt: |
| 32 | + $ref: './common.yml#/updatedAt' |
| 33 | + required: |
| 34 | + - taskID |
| 35 | + - sourceID |
| 36 | + - destinationID |
| 37 | + - enabled |
| 38 | + - action |
| 39 | + - createdAt |
| 40 | + |
| 41 | +TaskV1: |
| 42 | + type: object |
| 43 | + additionalProperties: false |
| 44 | + deprecated: true |
| 45 | + description: The V1 task object, please use methods and types that don't contain the V1 suffix. |
4 | 46 | properties:
|
5 | 47 | taskID:
|
6 | 48 | $ref: './common.yml#/taskID'
|
@@ -47,6 +89,34 @@ TaskCreate:
|
47 | 89 | type: object
|
48 | 90 | additionalProperties: false
|
49 | 91 | description: API request body for creating a task.
|
| 92 | + properties: |
| 93 | + sourceID: |
| 94 | + $ref: './common.yml#/sourceID' |
| 95 | + destinationID: |
| 96 | + $ref: './common.yml#/destinationID' |
| 97 | + action: |
| 98 | + $ref: '#/ActionType' |
| 99 | + cron: |
| 100 | + $ref: '#/Cron' |
| 101 | + enabled: |
| 102 | + type: boolean |
| 103 | + description: Whether the task is enabled. |
| 104 | + failureThreshold: |
| 105 | + $ref: '#/failureThreshold' |
| 106 | + input: |
| 107 | + $ref: '#/TaskInput' |
| 108 | + cursor: |
| 109 | + $ref: './common.yml#/cursor' |
| 110 | + required: |
| 111 | + - sourceID |
| 112 | + - destinationID |
| 113 | + - action |
| 114 | + |
| 115 | +TaskCreateV1: |
| 116 | + type: object |
| 117 | + additionalProperties: false |
| 118 | + deprecated: true |
| 119 | + description: API request body for creating a task using the V1 shape, please use methods and types that don't contain the V1 suffix. |
50 | 120 | properties:
|
51 | 121 | sourceID:
|
52 | 122 | $ref: './common.yml#/sourceID'
|
@@ -95,6 +165,24 @@ TaskUpdate:
|
95 | 165 | type: object
|
96 | 166 | additionalProperties: false
|
97 | 167 | description: API request body for updating a task.
|
| 168 | + properties: |
| 169 | + destinationID: |
| 170 | + $ref: './common.yml#/destinationID' |
| 171 | + cron: |
| 172 | + $ref: '#/Cron' |
| 173 | + input: |
| 174 | + $ref: '#/TaskInput' |
| 175 | + enabled: |
| 176 | + type: boolean |
| 177 | + description: Whether the task is enabled. |
| 178 | + failureThreshold: |
| 179 | + $ref: '#/failureThreshold' |
| 180 | + |
| 181 | +TaskUpdateV1: |
| 182 | + type: object |
| 183 | + additionalProperties: false |
| 184 | + deprecated: true |
| 185 | + description: API request body for updating a task using the V1 shape, please use methods and types that don't contain the V1 suffix. |
98 | 186 | properties:
|
99 | 187 | destinationID:
|
100 | 188 | $ref: './common.yml#/destinationID'
|
@@ -188,6 +276,10 @@ LastRun:
|
188 | 276 | description: The last time the scheduled task ran in RFC 3339 format.
|
189 | 277 | type: string
|
190 | 278 |
|
| 279 | +NextRun: |
| 280 | + description: The next scheduled run of the task in RFC 3339 format. |
| 281 | + type: string |
| 282 | + |
191 | 283 | Cron:
|
192 | 284 | type: string
|
193 | 285 | description: Cron expression for the task's schedule.
|
@@ -224,8 +316,7 @@ ScheduleTrigger:
|
224 | 316 | lastRun:
|
225 | 317 | $ref: '#/LastRun'
|
226 | 318 | nextRun:
|
227 |
| - description: The next scheduled run of the task in RFC 3339 format. |
228 |
| - type: string |
| 319 | + $ref: '#/NextRun' |
229 | 320 | required:
|
230 | 321 | - type
|
231 | 322 | - cron
|
|
0 commit comments