forked from akamai/akamai-apis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scheduled-jobs.yaml
73 lines (73 loc) · 1.88 KB
/
scheduled-jobs.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
openapi: 3.0.0
info:
title: Scheduled jobs
version: v1
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
- url: https://{hostname}/test-management/v1/scheduled-jobs
x-akamai:
auth-type: EDGE_GRID
file-path: scheduled-jobs.yaml
paths:
/notification:
post:
operationId: post-notification
summary: Send emails
tags:
- Notifications
description: |
Send pending test result emails.
responses:
200:
description: |
Successful response.
content:
application/json:
example:
$ref: examples/post-notification-response.json
schema:
$ref: schemas/postNotificationResponse.yaml
/purge:
delete:
operationId: delete-purge
summary: Purge older test run data
tags:
- Test runs
description: |
Purge older test run data.
responses:
202:
description: |
Successfully submitted.
/update-incomplete-jobs:
post:
operationId: post-update-incomplete-jobs
summary: Update incomplete jobs
tags:
- Test runs
description: |
Update incomplete jobs' status.
responses:
202:
description: |
Successfully submitted.
/update-run-status:
post:
operationId: post-update-run-status
summary: Update test run status
tags:
- Test runs
description: |
Update status of test runs in progress. This returns a list of IDs of jobs that were updated.
responses:
200:
description: |
Successful response.
content:
application/json:
example:
$ref: examples/post-updated-jobs-response.json
schema:
$ref: schemas/postUpdatedJobsResponse.yaml