forked from dhenry123/utdon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.yaml
331 lines (331 loc) · 9.43 KB
/
openapi.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
openapi: 3.0.0
info:
title: Utdon API Documentation
version: 1.5.0
components:
securitySchemes:
ApiKeyAuth:
type: apiKey
in: header
name: Authorization
cookieAuth:
type: apiKey
in: cookie
name: connect.sid # cookie name
responses:
UnauthorizedError:
description: Access token,user/password are missing, invalid, or session is not set
schemas:
Error:
type: string
description: Catched Error as string
HTTPMethods:
type: string
enum:
- GET
- POST
- PUT
- DELETE
UptoDateOrNotState:
type: object
properties:
name:
type: string
description: name of control
githubLatestRelease:
type: string
description: latest github release after expression applied
productionVersion:
type: string
description: production version after expression applied
state:
type: boolean
description: is Uptodate or Not ?
strictlyEqual:
type: boolean
description: is production strictly equal latest github release ?
githubLatestReleaseIncludesProductionVersion:
description: Is github latest release included in Production version?
type: boolean
productionVersionIncludesGithubLatestRelease:
description: Is Production version included in github latest release?
type: boolean
urlGitHub:
type: string
urlProduction:
type: string
ts:
type: number
description: Execution timestamp
UptodateForm:
type: object
description: control record
properties:
uuid:
type: string
description: control uniq id
name:
type: string
description: name of control
logo:
type: string
description: base64 html logo src
urlProduction:
type: string
description: url of the production application to be verified
scrapTypeProduction:
type: string
description: type of content
exprProduction:
type: string
description: Expression to apply to get the version
urlGitHub:
type: string
description: url of the github repository
exprGithub:
type: string
description: Expression to apply to get the version
urlCronJobMonitoring:
type: string
description: url of the cronJob monitoring
httpMethodCronJobMonitoring:
$ref: "#/components/schemas/HTTPMethods"
description: Http method to call url of the cronJob monitoring
urlCronJobMonitoringAuth:
type: string
description: Api Key to provide to call url of the cronJob monitoring
urlCICD:
type: string
description: url of the CI/CD
httpMethodCICD:
$ref: "#/components/schemas/HTTPMethods"
description: Http method to call url of the CI/CD
urlCICDAuth:
type: string
description: Api Key to provide to call url of the CI/CD
isPause:
type: boolean
description: When calling compare API if paused, this control will not be included in the process
compareResult:
description: latest compare result
oneOf:
- $ref: "#/components/schemas/UptoDateOrNotState"
- nullable: true
security:
- ApiKeyAuth: []
- cookieAuth: []
servers:
- url: /api/v1
paths:
/action/compare/{controlUuid}/{setStatus}:
get:
summary: Call up the comparison method and can update the monitoring status
description: Call up the comparison method and can update the monitoring status
security:
- ApiKeyAuth: []
- cookieAuth: []
tags:
- Actions
parameters:
- in: path
name: controlUuid
required: true
description: control uuid, could be 'all'
schema:
type: string
- in: path
name: setStatus
required: true
description: 1 to update | 0 to not update => monitoring status
schema:
type: string
enum:
- 0
- 1
responses:
"200":
description: The response varies according to the parameters provided
content:
application/text:
schema:
type: string
"401":
$ref: "#/components/responses/UnauthorizedError"
"404":
description: control uuid not found
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"500":
description: Internal error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/action/cicd/:
put:
summary: Call up the url CI/CD for control uuid provided
description: Call up the url CI/CD for control uuid provided
security:
- ApiKeyAuth: []
- cookieAuth: []
tags:
- Actions
requestBody:
description: uuid
required: true
content:
application/json:
schema:
type: object
properties:
uuid:
type: string
responses:
"200":
description: CI/CD response body
content:
application/text:
schema:
type: string
"401":
$ref: "#/components/responses/UnauthorizedError"
"404":
description: control uuid not found
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"500":
description: Internal error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/action/lastcomparegitrelease/{controlUuid}/:
get:
summary: Get the latest github version registered on the control
description: Get the latest github version registered on the control
security:
- ApiKeyAuth: []
- cookieAuth: []
tags:
- Actions
parameters:
- in: path
name: controlUuid
required: true
description: control uuid
schema:
type: string
responses:
"200":
description: Value of the github release
content:
application/text:
schema:
type: string
"401":
$ref: "#/components/responses/UnauthorizedError"
"404":
description: control uuid not found or github release is empty
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"500":
description: Internal error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/control/{uuid}:
get:
summary: To get all the parameters of a control
description: To get all the parameters of a control; uuid could be 'all' for all controls
security:
- ApiKeyAuth: []
tags:
- Control
parameters:
- in: path
name: uuid
required: true
description: control uuid||all
schema:
type: string
responses:
"200":
description: control data or Array of controls data
content:
application/json:
schema:
$ref: "#/components/schemas/UptodateForm"
"401":
$ref: "#/components/responses/UnauthorizedError"
"500":
description: Internal error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/version:
get:
summary: To get the application version
description: Get the version in JSON format
security: []
tags:
- Core
responses:
"200":
description: Version as JSON
content:
application/json:
schema:
type: object
properties:
version:
type: string
description: Major.Minor.Patch
"500":
description: Internal error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/healthz:
get:
summary: Is service Healthy ?
description: Could be used to find out if the service is healthy
security: []
tags:
- Core
responses:
"204":
description: service is healthy
"500":
description: Internal error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/metrics:
get:
summary: not implemented
description: In the Roadmap
security:
- ApiKeyAuth: []
tags:
- Core
responses:
"401":
$ref: "#/components/responses/UnauthorizedError"
"500":
description: Internal error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"503":
description: not implemented