@itentialopensource/adapter-thruk_monitoring 0.4.6 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +1 -0
- package/AUTH.md +4 -4
- package/BROKER.md +4 -4
- package/CALLS.md +9 -9
- package/ENHANCE.md +3 -3
- package/PROPERTIES.md +24 -9
- package/README.md +24 -23
- package/SUMMARY.md +2 -2
- package/SYSTEMINFO.md +1 -1
- package/TAB1.md +2 -2
- package/TAB2.md +9 -5
- package/TROUBLESHOOT.md +10 -1
- package/UTILITIES.md +473 -0
- package/adapter.js +5 -5
- package/adapterBase.js +52 -16
- package/package.json +24 -28
- package/pronghorn.json +19 -17
- package/propertiesSchema.json +68 -7
- package/report/adapterInfo.json +7 -7
- package/report/auto-adapter-openapi.json +3709 -0
- package/report/updateReport1748555341951.json +120 -0
- package/sampleProperties.json +4 -0
- package/test/integration/adapterTestBasicGet.js +88 -54
- package/test/integration/adapterTestConnectivity.js +15 -16
- package/test/integration/adapterTestIntegration.js +1 -38
- package/test/unit/adapterBaseTestUnit.js +641 -39
- package/test/unit/adapterTestUnit.js +17 -54
- package/utils/adapterInfo.js +114 -164
- package/utils/argParser.js +44 -0
- package/utils/checkMigrate.js +77 -38
- package/utils/entitiesToDB.js +53 -42
- package/utils/logger.js +26 -0
- package/utils/modify.js +56 -55
- package/utils/mongoDbConnection.js +79 -0
- package/utils/mongoUtils.js +162 -0
- package/utils/taskMover.js +31 -32
- package/utils/tbScript.js +36 -172
- package/utils/tbUtils.js +84 -226
- package/utils/troubleshootingAdapter.js +68 -84
- package/utils/updateAdapterConfig.js +158 -0
- package/utils/addAuth.js +0 -94
- package/utils/artifactize.js +0 -146
- package/utils/basicGet.js +0 -50
- package/utils/packModificationScript.js +0 -35
- package/utils/patches2bundledDeps.js +0 -90
|
@@ -0,0 +1,3709 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openapi": "3.1.0",
|
|
3
|
+
"info": {
|
|
4
|
+
"title": "",
|
|
5
|
+
"version": "1.0.0"
|
|
6
|
+
},
|
|
7
|
+
"paths": {
|
|
8
|
+
"/alerts": {
|
|
9
|
+
"get": {
|
|
10
|
+
"tags": [
|
|
11
|
+
"Alerts"
|
|
12
|
+
],
|
|
13
|
+
"operationId": "getAlerts",
|
|
14
|
+
"description": "The parameters and request body are for method: getAlerts. Same endpoint also used in methods:",
|
|
15
|
+
"responses": {
|
|
16
|
+
"200": {
|
|
17
|
+
"description": "Successful operation",
|
|
18
|
+
"content": {
|
|
19
|
+
"application/json": {
|
|
20
|
+
"schema": {
|
|
21
|
+
"title": "result",
|
|
22
|
+
"type": "object"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"requestBody": {
|
|
29
|
+
"content": {
|
|
30
|
+
"application/json": {
|
|
31
|
+
"schema": {
|
|
32
|
+
"type": "object"
|
|
33
|
+
},
|
|
34
|
+
"example": {}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"/checks/stats": {
|
|
41
|
+
"get": {
|
|
42
|
+
"tags": [
|
|
43
|
+
"Checks"
|
|
44
|
+
],
|
|
45
|
+
"operationId": "getStatistics",
|
|
46
|
+
"description": "The parameters and request body are for method: getStatistics. Same endpoint also used in methods:",
|
|
47
|
+
"responses": {
|
|
48
|
+
"200": {
|
|
49
|
+
"description": "Successful operation",
|
|
50
|
+
"content": {
|
|
51
|
+
"application/json": {
|
|
52
|
+
"schema": {
|
|
53
|
+
"title": "result",
|
|
54
|
+
"type": "object"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"requestBody": {
|
|
61
|
+
"content": {
|
|
62
|
+
"application/json": {
|
|
63
|
+
"schema": {
|
|
64
|
+
"type": "object"
|
|
65
|
+
},
|
|
66
|
+
"example": {}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"/cmd": {
|
|
73
|
+
"post": {
|
|
74
|
+
"tags": [
|
|
75
|
+
"Cmd"
|
|
76
|
+
],
|
|
77
|
+
"operationId": "postCommand",
|
|
78
|
+
"description": "The parameters and request body are for method: postCommand. Same endpoint also used in methods:",
|
|
79
|
+
"responses": {
|
|
80
|
+
"200": {
|
|
81
|
+
"description": "Successful operation",
|
|
82
|
+
"content": {
|
|
83
|
+
"application/json": {
|
|
84
|
+
"schema": {
|
|
85
|
+
"title": "result",
|
|
86
|
+
"type": "object"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"requestBody": {
|
|
93
|
+
"description": "indeterminate body object",
|
|
94
|
+
"content": {
|
|
95
|
+
"application/json": {
|
|
96
|
+
"schema": {
|
|
97
|
+
"type": "object"
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"/commands": {
|
|
105
|
+
"get": {
|
|
106
|
+
"tags": [
|
|
107
|
+
"Commands"
|
|
108
|
+
],
|
|
109
|
+
"operationId": "getCommands",
|
|
110
|
+
"description": "The parameters and request body are for method: getCommands. Same endpoint also used in methods:",
|
|
111
|
+
"responses": {
|
|
112
|
+
"200": {
|
|
113
|
+
"description": "Successful operation",
|
|
114
|
+
"content": {
|
|
115
|
+
"application/json": {
|
|
116
|
+
"schema": {
|
|
117
|
+
"title": "result",
|
|
118
|
+
"type": "object"
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
"requestBody": {
|
|
125
|
+
"content": {
|
|
126
|
+
"application/json": {
|
|
127
|
+
"schema": {
|
|
128
|
+
"type": "object"
|
|
129
|
+
},
|
|
130
|
+
"example": {}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
"/commands/{name}": {
|
|
137
|
+
"get": {
|
|
138
|
+
"tags": [
|
|
139
|
+
"Commands"
|
|
140
|
+
],
|
|
141
|
+
"operationId": "getCommand",
|
|
142
|
+
"description": "The parameters and request body are for method: getCommand. Same endpoint also used in methods:",
|
|
143
|
+
"responses": {
|
|
144
|
+
"200": {
|
|
145
|
+
"description": "Successful operation",
|
|
146
|
+
"content": {
|
|
147
|
+
"application/json": {
|
|
148
|
+
"schema": {
|
|
149
|
+
"title": "result",
|
|
150
|
+
"type": "object"
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"parameters": [
|
|
157
|
+
{
|
|
158
|
+
"name": "name",
|
|
159
|
+
"in": "path",
|
|
160
|
+
"required": true,
|
|
161
|
+
"schema": {
|
|
162
|
+
"title": "name",
|
|
163
|
+
"type": "string"
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
],
|
|
167
|
+
"requestBody": {
|
|
168
|
+
"content": {
|
|
169
|
+
"application/json": {
|
|
170
|
+
"schema": {
|
|
171
|
+
"type": "object"
|
|
172
|
+
},
|
|
173
|
+
"example": {}
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
"/commands/{name}/config": {
|
|
180
|
+
"get": {
|
|
181
|
+
"tags": [
|
|
182
|
+
"Commands"
|
|
183
|
+
],
|
|
184
|
+
"operationId": "getCommandConfig",
|
|
185
|
+
"description": "The parameters and request body are for method: getCommandConfig. Same endpoint also used in methods:",
|
|
186
|
+
"responses": {
|
|
187
|
+
"200": {
|
|
188
|
+
"description": "Successful operation",
|
|
189
|
+
"content": {
|
|
190
|
+
"application/json": {
|
|
191
|
+
"schema": {
|
|
192
|
+
"title": "result",
|
|
193
|
+
"type": "object"
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
"parameters": [
|
|
200
|
+
{
|
|
201
|
+
"name": "name",
|
|
202
|
+
"in": "path",
|
|
203
|
+
"required": true,
|
|
204
|
+
"schema": {
|
|
205
|
+
"title": "name",
|
|
206
|
+
"type": "string"
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
],
|
|
210
|
+
"requestBody": {
|
|
211
|
+
"content": {
|
|
212
|
+
"application/json": {
|
|
213
|
+
"schema": {
|
|
214
|
+
"type": "object"
|
|
215
|
+
},
|
|
216
|
+
"example": {}
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
"post": {
|
|
222
|
+
"tags": [
|
|
223
|
+
"Commands"
|
|
224
|
+
],
|
|
225
|
+
"operationId": "postCommandConfig",
|
|
226
|
+
"description": "The parameters and request body are for method: postCommandConfig. Same endpoint also used in methods:",
|
|
227
|
+
"responses": {
|
|
228
|
+
"200": {
|
|
229
|
+
"description": "Successful operation",
|
|
230
|
+
"content": {
|
|
231
|
+
"application/json": {
|
|
232
|
+
"schema": {
|
|
233
|
+
"title": "result",
|
|
234
|
+
"type": "object"
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
"parameters": [
|
|
241
|
+
{
|
|
242
|
+
"name": "name",
|
|
243
|
+
"in": "path",
|
|
244
|
+
"required": true,
|
|
245
|
+
"schema": {
|
|
246
|
+
"title": "name",
|
|
247
|
+
"type": "string"
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
],
|
|
251
|
+
"requestBody": {
|
|
252
|
+
"description": "indeterminate body object",
|
|
253
|
+
"content": {
|
|
254
|
+
"application/json": {
|
|
255
|
+
"schema": {
|
|
256
|
+
"type": "object"
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
"patch": {
|
|
263
|
+
"tags": [
|
|
264
|
+
"Commands"
|
|
265
|
+
],
|
|
266
|
+
"operationId": "patchCommandConfig",
|
|
267
|
+
"description": "The parameters and request body are for method: patchCommandConfig. Same endpoint also used in methods:",
|
|
268
|
+
"responses": {
|
|
269
|
+
"200": {
|
|
270
|
+
"description": "Successful operation",
|
|
271
|
+
"content": {
|
|
272
|
+
"application/json": {
|
|
273
|
+
"schema": {
|
|
274
|
+
"title": "result",
|
|
275
|
+
"type": "object"
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
"parameters": [
|
|
282
|
+
{
|
|
283
|
+
"name": "name",
|
|
284
|
+
"in": "path",
|
|
285
|
+
"required": true,
|
|
286
|
+
"schema": {
|
|
287
|
+
"title": "name",
|
|
288
|
+
"type": "string"
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
],
|
|
292
|
+
"requestBody": {
|
|
293
|
+
"description": "indeterminate body object",
|
|
294
|
+
"content": {
|
|
295
|
+
"application/json": {
|
|
296
|
+
"schema": {
|
|
297
|
+
"type": "object"
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
},
|
|
303
|
+
"delete": {
|
|
304
|
+
"tags": [
|
|
305
|
+
"Commands"
|
|
306
|
+
],
|
|
307
|
+
"operationId": "deleteCommandConfig",
|
|
308
|
+
"description": "The parameters and request body are for method: deleteCommandConfig. Same endpoint also used in methods:",
|
|
309
|
+
"responses": {
|
|
310
|
+
"200": {
|
|
311
|
+
"description": "Successful operation",
|
|
312
|
+
"content": {
|
|
313
|
+
"application/json": {
|
|
314
|
+
"schema": {
|
|
315
|
+
"title": "result",
|
|
316
|
+
"type": "object"
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
},
|
|
322
|
+
"parameters": [
|
|
323
|
+
{
|
|
324
|
+
"name": "name",
|
|
325
|
+
"in": "path",
|
|
326
|
+
"required": true,
|
|
327
|
+
"schema": {
|
|
328
|
+
"title": "name",
|
|
329
|
+
"type": "string"
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
],
|
|
333
|
+
"requestBody": {
|
|
334
|
+
"content": {
|
|
335
|
+
"application/json": {
|
|
336
|
+
"schema": {
|
|
337
|
+
"type": "object"
|
|
338
|
+
},
|
|
339
|
+
"example": {}
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
},
|
|
345
|
+
"/comments": {
|
|
346
|
+
"get": {
|
|
347
|
+
"tags": [
|
|
348
|
+
"Comments"
|
|
349
|
+
],
|
|
350
|
+
"operationId": "getComments",
|
|
351
|
+
"description": "The parameters and request body are for method: getComments. Same endpoint also used in methods:",
|
|
352
|
+
"responses": {
|
|
353
|
+
"200": {
|
|
354
|
+
"description": "Successful operation",
|
|
355
|
+
"content": {
|
|
356
|
+
"application/json": {
|
|
357
|
+
"schema": {
|
|
358
|
+
"title": "result",
|
|
359
|
+
"type": "object"
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
"requestBody": {
|
|
366
|
+
"content": {
|
|
367
|
+
"application/json": {
|
|
368
|
+
"schema": {
|
|
369
|
+
"type": "object"
|
|
370
|
+
},
|
|
371
|
+
"example": {}
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
},
|
|
377
|
+
"/comments/{id}": {
|
|
378
|
+
"get": {
|
|
379
|
+
"tags": [
|
|
380
|
+
"Comments"
|
|
381
|
+
],
|
|
382
|
+
"operationId": "getComment",
|
|
383
|
+
"description": "The parameters and request body are for method: getComment. Same endpoint also used in methods:",
|
|
384
|
+
"responses": {
|
|
385
|
+
"200": {
|
|
386
|
+
"description": "Successful operation",
|
|
387
|
+
"content": {
|
|
388
|
+
"application/json": {
|
|
389
|
+
"schema": {
|
|
390
|
+
"title": "result",
|
|
391
|
+
"type": "object"
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
},
|
|
397
|
+
"parameters": [
|
|
398
|
+
{
|
|
399
|
+
"name": "id",
|
|
400
|
+
"in": "path",
|
|
401
|
+
"required": true,
|
|
402
|
+
"schema": {
|
|
403
|
+
"title": "id",
|
|
404
|
+
"type": "string"
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
],
|
|
408
|
+
"requestBody": {
|
|
409
|
+
"content": {
|
|
410
|
+
"application/json": {
|
|
411
|
+
"schema": {
|
|
412
|
+
"type": "object"
|
|
413
|
+
},
|
|
414
|
+
"example": {}
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
},
|
|
420
|
+
"/config/check": {
|
|
421
|
+
"post": {
|
|
422
|
+
"tags": [
|
|
423
|
+
"Config"
|
|
424
|
+
],
|
|
425
|
+
"operationId": "postConfigCheck",
|
|
426
|
+
"description": "The parameters and request body are for method: postConfigCheck. Same endpoint also used in methods:",
|
|
427
|
+
"responses": {
|
|
428
|
+
"200": {
|
|
429
|
+
"description": "Successful operation",
|
|
430
|
+
"content": {
|
|
431
|
+
"application/json": {
|
|
432
|
+
"schema": {
|
|
433
|
+
"title": "result",
|
|
434
|
+
"type": "object"
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
},
|
|
440
|
+
"requestBody": {
|
|
441
|
+
"content": {
|
|
442
|
+
"application/json": {
|
|
443
|
+
"schema": {
|
|
444
|
+
"type": "object"
|
|
445
|
+
},
|
|
446
|
+
"example": {}
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
},
|
|
452
|
+
"/config/diff": {
|
|
453
|
+
"get": {
|
|
454
|
+
"tags": [
|
|
455
|
+
"Config"
|
|
456
|
+
],
|
|
457
|
+
"operationId": "getConfigDiff",
|
|
458
|
+
"description": "The parameters and request body are for method: getConfigDiff. Same endpoint also used in methods:",
|
|
459
|
+
"responses": {
|
|
460
|
+
"200": {
|
|
461
|
+
"description": "Successful operation",
|
|
462
|
+
"content": {
|
|
463
|
+
"application/json": {
|
|
464
|
+
"schema": {
|
|
465
|
+
"title": "result",
|
|
466
|
+
"type": "object"
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
},
|
|
472
|
+
"requestBody": {
|
|
473
|
+
"content": {
|
|
474
|
+
"application/json": {
|
|
475
|
+
"schema": {
|
|
476
|
+
"type": "object"
|
|
477
|
+
},
|
|
478
|
+
"example": {}
|
|
479
|
+
}
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
},
|
|
484
|
+
"/config/discard": {
|
|
485
|
+
"post": {
|
|
486
|
+
"tags": [
|
|
487
|
+
"Config"
|
|
488
|
+
],
|
|
489
|
+
"operationId": "postConfigDiscard",
|
|
490
|
+
"description": "The parameters and request body are for method: postConfigDiscard. Same endpoint also used in methods:",
|
|
491
|
+
"responses": {
|
|
492
|
+
"200": {
|
|
493
|
+
"description": "Successful operation",
|
|
494
|
+
"content": {
|
|
495
|
+
"application/json": {
|
|
496
|
+
"schema": {
|
|
497
|
+
"title": "result",
|
|
498
|
+
"type": "object"
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
},
|
|
504
|
+
"requestBody": {
|
|
505
|
+
"content": {
|
|
506
|
+
"application/json": {
|
|
507
|
+
"schema": {
|
|
508
|
+
"type": "object"
|
|
509
|
+
},
|
|
510
|
+
"example": {}
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
},
|
|
516
|
+
"/config/files": {
|
|
517
|
+
"get": {
|
|
518
|
+
"tags": [
|
|
519
|
+
"Config"
|
|
520
|
+
],
|
|
521
|
+
"operationId": "getConfigFiles",
|
|
522
|
+
"description": "The parameters and request body are for method: getConfigFiles. Same endpoint also used in methods:",
|
|
523
|
+
"responses": {
|
|
524
|
+
"200": {
|
|
525
|
+
"description": "Successful operation",
|
|
526
|
+
"content": {
|
|
527
|
+
"application/json": {
|
|
528
|
+
"schema": {
|
|
529
|
+
"title": "result",
|
|
530
|
+
"type": "object"
|
|
531
|
+
}
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
},
|
|
536
|
+
"requestBody": {
|
|
537
|
+
"content": {
|
|
538
|
+
"application/json": {
|
|
539
|
+
"schema": {
|
|
540
|
+
"type": "object"
|
|
541
|
+
},
|
|
542
|
+
"example": {}
|
|
543
|
+
}
|
|
544
|
+
}
|
|
545
|
+
}
|
|
546
|
+
}
|
|
547
|
+
},
|
|
548
|
+
"/config/fullobjects": {
|
|
549
|
+
"get": {
|
|
550
|
+
"tags": [
|
|
551
|
+
"Config"
|
|
552
|
+
],
|
|
553
|
+
"operationId": "getConfigFullObjects",
|
|
554
|
+
"description": "The parameters and request body are for method: getConfigFullObjects. Same endpoint also used in methods:",
|
|
555
|
+
"responses": {
|
|
556
|
+
"200": {
|
|
557
|
+
"description": "Successful operation",
|
|
558
|
+
"content": {
|
|
559
|
+
"application/json": {
|
|
560
|
+
"schema": {
|
|
561
|
+
"title": "result",
|
|
562
|
+
"type": "object"
|
|
563
|
+
}
|
|
564
|
+
}
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
},
|
|
568
|
+
"requestBody": {
|
|
569
|
+
"content": {
|
|
570
|
+
"application/json": {
|
|
571
|
+
"schema": {
|
|
572
|
+
"type": "object"
|
|
573
|
+
},
|
|
574
|
+
"example": {}
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
"/config/objects": {
|
|
581
|
+
"get": {
|
|
582
|
+
"tags": [
|
|
583
|
+
"Config"
|
|
584
|
+
],
|
|
585
|
+
"operationId": "getConfigObjects",
|
|
586
|
+
"description": "The parameters and request body are for method: getConfigObjects. Same endpoint also used in methods:",
|
|
587
|
+
"responses": {
|
|
588
|
+
"200": {
|
|
589
|
+
"description": "Successful operation",
|
|
590
|
+
"content": {
|
|
591
|
+
"application/json": {
|
|
592
|
+
"schema": {
|
|
593
|
+
"title": "result",
|
|
594
|
+
"type": "object"
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
}
|
|
599
|
+
},
|
|
600
|
+
"requestBody": {
|
|
601
|
+
"content": {
|
|
602
|
+
"application/json": {
|
|
603
|
+
"schema": {
|
|
604
|
+
"type": "object"
|
|
605
|
+
},
|
|
606
|
+
"example": {}
|
|
607
|
+
}
|
|
608
|
+
}
|
|
609
|
+
}
|
|
610
|
+
},
|
|
611
|
+
"post": {
|
|
612
|
+
"tags": [
|
|
613
|
+
"Config"
|
|
614
|
+
],
|
|
615
|
+
"operationId": "postConfigObjects",
|
|
616
|
+
"description": "The parameters and request body are for method: postConfigObjects. Same endpoint also used in methods:",
|
|
617
|
+
"responses": {
|
|
618
|
+
"200": {
|
|
619
|
+
"description": "Successful operation",
|
|
620
|
+
"content": {
|
|
621
|
+
"application/json": {
|
|
622
|
+
"schema": {
|
|
623
|
+
"title": "result",
|
|
624
|
+
"type": "object"
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
"requestBody": {
|
|
631
|
+
"description": "indeterminate body object",
|
|
632
|
+
"content": {
|
|
633
|
+
"application/json": {
|
|
634
|
+
"schema": {
|
|
635
|
+
"type": "object"
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
}
|
|
640
|
+
},
|
|
641
|
+
"patch": {
|
|
642
|
+
"tags": [
|
|
643
|
+
"Config"
|
|
644
|
+
],
|
|
645
|
+
"operationId": "patchConfigObjects",
|
|
646
|
+
"description": "The parameters and request body are for method: patchConfigObjects. Same endpoint also used in methods:",
|
|
647
|
+
"responses": {
|
|
648
|
+
"200": {
|
|
649
|
+
"description": "Successful operation",
|
|
650
|
+
"content": {
|
|
651
|
+
"application/json": {
|
|
652
|
+
"schema": {
|
|
653
|
+
"title": "result",
|
|
654
|
+
"type": "object"
|
|
655
|
+
}
|
|
656
|
+
}
|
|
657
|
+
}
|
|
658
|
+
}
|
|
659
|
+
},
|
|
660
|
+
"requestBody": {
|
|
661
|
+
"description": "indeterminate body object",
|
|
662
|
+
"content": {
|
|
663
|
+
"application/json": {
|
|
664
|
+
"schema": {
|
|
665
|
+
"type": "object"
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
}
|
|
669
|
+
}
|
|
670
|
+
}
|
|
671
|
+
},
|
|
672
|
+
"/config/objects/{id}": {
|
|
673
|
+
"patch": {
|
|
674
|
+
"tags": [
|
|
675
|
+
"Config"
|
|
676
|
+
],
|
|
677
|
+
"operationId": "patchConfigObject",
|
|
678
|
+
"description": "The parameters and request body are for method: patchConfigObject. Same endpoint also used in methods:",
|
|
679
|
+
"responses": {
|
|
680
|
+
"200": {
|
|
681
|
+
"description": "Successful operation",
|
|
682
|
+
"content": {
|
|
683
|
+
"application/json": {
|
|
684
|
+
"schema": {
|
|
685
|
+
"title": "result",
|
|
686
|
+
"type": "object"
|
|
687
|
+
}
|
|
688
|
+
}
|
|
689
|
+
}
|
|
690
|
+
}
|
|
691
|
+
},
|
|
692
|
+
"parameters": [
|
|
693
|
+
{
|
|
694
|
+
"name": "id",
|
|
695
|
+
"in": "path",
|
|
696
|
+
"required": true,
|
|
697
|
+
"schema": {
|
|
698
|
+
"title": "id",
|
|
699
|
+
"type": "string"
|
|
700
|
+
}
|
|
701
|
+
}
|
|
702
|
+
],
|
|
703
|
+
"requestBody": {
|
|
704
|
+
"description": "indeterminate body object",
|
|
705
|
+
"content": {
|
|
706
|
+
"application/json": {
|
|
707
|
+
"schema": {
|
|
708
|
+
"type": "object"
|
|
709
|
+
}
|
|
710
|
+
}
|
|
711
|
+
}
|
|
712
|
+
}
|
|
713
|
+
},
|
|
714
|
+
"post": {
|
|
715
|
+
"tags": [
|
|
716
|
+
"Config"
|
|
717
|
+
],
|
|
718
|
+
"operationId": "postConfigObject",
|
|
719
|
+
"description": "The parameters and request body are for method: postConfigObject. Same endpoint also used in methods:",
|
|
720
|
+
"responses": {
|
|
721
|
+
"200": {
|
|
722
|
+
"description": "Successful operation",
|
|
723
|
+
"content": {
|
|
724
|
+
"application/json": {
|
|
725
|
+
"schema": {
|
|
726
|
+
"title": "result",
|
|
727
|
+
"type": "object"
|
|
728
|
+
}
|
|
729
|
+
}
|
|
730
|
+
}
|
|
731
|
+
}
|
|
732
|
+
},
|
|
733
|
+
"parameters": [
|
|
734
|
+
{
|
|
735
|
+
"name": "id",
|
|
736
|
+
"in": "path",
|
|
737
|
+
"required": true,
|
|
738
|
+
"schema": {
|
|
739
|
+
"title": "id",
|
|
740
|
+
"type": "string"
|
|
741
|
+
}
|
|
742
|
+
}
|
|
743
|
+
],
|
|
744
|
+
"requestBody": {
|
|
745
|
+
"description": "indeterminate body object",
|
|
746
|
+
"content": {
|
|
747
|
+
"application/json": {
|
|
748
|
+
"schema": {
|
|
749
|
+
"type": "object"
|
|
750
|
+
}
|
|
751
|
+
}
|
|
752
|
+
}
|
|
753
|
+
}
|
|
754
|
+
}
|
|
755
|
+
},
|
|
756
|
+
"/config/objects/{name}": {
|
|
757
|
+
"delete": {
|
|
758
|
+
"tags": [
|
|
759
|
+
"Config"
|
|
760
|
+
],
|
|
761
|
+
"operationId": "deleteConfigObject",
|
|
762
|
+
"description": "The parameters and request body are for method: deleteConfigObject. Same endpoint also used in methods:",
|
|
763
|
+
"responses": {
|
|
764
|
+
"200": {
|
|
765
|
+
"description": "Successful operation",
|
|
766
|
+
"content": {
|
|
767
|
+
"application/json": {
|
|
768
|
+
"schema": {
|
|
769
|
+
"title": "result",
|
|
770
|
+
"type": "object"
|
|
771
|
+
}
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
}
|
|
775
|
+
},
|
|
776
|
+
"parameters": [
|
|
777
|
+
{
|
|
778
|
+
"name": "name",
|
|
779
|
+
"in": "path",
|
|
780
|
+
"required": true,
|
|
781
|
+
"schema": {
|
|
782
|
+
"title": "name",
|
|
783
|
+
"type": "string"
|
|
784
|
+
}
|
|
785
|
+
}
|
|
786
|
+
],
|
|
787
|
+
"requestBody": {
|
|
788
|
+
"content": {
|
|
789
|
+
"application/json": {
|
|
790
|
+
"schema": {
|
|
791
|
+
"type": "object"
|
|
792
|
+
},
|
|
793
|
+
"example": {}
|
|
794
|
+
}
|
|
795
|
+
}
|
|
796
|
+
}
|
|
797
|
+
}
|
|
798
|
+
},
|
|
799
|
+
"/config/precheck": {
|
|
800
|
+
"get": {
|
|
801
|
+
"tags": [
|
|
802
|
+
"Config"
|
|
803
|
+
],
|
|
804
|
+
"operationId": "getConfigPrecheck",
|
|
805
|
+
"description": "The parameters and request body are for method: getConfigPrecheck. Same endpoint also used in methods:",
|
|
806
|
+
"responses": {
|
|
807
|
+
"200": {
|
|
808
|
+
"description": "Successful operation",
|
|
809
|
+
"content": {
|
|
810
|
+
"application/json": {
|
|
811
|
+
"schema": {
|
|
812
|
+
"title": "result",
|
|
813
|
+
"type": "object"
|
|
814
|
+
}
|
|
815
|
+
}
|
|
816
|
+
}
|
|
817
|
+
}
|
|
818
|
+
},
|
|
819
|
+
"requestBody": {
|
|
820
|
+
"content": {
|
|
821
|
+
"application/json": {
|
|
822
|
+
"schema": {
|
|
823
|
+
"type": "object"
|
|
824
|
+
},
|
|
825
|
+
"example": {}
|
|
826
|
+
}
|
|
827
|
+
}
|
|
828
|
+
}
|
|
829
|
+
}
|
|
830
|
+
},
|
|
831
|
+
"/config/reload": {
|
|
832
|
+
"post": {
|
|
833
|
+
"tags": [
|
|
834
|
+
"Config"
|
|
835
|
+
],
|
|
836
|
+
"operationId": "postConfigReload",
|
|
837
|
+
"description": "The parameters and request body are for method: postConfigReload. Same endpoint also used in methods:",
|
|
838
|
+
"responses": {
|
|
839
|
+
"200": {
|
|
840
|
+
"description": "Successful operation",
|
|
841
|
+
"content": {
|
|
842
|
+
"application/json": {
|
|
843
|
+
"schema": {
|
|
844
|
+
"title": "result",
|
|
845
|
+
"type": "object"
|
|
846
|
+
}
|
|
847
|
+
}
|
|
848
|
+
}
|
|
849
|
+
}
|
|
850
|
+
},
|
|
851
|
+
"requestBody": {
|
|
852
|
+
"content": {
|
|
853
|
+
"application/json": {
|
|
854
|
+
"schema": {
|
|
855
|
+
"type": "object"
|
|
856
|
+
},
|
|
857
|
+
"example": {}
|
|
858
|
+
}
|
|
859
|
+
}
|
|
860
|
+
}
|
|
861
|
+
}
|
|
862
|
+
},
|
|
863
|
+
"/config/revert": {
|
|
864
|
+
"post": {
|
|
865
|
+
"tags": [
|
|
866
|
+
"Config"
|
|
867
|
+
],
|
|
868
|
+
"operationId": "postConfigRevert",
|
|
869
|
+
"description": "The parameters and request body are for method: postConfigRevert. Same endpoint also used in methods:",
|
|
870
|
+
"responses": {
|
|
871
|
+
"200": {
|
|
872
|
+
"description": "Successful operation",
|
|
873
|
+
"content": {
|
|
874
|
+
"application/json": {
|
|
875
|
+
"schema": {
|
|
876
|
+
"title": "result",
|
|
877
|
+
"type": "object"
|
|
878
|
+
}
|
|
879
|
+
}
|
|
880
|
+
}
|
|
881
|
+
}
|
|
882
|
+
},
|
|
883
|
+
"requestBody": {
|
|
884
|
+
"content": {
|
|
885
|
+
"application/json": {
|
|
886
|
+
"schema": {
|
|
887
|
+
"type": "object"
|
|
888
|
+
},
|
|
889
|
+
"example": {}
|
|
890
|
+
}
|
|
891
|
+
}
|
|
892
|
+
}
|
|
893
|
+
}
|
|
894
|
+
},
|
|
895
|
+
"/config/save": {
|
|
896
|
+
"post": {
|
|
897
|
+
"tags": [
|
|
898
|
+
"Config"
|
|
899
|
+
],
|
|
900
|
+
"operationId": "postConfigSave",
|
|
901
|
+
"description": "The parameters and request body are for method: postConfigSave. Same endpoint also used in methods:",
|
|
902
|
+
"responses": {
|
|
903
|
+
"200": {
|
|
904
|
+
"description": "Successful operation",
|
|
905
|
+
"content": {
|
|
906
|
+
"application/json": {
|
|
907
|
+
"schema": {
|
|
908
|
+
"title": "result",
|
|
909
|
+
"type": "object"
|
|
910
|
+
}
|
|
911
|
+
}
|
|
912
|
+
}
|
|
913
|
+
}
|
|
914
|
+
},
|
|
915
|
+
"requestBody": {
|
|
916
|
+
"content": {
|
|
917
|
+
"application/json": {
|
|
918
|
+
"schema": {
|
|
919
|
+
"type": "object"
|
|
920
|
+
},
|
|
921
|
+
"example": {}
|
|
922
|
+
}
|
|
923
|
+
}
|
|
924
|
+
}
|
|
925
|
+
}
|
|
926
|
+
},
|
|
927
|
+
"/contactgroups": {
|
|
928
|
+
"get": {
|
|
929
|
+
"tags": [
|
|
930
|
+
"Contactgroups"
|
|
931
|
+
],
|
|
932
|
+
"operationId": "getContactGroups",
|
|
933
|
+
"description": "The parameters and request body are for method: getContactGroups. Same endpoint also used in methods:",
|
|
934
|
+
"responses": {
|
|
935
|
+
"200": {
|
|
936
|
+
"description": "Successful operation",
|
|
937
|
+
"content": {
|
|
938
|
+
"application/json": {
|
|
939
|
+
"schema": {
|
|
940
|
+
"title": "result",
|
|
941
|
+
"type": "object"
|
|
942
|
+
}
|
|
943
|
+
}
|
|
944
|
+
}
|
|
945
|
+
}
|
|
946
|
+
},
|
|
947
|
+
"requestBody": {
|
|
948
|
+
"content": {
|
|
949
|
+
"application/json": {
|
|
950
|
+
"schema": {
|
|
951
|
+
"type": "object"
|
|
952
|
+
},
|
|
953
|
+
"example": {}
|
|
954
|
+
}
|
|
955
|
+
}
|
|
956
|
+
}
|
|
957
|
+
}
|
|
958
|
+
},
|
|
959
|
+
"/contactgroups/{name}": {
|
|
960
|
+
"get": {
|
|
961
|
+
"tags": [
|
|
962
|
+
"Contactgroups"
|
|
963
|
+
],
|
|
964
|
+
"operationId": "getContactGroup",
|
|
965
|
+
"description": "The parameters and request body are for method: getContactGroup. Same endpoint also used in methods:",
|
|
966
|
+
"responses": {
|
|
967
|
+
"200": {
|
|
968
|
+
"description": "Successful operation",
|
|
969
|
+
"content": {
|
|
970
|
+
"application/json": {
|
|
971
|
+
"schema": {
|
|
972
|
+
"title": "result",
|
|
973
|
+
"type": "object"
|
|
974
|
+
}
|
|
975
|
+
}
|
|
976
|
+
}
|
|
977
|
+
}
|
|
978
|
+
},
|
|
979
|
+
"parameters": [
|
|
980
|
+
{
|
|
981
|
+
"name": "name",
|
|
982
|
+
"in": "path",
|
|
983
|
+
"required": true,
|
|
984
|
+
"schema": {
|
|
985
|
+
"title": "name",
|
|
986
|
+
"type": "string"
|
|
987
|
+
}
|
|
988
|
+
}
|
|
989
|
+
],
|
|
990
|
+
"requestBody": {
|
|
991
|
+
"content": {
|
|
992
|
+
"application/json": {
|
|
993
|
+
"schema": {
|
|
994
|
+
"type": "object"
|
|
995
|
+
},
|
|
996
|
+
"example": {}
|
|
997
|
+
}
|
|
998
|
+
}
|
|
999
|
+
}
|
|
1000
|
+
}
|
|
1001
|
+
},
|
|
1002
|
+
"/contactgroups/{name}/config": {
|
|
1003
|
+
"get": {
|
|
1004
|
+
"tags": [
|
|
1005
|
+
"Contactgroups"
|
|
1006
|
+
],
|
|
1007
|
+
"operationId": "getContactGroupsConfig",
|
|
1008
|
+
"description": "The parameters and request body are for method: getContactGroupsConfig. Same endpoint also used in methods:",
|
|
1009
|
+
"responses": {
|
|
1010
|
+
"200": {
|
|
1011
|
+
"description": "Successful operation",
|
|
1012
|
+
"content": {
|
|
1013
|
+
"application/json": {
|
|
1014
|
+
"schema": {
|
|
1015
|
+
"title": "result",
|
|
1016
|
+
"type": "object"
|
|
1017
|
+
}
|
|
1018
|
+
}
|
|
1019
|
+
}
|
|
1020
|
+
}
|
|
1021
|
+
},
|
|
1022
|
+
"parameters": [
|
|
1023
|
+
{
|
|
1024
|
+
"name": "name",
|
|
1025
|
+
"in": "path",
|
|
1026
|
+
"required": true,
|
|
1027
|
+
"schema": {
|
|
1028
|
+
"title": "name",
|
|
1029
|
+
"type": "string"
|
|
1030
|
+
}
|
|
1031
|
+
}
|
|
1032
|
+
],
|
|
1033
|
+
"requestBody": {
|
|
1034
|
+
"content": {
|
|
1035
|
+
"application/json": {
|
|
1036
|
+
"schema": {
|
|
1037
|
+
"type": "object"
|
|
1038
|
+
},
|
|
1039
|
+
"example": {}
|
|
1040
|
+
}
|
|
1041
|
+
}
|
|
1042
|
+
}
|
|
1043
|
+
},
|
|
1044
|
+
"post": {
|
|
1045
|
+
"tags": [
|
|
1046
|
+
"Contactgroups"
|
|
1047
|
+
],
|
|
1048
|
+
"operationId": "postContactGroupsConfig",
|
|
1049
|
+
"description": "The parameters and request body are for method: postContactGroupsConfig. Same endpoint also used in methods:",
|
|
1050
|
+
"responses": {
|
|
1051
|
+
"200": {
|
|
1052
|
+
"description": "Successful operation",
|
|
1053
|
+
"content": {
|
|
1054
|
+
"application/json": {
|
|
1055
|
+
"schema": {
|
|
1056
|
+
"title": "result",
|
|
1057
|
+
"type": "object"
|
|
1058
|
+
}
|
|
1059
|
+
}
|
|
1060
|
+
}
|
|
1061
|
+
}
|
|
1062
|
+
},
|
|
1063
|
+
"parameters": [
|
|
1064
|
+
{
|
|
1065
|
+
"name": "name",
|
|
1066
|
+
"in": "path",
|
|
1067
|
+
"required": true,
|
|
1068
|
+
"schema": {
|
|
1069
|
+
"title": "name",
|
|
1070
|
+
"type": "string"
|
|
1071
|
+
}
|
|
1072
|
+
}
|
|
1073
|
+
],
|
|
1074
|
+
"requestBody": {
|
|
1075
|
+
"description": "indeterminate body object",
|
|
1076
|
+
"content": {
|
|
1077
|
+
"application/json": {
|
|
1078
|
+
"schema": {
|
|
1079
|
+
"type": "object"
|
|
1080
|
+
}
|
|
1081
|
+
}
|
|
1082
|
+
}
|
|
1083
|
+
}
|
|
1084
|
+
},
|
|
1085
|
+
"patch": {
|
|
1086
|
+
"tags": [
|
|
1087
|
+
"Contactgroups"
|
|
1088
|
+
],
|
|
1089
|
+
"operationId": "patchContactGroupsConfig",
|
|
1090
|
+
"description": "The parameters and request body are for method: patchContactGroupsConfig. Same endpoint also used in methods:",
|
|
1091
|
+
"responses": {
|
|
1092
|
+
"200": {
|
|
1093
|
+
"description": "Successful operation",
|
|
1094
|
+
"content": {
|
|
1095
|
+
"application/json": {
|
|
1096
|
+
"schema": {
|
|
1097
|
+
"title": "result",
|
|
1098
|
+
"type": "object"
|
|
1099
|
+
}
|
|
1100
|
+
}
|
|
1101
|
+
}
|
|
1102
|
+
}
|
|
1103
|
+
},
|
|
1104
|
+
"parameters": [
|
|
1105
|
+
{
|
|
1106
|
+
"name": "name",
|
|
1107
|
+
"in": "path",
|
|
1108
|
+
"required": true,
|
|
1109
|
+
"schema": {
|
|
1110
|
+
"title": "name",
|
|
1111
|
+
"type": "string"
|
|
1112
|
+
}
|
|
1113
|
+
}
|
|
1114
|
+
],
|
|
1115
|
+
"requestBody": {
|
|
1116
|
+
"description": "indeterminate body object",
|
|
1117
|
+
"content": {
|
|
1118
|
+
"application/json": {
|
|
1119
|
+
"schema": {
|
|
1120
|
+
"type": "object"
|
|
1121
|
+
}
|
|
1122
|
+
}
|
|
1123
|
+
}
|
|
1124
|
+
}
|
|
1125
|
+
},
|
|
1126
|
+
"delete": {
|
|
1127
|
+
"tags": [
|
|
1128
|
+
"Contactgroups"
|
|
1129
|
+
],
|
|
1130
|
+
"operationId": "deleteContactsGroupConfig",
|
|
1131
|
+
"description": "The parameters and request body are for method: deleteContactsGroupConfig. Same endpoint also used in methods:",
|
|
1132
|
+
"responses": {
|
|
1133
|
+
"200": {
|
|
1134
|
+
"description": "Successful operation",
|
|
1135
|
+
"content": {
|
|
1136
|
+
"application/json": {
|
|
1137
|
+
"schema": {
|
|
1138
|
+
"title": "result",
|
|
1139
|
+
"type": "object"
|
|
1140
|
+
}
|
|
1141
|
+
}
|
|
1142
|
+
}
|
|
1143
|
+
}
|
|
1144
|
+
},
|
|
1145
|
+
"parameters": [
|
|
1146
|
+
{
|
|
1147
|
+
"name": "name",
|
|
1148
|
+
"in": "path",
|
|
1149
|
+
"required": true,
|
|
1150
|
+
"schema": {
|
|
1151
|
+
"title": "name",
|
|
1152
|
+
"type": "string"
|
|
1153
|
+
}
|
|
1154
|
+
}
|
|
1155
|
+
],
|
|
1156
|
+
"requestBody": {
|
|
1157
|
+
"content": {
|
|
1158
|
+
"application/json": {
|
|
1159
|
+
"schema": {
|
|
1160
|
+
"type": "object"
|
|
1161
|
+
},
|
|
1162
|
+
"example": {}
|
|
1163
|
+
}
|
|
1164
|
+
}
|
|
1165
|
+
}
|
|
1166
|
+
}
|
|
1167
|
+
},
|
|
1168
|
+
"/contacts": {
|
|
1169
|
+
"get": {
|
|
1170
|
+
"tags": [
|
|
1171
|
+
"Contacts"
|
|
1172
|
+
],
|
|
1173
|
+
"operationId": "getContacts",
|
|
1174
|
+
"description": "The parameters and request body are for method: getContacts. Same endpoint also used in methods:",
|
|
1175
|
+
"responses": {
|
|
1176
|
+
"200": {
|
|
1177
|
+
"description": "Successful operation",
|
|
1178
|
+
"content": {
|
|
1179
|
+
"application/json": {
|
|
1180
|
+
"schema": {
|
|
1181
|
+
"title": "result",
|
|
1182
|
+
"type": "object"
|
|
1183
|
+
}
|
|
1184
|
+
}
|
|
1185
|
+
}
|
|
1186
|
+
}
|
|
1187
|
+
},
|
|
1188
|
+
"requestBody": {
|
|
1189
|
+
"content": {
|
|
1190
|
+
"application/json": {
|
|
1191
|
+
"schema": {
|
|
1192
|
+
"type": "object"
|
|
1193
|
+
},
|
|
1194
|
+
"example": {}
|
|
1195
|
+
}
|
|
1196
|
+
}
|
|
1197
|
+
}
|
|
1198
|
+
}
|
|
1199
|
+
},
|
|
1200
|
+
"/contacts/{name}": {
|
|
1201
|
+
"get": {
|
|
1202
|
+
"tags": [
|
|
1203
|
+
"Contacts"
|
|
1204
|
+
],
|
|
1205
|
+
"operationId": "getContact",
|
|
1206
|
+
"description": "The parameters and request body are for method: getContact. Same endpoint also used in methods:",
|
|
1207
|
+
"responses": {
|
|
1208
|
+
"200": {
|
|
1209
|
+
"description": "Successful operation",
|
|
1210
|
+
"content": {
|
|
1211
|
+
"application/json": {
|
|
1212
|
+
"schema": {
|
|
1213
|
+
"title": "result",
|
|
1214
|
+
"type": "object"
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
},
|
|
1220
|
+
"parameters": [
|
|
1221
|
+
{
|
|
1222
|
+
"name": "name",
|
|
1223
|
+
"in": "path",
|
|
1224
|
+
"required": true,
|
|
1225
|
+
"schema": {
|
|
1226
|
+
"title": "name",
|
|
1227
|
+
"type": "string"
|
|
1228
|
+
}
|
|
1229
|
+
}
|
|
1230
|
+
],
|
|
1231
|
+
"requestBody": {
|
|
1232
|
+
"content": {
|
|
1233
|
+
"application/json": {
|
|
1234
|
+
"schema": {
|
|
1235
|
+
"type": "object"
|
|
1236
|
+
},
|
|
1237
|
+
"example": {}
|
|
1238
|
+
}
|
|
1239
|
+
}
|
|
1240
|
+
}
|
|
1241
|
+
}
|
|
1242
|
+
},
|
|
1243
|
+
"/contacts/{name}/config": {
|
|
1244
|
+
"get": {
|
|
1245
|
+
"tags": [
|
|
1246
|
+
"Contacts"
|
|
1247
|
+
],
|
|
1248
|
+
"operationId": "getContactConfig",
|
|
1249
|
+
"description": "The parameters and request body are for method: getContactConfig. Same endpoint also used in methods:",
|
|
1250
|
+
"responses": {
|
|
1251
|
+
"200": {
|
|
1252
|
+
"description": "Successful operation",
|
|
1253
|
+
"content": {
|
|
1254
|
+
"application/json": {
|
|
1255
|
+
"schema": {
|
|
1256
|
+
"title": "result",
|
|
1257
|
+
"type": "object"
|
|
1258
|
+
}
|
|
1259
|
+
}
|
|
1260
|
+
}
|
|
1261
|
+
}
|
|
1262
|
+
},
|
|
1263
|
+
"parameters": [
|
|
1264
|
+
{
|
|
1265
|
+
"name": "name",
|
|
1266
|
+
"in": "path",
|
|
1267
|
+
"required": true,
|
|
1268
|
+
"schema": {
|
|
1269
|
+
"title": "name",
|
|
1270
|
+
"type": "string"
|
|
1271
|
+
}
|
|
1272
|
+
}
|
|
1273
|
+
],
|
|
1274
|
+
"requestBody": {
|
|
1275
|
+
"content": {
|
|
1276
|
+
"application/json": {
|
|
1277
|
+
"schema": {
|
|
1278
|
+
"type": "object"
|
|
1279
|
+
},
|
|
1280
|
+
"example": {}
|
|
1281
|
+
}
|
|
1282
|
+
}
|
|
1283
|
+
}
|
|
1284
|
+
},
|
|
1285
|
+
"post": {
|
|
1286
|
+
"tags": [
|
|
1287
|
+
"Contacts"
|
|
1288
|
+
],
|
|
1289
|
+
"operationId": "postContactConfig",
|
|
1290
|
+
"description": "The parameters and request body are for method: postContactConfig. Same endpoint also used in methods:",
|
|
1291
|
+
"responses": {
|
|
1292
|
+
"200": {
|
|
1293
|
+
"description": "Successful operation",
|
|
1294
|
+
"content": {
|
|
1295
|
+
"application/json": {
|
|
1296
|
+
"schema": {
|
|
1297
|
+
"title": "result",
|
|
1298
|
+
"type": "object"
|
|
1299
|
+
}
|
|
1300
|
+
}
|
|
1301
|
+
}
|
|
1302
|
+
}
|
|
1303
|
+
},
|
|
1304
|
+
"parameters": [
|
|
1305
|
+
{
|
|
1306
|
+
"name": "name",
|
|
1307
|
+
"in": "path",
|
|
1308
|
+
"required": true,
|
|
1309
|
+
"schema": {
|
|
1310
|
+
"title": "name",
|
|
1311
|
+
"type": "string"
|
|
1312
|
+
}
|
|
1313
|
+
}
|
|
1314
|
+
],
|
|
1315
|
+
"requestBody": {
|
|
1316
|
+
"description": "indeterminate body object",
|
|
1317
|
+
"content": {
|
|
1318
|
+
"application/json": {
|
|
1319
|
+
"schema": {
|
|
1320
|
+
"type": "object"
|
|
1321
|
+
}
|
|
1322
|
+
}
|
|
1323
|
+
}
|
|
1324
|
+
}
|
|
1325
|
+
},
|
|
1326
|
+
"patch": {
|
|
1327
|
+
"tags": [
|
|
1328
|
+
"Contacts"
|
|
1329
|
+
],
|
|
1330
|
+
"operationId": "patchContactConfig",
|
|
1331
|
+
"description": "The parameters and request body are for method: patchContactConfig. Same endpoint also used in methods:",
|
|
1332
|
+
"responses": {
|
|
1333
|
+
"200": {
|
|
1334
|
+
"description": "Successful operation",
|
|
1335
|
+
"content": {
|
|
1336
|
+
"application/json": {
|
|
1337
|
+
"schema": {
|
|
1338
|
+
"title": "result",
|
|
1339
|
+
"type": "object"
|
|
1340
|
+
}
|
|
1341
|
+
}
|
|
1342
|
+
}
|
|
1343
|
+
}
|
|
1344
|
+
},
|
|
1345
|
+
"parameters": [
|
|
1346
|
+
{
|
|
1347
|
+
"name": "name",
|
|
1348
|
+
"in": "path",
|
|
1349
|
+
"required": true,
|
|
1350
|
+
"schema": {
|
|
1351
|
+
"title": "name",
|
|
1352
|
+
"type": "string"
|
|
1353
|
+
}
|
|
1354
|
+
}
|
|
1355
|
+
],
|
|
1356
|
+
"requestBody": {
|
|
1357
|
+
"description": "indeterminate body object",
|
|
1358
|
+
"content": {
|
|
1359
|
+
"application/json": {
|
|
1360
|
+
"schema": {
|
|
1361
|
+
"type": "object"
|
|
1362
|
+
}
|
|
1363
|
+
}
|
|
1364
|
+
}
|
|
1365
|
+
}
|
|
1366
|
+
},
|
|
1367
|
+
"delete": {
|
|
1368
|
+
"tags": [
|
|
1369
|
+
"Contacts"
|
|
1370
|
+
],
|
|
1371
|
+
"operationId": "deleteContactConfig",
|
|
1372
|
+
"description": "The parameters and request body are for method: deleteContactConfig. Same endpoint also used in methods:",
|
|
1373
|
+
"responses": {
|
|
1374
|
+
"200": {
|
|
1375
|
+
"description": "Successful operation",
|
|
1376
|
+
"content": {
|
|
1377
|
+
"application/json": {
|
|
1378
|
+
"schema": {
|
|
1379
|
+
"title": "result",
|
|
1380
|
+
"type": "object"
|
|
1381
|
+
}
|
|
1382
|
+
}
|
|
1383
|
+
}
|
|
1384
|
+
}
|
|
1385
|
+
},
|
|
1386
|
+
"parameters": [
|
|
1387
|
+
{
|
|
1388
|
+
"name": "name",
|
|
1389
|
+
"in": "path",
|
|
1390
|
+
"required": true,
|
|
1391
|
+
"schema": {
|
|
1392
|
+
"title": "name",
|
|
1393
|
+
"type": "string"
|
|
1394
|
+
}
|
|
1395
|
+
}
|
|
1396
|
+
],
|
|
1397
|
+
"requestBody": {
|
|
1398
|
+
"content": {
|
|
1399
|
+
"application/json": {
|
|
1400
|
+
"schema": {
|
|
1401
|
+
"type": "object"
|
|
1402
|
+
},
|
|
1403
|
+
"example": {}
|
|
1404
|
+
}
|
|
1405
|
+
}
|
|
1406
|
+
}
|
|
1407
|
+
}
|
|
1408
|
+
},
|
|
1409
|
+
"/downtimes": {
|
|
1410
|
+
"get": {
|
|
1411
|
+
"tags": [
|
|
1412
|
+
"Downtimes"
|
|
1413
|
+
],
|
|
1414
|
+
"operationId": "getDowntimes",
|
|
1415
|
+
"description": "The parameters and request body are for method: getDowntimes. Same endpoint also used in methods:",
|
|
1416
|
+
"responses": {
|
|
1417
|
+
"200": {
|
|
1418
|
+
"description": "Successful operation",
|
|
1419
|
+
"content": {
|
|
1420
|
+
"application/json": {
|
|
1421
|
+
"schema": {
|
|
1422
|
+
"title": "result",
|
|
1423
|
+
"type": "object"
|
|
1424
|
+
}
|
|
1425
|
+
}
|
|
1426
|
+
}
|
|
1427
|
+
}
|
|
1428
|
+
},
|
|
1429
|
+
"requestBody": {
|
|
1430
|
+
"content": {
|
|
1431
|
+
"application/json": {
|
|
1432
|
+
"schema": {
|
|
1433
|
+
"type": "object"
|
|
1434
|
+
},
|
|
1435
|
+
"example": {}
|
|
1436
|
+
}
|
|
1437
|
+
}
|
|
1438
|
+
}
|
|
1439
|
+
}
|
|
1440
|
+
},
|
|
1441
|
+
"/downtimes/{id}": {
|
|
1442
|
+
"get": {
|
|
1443
|
+
"tags": [
|
|
1444
|
+
"Downtimes"
|
|
1445
|
+
],
|
|
1446
|
+
"operationId": "getDowntime",
|
|
1447
|
+
"description": "The parameters and request body are for method: getDowntime. Same endpoint also used in methods:",
|
|
1448
|
+
"responses": {
|
|
1449
|
+
"200": {
|
|
1450
|
+
"description": "Successful operation",
|
|
1451
|
+
"content": {
|
|
1452
|
+
"application/json": {
|
|
1453
|
+
"schema": {
|
|
1454
|
+
"title": "result",
|
|
1455
|
+
"type": "object"
|
|
1456
|
+
}
|
|
1457
|
+
}
|
|
1458
|
+
}
|
|
1459
|
+
}
|
|
1460
|
+
},
|
|
1461
|
+
"parameters": [
|
|
1462
|
+
{
|
|
1463
|
+
"name": "id",
|
|
1464
|
+
"in": "path",
|
|
1465
|
+
"required": true,
|
|
1466
|
+
"schema": {
|
|
1467
|
+
"title": "id",
|
|
1468
|
+
"type": "string"
|
|
1469
|
+
}
|
|
1470
|
+
}
|
|
1471
|
+
],
|
|
1472
|
+
"requestBody": {
|
|
1473
|
+
"content": {
|
|
1474
|
+
"application/json": {
|
|
1475
|
+
"schema": {
|
|
1476
|
+
"type": "object"
|
|
1477
|
+
},
|
|
1478
|
+
"example": {}
|
|
1479
|
+
}
|
|
1480
|
+
}
|
|
1481
|
+
}
|
|
1482
|
+
}
|
|
1483
|
+
},
|
|
1484
|
+
"/hostgroups": {
|
|
1485
|
+
"get": {
|
|
1486
|
+
"tags": [
|
|
1487
|
+
"Hostgroups"
|
|
1488
|
+
],
|
|
1489
|
+
"operationId": "getHostgroups",
|
|
1490
|
+
"description": "The parameters and request body are for method: getHostgroups. Same endpoint also used in methods:",
|
|
1491
|
+
"responses": {
|
|
1492
|
+
"200": {
|
|
1493
|
+
"description": "Successful operation",
|
|
1494
|
+
"content": {
|
|
1495
|
+
"application/json": {
|
|
1496
|
+
"schema": {
|
|
1497
|
+
"title": "result",
|
|
1498
|
+
"type": "object"
|
|
1499
|
+
}
|
|
1500
|
+
}
|
|
1501
|
+
}
|
|
1502
|
+
}
|
|
1503
|
+
},
|
|
1504
|
+
"requestBody": {
|
|
1505
|
+
"content": {
|
|
1506
|
+
"application/json": {
|
|
1507
|
+
"schema": {
|
|
1508
|
+
"type": "object"
|
|
1509
|
+
},
|
|
1510
|
+
"example": {}
|
|
1511
|
+
}
|
|
1512
|
+
}
|
|
1513
|
+
}
|
|
1514
|
+
}
|
|
1515
|
+
},
|
|
1516
|
+
"/hostgroups/{name}": {
|
|
1517
|
+
"get": {
|
|
1518
|
+
"tags": [
|
|
1519
|
+
"Hostgroups"
|
|
1520
|
+
],
|
|
1521
|
+
"operationId": "getHostgroup",
|
|
1522
|
+
"description": "The parameters and request body are for method: getHostgroup. Same endpoint also used in methods:",
|
|
1523
|
+
"responses": {
|
|
1524
|
+
"200": {
|
|
1525
|
+
"description": "Successful operation",
|
|
1526
|
+
"content": {
|
|
1527
|
+
"application/json": {
|
|
1528
|
+
"schema": {
|
|
1529
|
+
"title": "result",
|
|
1530
|
+
"type": "object"
|
|
1531
|
+
}
|
|
1532
|
+
}
|
|
1533
|
+
}
|
|
1534
|
+
}
|
|
1535
|
+
},
|
|
1536
|
+
"parameters": [
|
|
1537
|
+
{
|
|
1538
|
+
"name": "name",
|
|
1539
|
+
"in": "path",
|
|
1540
|
+
"required": true,
|
|
1541
|
+
"schema": {
|
|
1542
|
+
"title": "name",
|
|
1543
|
+
"type": "string"
|
|
1544
|
+
}
|
|
1545
|
+
}
|
|
1546
|
+
],
|
|
1547
|
+
"requestBody": {
|
|
1548
|
+
"content": {
|
|
1549
|
+
"application/json": {
|
|
1550
|
+
"schema": {
|
|
1551
|
+
"type": "object"
|
|
1552
|
+
},
|
|
1553
|
+
"example": {}
|
|
1554
|
+
}
|
|
1555
|
+
}
|
|
1556
|
+
}
|
|
1557
|
+
}
|
|
1558
|
+
},
|
|
1559
|
+
"/hostgroups/{name}/config": {
|
|
1560
|
+
"get": {
|
|
1561
|
+
"tags": [
|
|
1562
|
+
"Hostgroups"
|
|
1563
|
+
],
|
|
1564
|
+
"operationId": "getHostgroupConfig",
|
|
1565
|
+
"description": "The parameters and request body are for method: getHostgroupConfig. Same endpoint also used in methods:",
|
|
1566
|
+
"responses": {
|
|
1567
|
+
"200": {
|
|
1568
|
+
"description": "Successful operation",
|
|
1569
|
+
"content": {
|
|
1570
|
+
"application/json": {
|
|
1571
|
+
"schema": {
|
|
1572
|
+
"title": "result",
|
|
1573
|
+
"type": "object"
|
|
1574
|
+
}
|
|
1575
|
+
}
|
|
1576
|
+
}
|
|
1577
|
+
}
|
|
1578
|
+
},
|
|
1579
|
+
"parameters": [
|
|
1580
|
+
{
|
|
1581
|
+
"name": "name",
|
|
1582
|
+
"in": "path",
|
|
1583
|
+
"required": true,
|
|
1584
|
+
"schema": {
|
|
1585
|
+
"title": "name",
|
|
1586
|
+
"type": "string"
|
|
1587
|
+
}
|
|
1588
|
+
}
|
|
1589
|
+
],
|
|
1590
|
+
"requestBody": {
|
|
1591
|
+
"content": {
|
|
1592
|
+
"application/json": {
|
|
1593
|
+
"schema": {
|
|
1594
|
+
"type": "object"
|
|
1595
|
+
},
|
|
1596
|
+
"example": {}
|
|
1597
|
+
}
|
|
1598
|
+
}
|
|
1599
|
+
}
|
|
1600
|
+
},
|
|
1601
|
+
"post": {
|
|
1602
|
+
"tags": [
|
|
1603
|
+
"Hostgroups"
|
|
1604
|
+
],
|
|
1605
|
+
"operationId": "postHostgroupConfig",
|
|
1606
|
+
"description": "The parameters and request body are for method: postHostgroupConfig. Same endpoint also used in methods:",
|
|
1607
|
+
"responses": {
|
|
1608
|
+
"200": {
|
|
1609
|
+
"description": "Successful operation",
|
|
1610
|
+
"content": {
|
|
1611
|
+
"application/json": {
|
|
1612
|
+
"schema": {
|
|
1613
|
+
"title": "result",
|
|
1614
|
+
"type": "object"
|
|
1615
|
+
}
|
|
1616
|
+
}
|
|
1617
|
+
}
|
|
1618
|
+
}
|
|
1619
|
+
},
|
|
1620
|
+
"parameters": [
|
|
1621
|
+
{
|
|
1622
|
+
"name": "name",
|
|
1623
|
+
"in": "path",
|
|
1624
|
+
"required": true,
|
|
1625
|
+
"schema": {
|
|
1626
|
+
"title": "name",
|
|
1627
|
+
"type": "string"
|
|
1628
|
+
}
|
|
1629
|
+
}
|
|
1630
|
+
],
|
|
1631
|
+
"requestBody": {
|
|
1632
|
+
"description": "indeterminate body object",
|
|
1633
|
+
"content": {
|
|
1634
|
+
"application/json": {
|
|
1635
|
+
"schema": {
|
|
1636
|
+
"type": "object"
|
|
1637
|
+
}
|
|
1638
|
+
}
|
|
1639
|
+
}
|
|
1640
|
+
}
|
|
1641
|
+
},
|
|
1642
|
+
"patch": {
|
|
1643
|
+
"tags": [
|
|
1644
|
+
"Hostgroups"
|
|
1645
|
+
],
|
|
1646
|
+
"operationId": "patchHostgroupConfig",
|
|
1647
|
+
"description": "The parameters and request body are for method: patchHostgroupConfig. Same endpoint also used in methods:",
|
|
1648
|
+
"responses": {
|
|
1649
|
+
"200": {
|
|
1650
|
+
"description": "Successful operation",
|
|
1651
|
+
"content": {
|
|
1652
|
+
"application/json": {
|
|
1653
|
+
"schema": {
|
|
1654
|
+
"title": "result",
|
|
1655
|
+
"type": "object"
|
|
1656
|
+
}
|
|
1657
|
+
}
|
|
1658
|
+
}
|
|
1659
|
+
}
|
|
1660
|
+
},
|
|
1661
|
+
"parameters": [
|
|
1662
|
+
{
|
|
1663
|
+
"name": "name",
|
|
1664
|
+
"in": "path",
|
|
1665
|
+
"required": true,
|
|
1666
|
+
"schema": {
|
|
1667
|
+
"title": "name",
|
|
1668
|
+
"type": "string"
|
|
1669
|
+
}
|
|
1670
|
+
}
|
|
1671
|
+
],
|
|
1672
|
+
"requestBody": {
|
|
1673
|
+
"description": "indeterminate body object",
|
|
1674
|
+
"content": {
|
|
1675
|
+
"application/json": {
|
|
1676
|
+
"schema": {
|
|
1677
|
+
"type": "object"
|
|
1678
|
+
}
|
|
1679
|
+
}
|
|
1680
|
+
}
|
|
1681
|
+
}
|
|
1682
|
+
},
|
|
1683
|
+
"delete": {
|
|
1684
|
+
"tags": [
|
|
1685
|
+
"Hostgroups"
|
|
1686
|
+
],
|
|
1687
|
+
"operationId": "deleteHostgroupConfig",
|
|
1688
|
+
"description": "The parameters and request body are for method: deleteHostgroupConfig. Same endpoint also used in methods:",
|
|
1689
|
+
"responses": {
|
|
1690
|
+
"200": {
|
|
1691
|
+
"description": "Successful operation",
|
|
1692
|
+
"content": {
|
|
1693
|
+
"application/json": {
|
|
1694
|
+
"schema": {
|
|
1695
|
+
"title": "result",
|
|
1696
|
+
"type": "object"
|
|
1697
|
+
}
|
|
1698
|
+
}
|
|
1699
|
+
}
|
|
1700
|
+
}
|
|
1701
|
+
},
|
|
1702
|
+
"parameters": [
|
|
1703
|
+
{
|
|
1704
|
+
"name": "name",
|
|
1705
|
+
"in": "path",
|
|
1706
|
+
"required": true,
|
|
1707
|
+
"schema": {
|
|
1708
|
+
"title": "name",
|
|
1709
|
+
"type": "string"
|
|
1710
|
+
}
|
|
1711
|
+
}
|
|
1712
|
+
],
|
|
1713
|
+
"requestBody": {
|
|
1714
|
+
"content": {
|
|
1715
|
+
"application/json": {
|
|
1716
|
+
"schema": {
|
|
1717
|
+
"type": "object"
|
|
1718
|
+
},
|
|
1719
|
+
"example": {}
|
|
1720
|
+
}
|
|
1721
|
+
}
|
|
1722
|
+
}
|
|
1723
|
+
}
|
|
1724
|
+
},
|
|
1725
|
+
"/hostgroups/{name}/outages": {
|
|
1726
|
+
"get": {
|
|
1727
|
+
"tags": [
|
|
1728
|
+
"Hostgroups"
|
|
1729
|
+
],
|
|
1730
|
+
"operationId": "getHostgroupOutages",
|
|
1731
|
+
"description": "The parameters and request body are for method: getHostgroupOutages. Same endpoint also used in methods:",
|
|
1732
|
+
"responses": {
|
|
1733
|
+
"200": {
|
|
1734
|
+
"description": "Successful operation",
|
|
1735
|
+
"content": {
|
|
1736
|
+
"application/json": {
|
|
1737
|
+
"schema": {
|
|
1738
|
+
"title": "result",
|
|
1739
|
+
"type": "object"
|
|
1740
|
+
}
|
|
1741
|
+
}
|
|
1742
|
+
}
|
|
1743
|
+
}
|
|
1744
|
+
},
|
|
1745
|
+
"parameters": [
|
|
1746
|
+
{
|
|
1747
|
+
"name": "name",
|
|
1748
|
+
"in": "path",
|
|
1749
|
+
"required": true,
|
|
1750
|
+
"schema": {
|
|
1751
|
+
"title": "name",
|
|
1752
|
+
"type": "string"
|
|
1753
|
+
}
|
|
1754
|
+
}
|
|
1755
|
+
],
|
|
1756
|
+
"requestBody": {
|
|
1757
|
+
"content": {
|
|
1758
|
+
"application/json": {
|
|
1759
|
+
"schema": {
|
|
1760
|
+
"type": "object"
|
|
1761
|
+
},
|
|
1762
|
+
"example": {}
|
|
1763
|
+
}
|
|
1764
|
+
}
|
|
1765
|
+
}
|
|
1766
|
+
}
|
|
1767
|
+
},
|
|
1768
|
+
"/hostgroups/{name}/stats": {
|
|
1769
|
+
"get": {
|
|
1770
|
+
"tags": [
|
|
1771
|
+
"Hostgroups"
|
|
1772
|
+
],
|
|
1773
|
+
"operationId": "getHostgroupStats",
|
|
1774
|
+
"description": "The parameters and request body are for method: getHostgroupStats. Same endpoint also used in methods:",
|
|
1775
|
+
"responses": {
|
|
1776
|
+
"200": {
|
|
1777
|
+
"description": "Successful operation",
|
|
1778
|
+
"content": {
|
|
1779
|
+
"application/json": {
|
|
1780
|
+
"schema": {
|
|
1781
|
+
"title": "result",
|
|
1782
|
+
"type": "object"
|
|
1783
|
+
}
|
|
1784
|
+
}
|
|
1785
|
+
}
|
|
1786
|
+
}
|
|
1787
|
+
},
|
|
1788
|
+
"parameters": [
|
|
1789
|
+
{
|
|
1790
|
+
"name": "name",
|
|
1791
|
+
"in": "path",
|
|
1792
|
+
"required": true,
|
|
1793
|
+
"schema": {
|
|
1794
|
+
"title": "name",
|
|
1795
|
+
"type": "string"
|
|
1796
|
+
}
|
|
1797
|
+
}
|
|
1798
|
+
],
|
|
1799
|
+
"requestBody": {
|
|
1800
|
+
"content": {
|
|
1801
|
+
"application/json": {
|
|
1802
|
+
"schema": {
|
|
1803
|
+
"type": "object"
|
|
1804
|
+
},
|
|
1805
|
+
"example": {}
|
|
1806
|
+
}
|
|
1807
|
+
}
|
|
1808
|
+
}
|
|
1809
|
+
}
|
|
1810
|
+
},
|
|
1811
|
+
"/hosts": {
|
|
1812
|
+
"get": {
|
|
1813
|
+
"tags": [
|
|
1814
|
+
"Hosts"
|
|
1815
|
+
],
|
|
1816
|
+
"operationId": "getHosts",
|
|
1817
|
+
"description": "The parameters and request body are for method: getHosts. Same endpoint also used in methods:",
|
|
1818
|
+
"responses": {
|
|
1819
|
+
"200": {
|
|
1820
|
+
"description": "Successful operation",
|
|
1821
|
+
"content": {
|
|
1822
|
+
"application/json": {
|
|
1823
|
+
"schema": {
|
|
1824
|
+
"title": "result",
|
|
1825
|
+
"type": "object"
|
|
1826
|
+
}
|
|
1827
|
+
}
|
|
1828
|
+
}
|
|
1829
|
+
}
|
|
1830
|
+
},
|
|
1831
|
+
"requestBody": {
|
|
1832
|
+
"content": {
|
|
1833
|
+
"application/json": {
|
|
1834
|
+
"schema": {
|
|
1835
|
+
"type": "object"
|
|
1836
|
+
},
|
|
1837
|
+
"example": {}
|
|
1838
|
+
}
|
|
1839
|
+
}
|
|
1840
|
+
}
|
|
1841
|
+
}
|
|
1842
|
+
},
|
|
1843
|
+
"/hosts/{name}": {
|
|
1844
|
+
"get": {
|
|
1845
|
+
"tags": [
|
|
1846
|
+
"Hosts"
|
|
1847
|
+
],
|
|
1848
|
+
"operationId": "getHost",
|
|
1849
|
+
"description": "The parameters and request body are for method: getHost. Same endpoint also used in methods:",
|
|
1850
|
+
"responses": {
|
|
1851
|
+
"200": {
|
|
1852
|
+
"description": "Successful operation",
|
|
1853
|
+
"content": {
|
|
1854
|
+
"application/json": {
|
|
1855
|
+
"schema": {
|
|
1856
|
+
"title": "result",
|
|
1857
|
+
"type": "object"
|
|
1858
|
+
}
|
|
1859
|
+
}
|
|
1860
|
+
}
|
|
1861
|
+
}
|
|
1862
|
+
},
|
|
1863
|
+
"parameters": [
|
|
1864
|
+
{
|
|
1865
|
+
"name": "name",
|
|
1866
|
+
"in": "path",
|
|
1867
|
+
"required": true,
|
|
1868
|
+
"schema": {
|
|
1869
|
+
"title": "name",
|
|
1870
|
+
"type": "string"
|
|
1871
|
+
}
|
|
1872
|
+
}
|
|
1873
|
+
],
|
|
1874
|
+
"requestBody": {
|
|
1875
|
+
"content": {
|
|
1876
|
+
"application/json": {
|
|
1877
|
+
"schema": {
|
|
1878
|
+
"type": "object"
|
|
1879
|
+
},
|
|
1880
|
+
"example": {}
|
|
1881
|
+
}
|
|
1882
|
+
}
|
|
1883
|
+
}
|
|
1884
|
+
}
|
|
1885
|
+
},
|
|
1886
|
+
"/hosts/{name}/alerts": {
|
|
1887
|
+
"get": {
|
|
1888
|
+
"tags": [
|
|
1889
|
+
"Hosts"
|
|
1890
|
+
],
|
|
1891
|
+
"operationId": "getHostAlerts",
|
|
1892
|
+
"description": "The parameters and request body are for method: getHostAlerts. Same endpoint also used in methods:",
|
|
1893
|
+
"responses": {
|
|
1894
|
+
"200": {
|
|
1895
|
+
"description": "Successful operation",
|
|
1896
|
+
"content": {
|
|
1897
|
+
"application/json": {
|
|
1898
|
+
"schema": {
|
|
1899
|
+
"title": "result",
|
|
1900
|
+
"type": "object"
|
|
1901
|
+
}
|
|
1902
|
+
}
|
|
1903
|
+
}
|
|
1904
|
+
}
|
|
1905
|
+
},
|
|
1906
|
+
"parameters": [
|
|
1907
|
+
{
|
|
1908
|
+
"name": "name",
|
|
1909
|
+
"in": "path",
|
|
1910
|
+
"required": true,
|
|
1911
|
+
"schema": {
|
|
1912
|
+
"title": "name",
|
|
1913
|
+
"type": "string"
|
|
1914
|
+
}
|
|
1915
|
+
}
|
|
1916
|
+
],
|
|
1917
|
+
"requestBody": {
|
|
1918
|
+
"content": {
|
|
1919
|
+
"application/json": {
|
|
1920
|
+
"schema": {
|
|
1921
|
+
"type": "object"
|
|
1922
|
+
},
|
|
1923
|
+
"example": {}
|
|
1924
|
+
}
|
|
1925
|
+
}
|
|
1926
|
+
}
|
|
1927
|
+
}
|
|
1928
|
+
},
|
|
1929
|
+
"/hosts/{name}/commandline": {
|
|
1930
|
+
"get": {
|
|
1931
|
+
"tags": [
|
|
1932
|
+
"Hosts"
|
|
1933
|
+
],
|
|
1934
|
+
"operationId": "getHostCommandLine",
|
|
1935
|
+
"description": "The parameters and request body are for method: getHostCommandLine. Same endpoint also used in methods:",
|
|
1936
|
+
"responses": {
|
|
1937
|
+
"200": {
|
|
1938
|
+
"description": "Successful operation",
|
|
1939
|
+
"content": {
|
|
1940
|
+
"application/json": {
|
|
1941
|
+
"schema": {
|
|
1942
|
+
"title": "result",
|
|
1943
|
+
"type": "object"
|
|
1944
|
+
}
|
|
1945
|
+
}
|
|
1946
|
+
}
|
|
1947
|
+
}
|
|
1948
|
+
},
|
|
1949
|
+
"parameters": [
|
|
1950
|
+
{
|
|
1951
|
+
"name": "name",
|
|
1952
|
+
"in": "path",
|
|
1953
|
+
"required": true,
|
|
1954
|
+
"schema": {
|
|
1955
|
+
"title": "name",
|
|
1956
|
+
"type": "string"
|
|
1957
|
+
}
|
|
1958
|
+
}
|
|
1959
|
+
],
|
|
1960
|
+
"requestBody": {
|
|
1961
|
+
"content": {
|
|
1962
|
+
"application/json": {
|
|
1963
|
+
"schema": {
|
|
1964
|
+
"type": "object"
|
|
1965
|
+
},
|
|
1966
|
+
"example": {}
|
|
1967
|
+
}
|
|
1968
|
+
}
|
|
1969
|
+
}
|
|
1970
|
+
}
|
|
1971
|
+
},
|
|
1972
|
+
"/hosts/{name}/config": {
|
|
1973
|
+
"get": {
|
|
1974
|
+
"tags": [
|
|
1975
|
+
"Hosts"
|
|
1976
|
+
],
|
|
1977
|
+
"operationId": "getHostConfig",
|
|
1978
|
+
"description": "The parameters and request body are for method: getHostConfig. Same endpoint also used in methods:",
|
|
1979
|
+
"responses": {
|
|
1980
|
+
"200": {
|
|
1981
|
+
"description": "Successful operation",
|
|
1982
|
+
"content": {
|
|
1983
|
+
"application/json": {
|
|
1984
|
+
"schema": {
|
|
1985
|
+
"title": "result",
|
|
1986
|
+
"type": "object"
|
|
1987
|
+
}
|
|
1988
|
+
}
|
|
1989
|
+
}
|
|
1990
|
+
}
|
|
1991
|
+
},
|
|
1992
|
+
"parameters": [
|
|
1993
|
+
{
|
|
1994
|
+
"name": "name",
|
|
1995
|
+
"in": "path",
|
|
1996
|
+
"required": true,
|
|
1997
|
+
"schema": {
|
|
1998
|
+
"title": "name",
|
|
1999
|
+
"type": "string"
|
|
2000
|
+
}
|
|
2001
|
+
}
|
|
2002
|
+
],
|
|
2003
|
+
"requestBody": {
|
|
2004
|
+
"content": {
|
|
2005
|
+
"application/json": {
|
|
2006
|
+
"schema": {
|
|
2007
|
+
"type": "object"
|
|
2008
|
+
},
|
|
2009
|
+
"example": {}
|
|
2010
|
+
}
|
|
2011
|
+
}
|
|
2012
|
+
}
|
|
2013
|
+
},
|
|
2014
|
+
"post": {
|
|
2015
|
+
"tags": [
|
|
2016
|
+
"Hosts"
|
|
2017
|
+
],
|
|
2018
|
+
"operationId": "postHostConfig",
|
|
2019
|
+
"description": "The parameters and request body are for method: postHostConfig. Same endpoint also used in methods:",
|
|
2020
|
+
"responses": {
|
|
2021
|
+
"200": {
|
|
2022
|
+
"description": "Successful operation",
|
|
2023
|
+
"content": {
|
|
2024
|
+
"application/json": {
|
|
2025
|
+
"schema": {
|
|
2026
|
+
"title": "result",
|
|
2027
|
+
"type": "object"
|
|
2028
|
+
}
|
|
2029
|
+
}
|
|
2030
|
+
}
|
|
2031
|
+
}
|
|
2032
|
+
},
|
|
2033
|
+
"parameters": [
|
|
2034
|
+
{
|
|
2035
|
+
"name": "name",
|
|
2036
|
+
"in": "path",
|
|
2037
|
+
"required": true,
|
|
2038
|
+
"schema": {
|
|
2039
|
+
"title": "name",
|
|
2040
|
+
"type": "string"
|
|
2041
|
+
}
|
|
2042
|
+
}
|
|
2043
|
+
],
|
|
2044
|
+
"requestBody": {
|
|
2045
|
+
"description": "indeterminate body object",
|
|
2046
|
+
"content": {
|
|
2047
|
+
"application/json": {
|
|
2048
|
+
"schema": {
|
|
2049
|
+
"type": "object"
|
|
2050
|
+
}
|
|
2051
|
+
}
|
|
2052
|
+
}
|
|
2053
|
+
}
|
|
2054
|
+
},
|
|
2055
|
+
"patch": {
|
|
2056
|
+
"tags": [
|
|
2057
|
+
"Hosts"
|
|
2058
|
+
],
|
|
2059
|
+
"operationId": "patchHostConfig",
|
|
2060
|
+
"description": "The parameters and request body are for method: patchHostConfig. Same endpoint also used in methods:",
|
|
2061
|
+
"responses": {
|
|
2062
|
+
"200": {
|
|
2063
|
+
"description": "Successful operation",
|
|
2064
|
+
"content": {
|
|
2065
|
+
"application/json": {
|
|
2066
|
+
"schema": {
|
|
2067
|
+
"title": "result",
|
|
2068
|
+
"type": "object"
|
|
2069
|
+
}
|
|
2070
|
+
}
|
|
2071
|
+
}
|
|
2072
|
+
}
|
|
2073
|
+
},
|
|
2074
|
+
"parameters": [
|
|
2075
|
+
{
|
|
2076
|
+
"name": "name",
|
|
2077
|
+
"in": "path",
|
|
2078
|
+
"required": true,
|
|
2079
|
+
"schema": {
|
|
2080
|
+
"title": "name",
|
|
2081
|
+
"type": "string"
|
|
2082
|
+
}
|
|
2083
|
+
}
|
|
2084
|
+
],
|
|
2085
|
+
"requestBody": {
|
|
2086
|
+
"description": "indeterminate body object",
|
|
2087
|
+
"content": {
|
|
2088
|
+
"application/json": {
|
|
2089
|
+
"schema": {
|
|
2090
|
+
"type": "object"
|
|
2091
|
+
}
|
|
2092
|
+
}
|
|
2093
|
+
}
|
|
2094
|
+
}
|
|
2095
|
+
},
|
|
2096
|
+
"delete": {
|
|
2097
|
+
"tags": [
|
|
2098
|
+
"Hosts"
|
|
2099
|
+
],
|
|
2100
|
+
"operationId": "deleteHostConfig",
|
|
2101
|
+
"description": "The parameters and request body are for method: deleteHostConfig. Same endpoint also used in methods:",
|
|
2102
|
+
"responses": {
|
|
2103
|
+
"200": {
|
|
2104
|
+
"description": "Successful operation",
|
|
2105
|
+
"content": {
|
|
2106
|
+
"application/json": {
|
|
2107
|
+
"schema": {
|
|
2108
|
+
"title": "result",
|
|
2109
|
+
"type": "object"
|
|
2110
|
+
}
|
|
2111
|
+
}
|
|
2112
|
+
}
|
|
2113
|
+
}
|
|
2114
|
+
},
|
|
2115
|
+
"parameters": [
|
|
2116
|
+
{
|
|
2117
|
+
"name": "name",
|
|
2118
|
+
"in": "path",
|
|
2119
|
+
"required": true,
|
|
2120
|
+
"schema": {
|
|
2121
|
+
"title": "name",
|
|
2122
|
+
"type": "string"
|
|
2123
|
+
}
|
|
2124
|
+
}
|
|
2125
|
+
],
|
|
2126
|
+
"requestBody": {
|
|
2127
|
+
"content": {
|
|
2128
|
+
"application/json": {
|
|
2129
|
+
"schema": {
|
|
2130
|
+
"type": "object"
|
|
2131
|
+
},
|
|
2132
|
+
"example": {}
|
|
2133
|
+
}
|
|
2134
|
+
}
|
|
2135
|
+
}
|
|
2136
|
+
}
|
|
2137
|
+
},
|
|
2138
|
+
"/hosts/{name}/notifications": {
|
|
2139
|
+
"get": {
|
|
2140
|
+
"tags": [
|
|
2141
|
+
"Hosts"
|
|
2142
|
+
],
|
|
2143
|
+
"operationId": "getHostNotifications",
|
|
2144
|
+
"description": "The parameters and request body are for method: getHostNotifications. Same endpoint also used in methods:",
|
|
2145
|
+
"responses": {
|
|
2146
|
+
"200": {
|
|
2147
|
+
"description": "Successful operation",
|
|
2148
|
+
"content": {
|
|
2149
|
+
"application/json": {
|
|
2150
|
+
"schema": {
|
|
2151
|
+
"title": "result",
|
|
2152
|
+
"type": "object"
|
|
2153
|
+
}
|
|
2154
|
+
}
|
|
2155
|
+
}
|
|
2156
|
+
}
|
|
2157
|
+
},
|
|
2158
|
+
"parameters": [
|
|
2159
|
+
{
|
|
2160
|
+
"name": "name",
|
|
2161
|
+
"in": "path",
|
|
2162
|
+
"required": true,
|
|
2163
|
+
"schema": {
|
|
2164
|
+
"title": "name",
|
|
2165
|
+
"type": "string"
|
|
2166
|
+
}
|
|
2167
|
+
}
|
|
2168
|
+
],
|
|
2169
|
+
"requestBody": {
|
|
2170
|
+
"content": {
|
|
2171
|
+
"application/json": {
|
|
2172
|
+
"schema": {
|
|
2173
|
+
"type": "object"
|
|
2174
|
+
},
|
|
2175
|
+
"example": {}
|
|
2176
|
+
}
|
|
2177
|
+
}
|
|
2178
|
+
}
|
|
2179
|
+
}
|
|
2180
|
+
},
|
|
2181
|
+
"/hosts/{name}/outages": {
|
|
2182
|
+
"get": {
|
|
2183
|
+
"tags": [
|
|
2184
|
+
"Hosts"
|
|
2185
|
+
],
|
|
2186
|
+
"operationId": "getHostOutages",
|
|
2187
|
+
"description": "The parameters and request body are for method: getHostOutages. Same endpoint also used in methods:",
|
|
2188
|
+
"responses": {
|
|
2189
|
+
"200": {
|
|
2190
|
+
"description": "Successful operation",
|
|
2191
|
+
"content": {
|
|
2192
|
+
"application/json": {
|
|
2193
|
+
"schema": {
|
|
2194
|
+
"title": "result",
|
|
2195
|
+
"type": "object"
|
|
2196
|
+
}
|
|
2197
|
+
}
|
|
2198
|
+
}
|
|
2199
|
+
}
|
|
2200
|
+
},
|
|
2201
|
+
"parameters": [
|
|
2202
|
+
{
|
|
2203
|
+
"name": "name",
|
|
2204
|
+
"in": "path",
|
|
2205
|
+
"required": true,
|
|
2206
|
+
"schema": {
|
|
2207
|
+
"title": "name",
|
|
2208
|
+
"type": "string"
|
|
2209
|
+
}
|
|
2210
|
+
}
|
|
2211
|
+
],
|
|
2212
|
+
"requestBody": {
|
|
2213
|
+
"content": {
|
|
2214
|
+
"application/json": {
|
|
2215
|
+
"schema": {
|
|
2216
|
+
"type": "object"
|
|
2217
|
+
},
|
|
2218
|
+
"example": {}
|
|
2219
|
+
}
|
|
2220
|
+
}
|
|
2221
|
+
}
|
|
2222
|
+
}
|
|
2223
|
+
},
|
|
2224
|
+
"/hosts/{name}/services": {
|
|
2225
|
+
"get": {
|
|
2226
|
+
"tags": [
|
|
2227
|
+
"Hosts"
|
|
2228
|
+
],
|
|
2229
|
+
"operationId": "getHostServices",
|
|
2230
|
+
"description": "The parameters and request body are for method: getHostServices. Same endpoint also used in methods:",
|
|
2231
|
+
"responses": {
|
|
2232
|
+
"200": {
|
|
2233
|
+
"description": "Successful operation",
|
|
2234
|
+
"content": {
|
|
2235
|
+
"application/json": {
|
|
2236
|
+
"schema": {
|
|
2237
|
+
"title": "result",
|
|
2238
|
+
"type": "object"
|
|
2239
|
+
}
|
|
2240
|
+
}
|
|
2241
|
+
}
|
|
2242
|
+
}
|
|
2243
|
+
},
|
|
2244
|
+
"parameters": [
|
|
2245
|
+
{
|
|
2246
|
+
"name": "name",
|
|
2247
|
+
"in": "path",
|
|
2248
|
+
"required": true,
|
|
2249
|
+
"schema": {
|
|
2250
|
+
"title": "name",
|
|
2251
|
+
"type": "string"
|
|
2252
|
+
}
|
|
2253
|
+
}
|
|
2254
|
+
],
|
|
2255
|
+
"requestBody": {
|
|
2256
|
+
"content": {
|
|
2257
|
+
"application/json": {
|
|
2258
|
+
"schema": {
|
|
2259
|
+
"type": "object"
|
|
2260
|
+
},
|
|
2261
|
+
"example": {}
|
|
2262
|
+
}
|
|
2263
|
+
}
|
|
2264
|
+
}
|
|
2265
|
+
}
|
|
2266
|
+
},
|
|
2267
|
+
"/hosts/outages": {
|
|
2268
|
+
"get": {
|
|
2269
|
+
"tags": [
|
|
2270
|
+
"Hosts"
|
|
2271
|
+
],
|
|
2272
|
+
"operationId": "getOutages",
|
|
2273
|
+
"description": "The parameters and request body are for method: getOutages. Same endpoint also used in methods:",
|
|
2274
|
+
"responses": {
|
|
2275
|
+
"200": {
|
|
2276
|
+
"description": "Successful operation",
|
|
2277
|
+
"content": {
|
|
2278
|
+
"application/json": {
|
|
2279
|
+
"schema": {
|
|
2280
|
+
"title": "result",
|
|
2281
|
+
"type": "object"
|
|
2282
|
+
}
|
|
2283
|
+
}
|
|
2284
|
+
}
|
|
2285
|
+
}
|
|
2286
|
+
},
|
|
2287
|
+
"requestBody": {
|
|
2288
|
+
"content": {
|
|
2289
|
+
"application/json": {
|
|
2290
|
+
"schema": {
|
|
2291
|
+
"type": "object"
|
|
2292
|
+
},
|
|
2293
|
+
"example": {}
|
|
2294
|
+
}
|
|
2295
|
+
}
|
|
2296
|
+
}
|
|
2297
|
+
}
|
|
2298
|
+
},
|
|
2299
|
+
"/hosts/stats": {
|
|
2300
|
+
"get": {
|
|
2301
|
+
"tags": [
|
|
2302
|
+
"Hosts"
|
|
2303
|
+
],
|
|
2304
|
+
"operationId": "getHostStats",
|
|
2305
|
+
"description": "The parameters and request body are for method: getHostStats. Same endpoint also used in methods:",
|
|
2306
|
+
"responses": {
|
|
2307
|
+
"200": {
|
|
2308
|
+
"description": "Successful operation",
|
|
2309
|
+
"content": {
|
|
2310
|
+
"application/json": {
|
|
2311
|
+
"schema": {
|
|
2312
|
+
"title": "result",
|
|
2313
|
+
"type": "object"
|
|
2314
|
+
}
|
|
2315
|
+
}
|
|
2316
|
+
}
|
|
2317
|
+
}
|
|
2318
|
+
},
|
|
2319
|
+
"requestBody": {
|
|
2320
|
+
"content": {
|
|
2321
|
+
"application/json": {
|
|
2322
|
+
"schema": {
|
|
2323
|
+
"type": "object"
|
|
2324
|
+
},
|
|
2325
|
+
"example": {}
|
|
2326
|
+
}
|
|
2327
|
+
}
|
|
2328
|
+
}
|
|
2329
|
+
}
|
|
2330
|
+
},
|
|
2331
|
+
"/hosts/totals": {
|
|
2332
|
+
"get": {
|
|
2333
|
+
"tags": [
|
|
2334
|
+
"Hosts"
|
|
2335
|
+
],
|
|
2336
|
+
"operationId": "getHostTotals",
|
|
2337
|
+
"description": "The parameters and request body are for method: getHostTotals. Same endpoint also used in methods:",
|
|
2338
|
+
"responses": {
|
|
2339
|
+
"200": {
|
|
2340
|
+
"description": "Successful operation",
|
|
2341
|
+
"content": {
|
|
2342
|
+
"application/json": {
|
|
2343
|
+
"schema": {
|
|
2344
|
+
"title": "result",
|
|
2345
|
+
"type": "object"
|
|
2346
|
+
}
|
|
2347
|
+
}
|
|
2348
|
+
}
|
|
2349
|
+
}
|
|
2350
|
+
},
|
|
2351
|
+
"requestBody": {
|
|
2352
|
+
"content": {
|
|
2353
|
+
"application/json": {
|
|
2354
|
+
"schema": {
|
|
2355
|
+
"type": "object"
|
|
2356
|
+
},
|
|
2357
|
+
"example": {}
|
|
2358
|
+
}
|
|
2359
|
+
}
|
|
2360
|
+
}
|
|
2361
|
+
}
|
|
2362
|
+
},
|
|
2363
|
+
"/index": {
|
|
2364
|
+
"get": {
|
|
2365
|
+
"tags": [
|
|
2366
|
+
"Index"
|
|
2367
|
+
],
|
|
2368
|
+
"operationId": "getIndex",
|
|
2369
|
+
"description": "The parameters and request body are for method: getIndex. Same endpoint also used in methods:",
|
|
2370
|
+
"responses": {
|
|
2371
|
+
"200": {
|
|
2372
|
+
"description": "Successful operation",
|
|
2373
|
+
"content": {
|
|
2374
|
+
"application/json": {
|
|
2375
|
+
"schema": {
|
|
2376
|
+
"title": "result",
|
|
2377
|
+
"type": "object"
|
|
2378
|
+
}
|
|
2379
|
+
}
|
|
2380
|
+
}
|
|
2381
|
+
}
|
|
2382
|
+
},
|
|
2383
|
+
"requestBody": {
|
|
2384
|
+
"content": {
|
|
2385
|
+
"application/json": {
|
|
2386
|
+
"schema": {
|
|
2387
|
+
"type": "object"
|
|
2388
|
+
},
|
|
2389
|
+
"example": {}
|
|
2390
|
+
}
|
|
2391
|
+
}
|
|
2392
|
+
}
|
|
2393
|
+
}
|
|
2394
|
+
},
|
|
2395
|
+
"/lmd/sites": {
|
|
2396
|
+
"get": {
|
|
2397
|
+
"tags": [
|
|
2398
|
+
"Lmd"
|
|
2399
|
+
],
|
|
2400
|
+
"operationId": "getLMDSites",
|
|
2401
|
+
"description": "The parameters and request body are for method: getLMDSites. Same endpoint also used in methods:",
|
|
2402
|
+
"responses": {
|
|
2403
|
+
"200": {
|
|
2404
|
+
"description": "Successful operation",
|
|
2405
|
+
"content": {
|
|
2406
|
+
"application/json": {
|
|
2407
|
+
"schema": {
|
|
2408
|
+
"title": "result",
|
|
2409
|
+
"type": "object"
|
|
2410
|
+
}
|
|
2411
|
+
}
|
|
2412
|
+
}
|
|
2413
|
+
}
|
|
2414
|
+
},
|
|
2415
|
+
"requestBody": {
|
|
2416
|
+
"content": {
|
|
2417
|
+
"application/json": {
|
|
2418
|
+
"schema": {
|
|
2419
|
+
"type": "object"
|
|
2420
|
+
},
|
|
2421
|
+
"example": {}
|
|
2422
|
+
}
|
|
2423
|
+
}
|
|
2424
|
+
}
|
|
2425
|
+
}
|
|
2426
|
+
},
|
|
2427
|
+
"/logs": {
|
|
2428
|
+
"get": {
|
|
2429
|
+
"tags": [
|
|
2430
|
+
"Logs"
|
|
2431
|
+
],
|
|
2432
|
+
"operationId": "getLogs",
|
|
2433
|
+
"description": "The parameters and request body are for method: getLogs. Same endpoint also used in methods:",
|
|
2434
|
+
"responses": {
|
|
2435
|
+
"200": {
|
|
2436
|
+
"description": "Successful operation",
|
|
2437
|
+
"content": {
|
|
2438
|
+
"application/json": {
|
|
2439
|
+
"schema": {
|
|
2440
|
+
"title": "result",
|
|
2441
|
+
"type": "object"
|
|
2442
|
+
}
|
|
2443
|
+
}
|
|
2444
|
+
}
|
|
2445
|
+
}
|
|
2446
|
+
},
|
|
2447
|
+
"requestBody": {
|
|
2448
|
+
"content": {
|
|
2449
|
+
"application/json": {
|
|
2450
|
+
"schema": {
|
|
2451
|
+
"type": "object"
|
|
2452
|
+
},
|
|
2453
|
+
"example": {}
|
|
2454
|
+
}
|
|
2455
|
+
}
|
|
2456
|
+
}
|
|
2457
|
+
}
|
|
2458
|
+
},
|
|
2459
|
+
"/notifications": {
|
|
2460
|
+
"get": {
|
|
2461
|
+
"tags": [
|
|
2462
|
+
"Notifications"
|
|
2463
|
+
],
|
|
2464
|
+
"operationId": "getNotifications",
|
|
2465
|
+
"description": "The parameters and request body are for method: getNotifications. Same endpoint also used in methods:",
|
|
2466
|
+
"responses": {
|
|
2467
|
+
"200": {
|
|
2468
|
+
"description": "Successful operation",
|
|
2469
|
+
"content": {
|
|
2470
|
+
"application/json": {
|
|
2471
|
+
"schema": {
|
|
2472
|
+
"title": "result",
|
|
2473
|
+
"type": "object"
|
|
2474
|
+
}
|
|
2475
|
+
}
|
|
2476
|
+
}
|
|
2477
|
+
}
|
|
2478
|
+
},
|
|
2479
|
+
"requestBody": {
|
|
2480
|
+
"content": {
|
|
2481
|
+
"application/json": {
|
|
2482
|
+
"schema": {
|
|
2483
|
+
"type": "object"
|
|
2484
|
+
},
|
|
2485
|
+
"example": {}
|
|
2486
|
+
}
|
|
2487
|
+
}
|
|
2488
|
+
}
|
|
2489
|
+
}
|
|
2490
|
+
},
|
|
2491
|
+
"/processinfo": {
|
|
2492
|
+
"get": {
|
|
2493
|
+
"tags": [
|
|
2494
|
+
"Processinfo"
|
|
2495
|
+
],
|
|
2496
|
+
"operationId": "getProcessInfo",
|
|
2497
|
+
"description": "The parameters and request body are for method: getProcessInfo. Same endpoint also used in methods:",
|
|
2498
|
+
"responses": {
|
|
2499
|
+
"200": {
|
|
2500
|
+
"description": "Successful operation",
|
|
2501
|
+
"content": {
|
|
2502
|
+
"application/json": {
|
|
2503
|
+
"schema": {
|
|
2504
|
+
"title": "result",
|
|
2505
|
+
"type": "object"
|
|
2506
|
+
}
|
|
2507
|
+
}
|
|
2508
|
+
}
|
|
2509
|
+
}
|
|
2510
|
+
},
|
|
2511
|
+
"requestBody": {
|
|
2512
|
+
"content": {
|
|
2513
|
+
"application/json": {
|
|
2514
|
+
"schema": {
|
|
2515
|
+
"type": "object"
|
|
2516
|
+
},
|
|
2517
|
+
"example": {}
|
|
2518
|
+
}
|
|
2519
|
+
}
|
|
2520
|
+
}
|
|
2521
|
+
}
|
|
2522
|
+
},
|
|
2523
|
+
"/processinfo/stats": {
|
|
2524
|
+
"get": {
|
|
2525
|
+
"tags": [
|
|
2526
|
+
"Processinfo"
|
|
2527
|
+
],
|
|
2528
|
+
"operationId": "getProcessInfoStats",
|
|
2529
|
+
"description": "The parameters and request body are for method: getProcessInfoStats. Same endpoint also used in methods:",
|
|
2530
|
+
"responses": {
|
|
2531
|
+
"200": {
|
|
2532
|
+
"description": "Successful operation",
|
|
2533
|
+
"content": {
|
|
2534
|
+
"application/json": {
|
|
2535
|
+
"schema": {
|
|
2536
|
+
"title": "result",
|
|
2537
|
+
"type": "object"
|
|
2538
|
+
}
|
|
2539
|
+
}
|
|
2540
|
+
}
|
|
2541
|
+
}
|
|
2542
|
+
},
|
|
2543
|
+
"requestBody": {
|
|
2544
|
+
"content": {
|
|
2545
|
+
"application/json": {
|
|
2546
|
+
"schema": {
|
|
2547
|
+
"type": "object"
|
|
2548
|
+
},
|
|
2549
|
+
"example": {}
|
|
2550
|
+
}
|
|
2551
|
+
}
|
|
2552
|
+
}
|
|
2553
|
+
}
|
|
2554
|
+
},
|
|
2555
|
+
"/servicegroups": {
|
|
2556
|
+
"get": {
|
|
2557
|
+
"tags": [
|
|
2558
|
+
"Servicegroups"
|
|
2559
|
+
],
|
|
2560
|
+
"operationId": "getServiceGroups",
|
|
2561
|
+
"description": "The parameters and request body are for method: getServiceGroups. Same endpoint also used in methods:",
|
|
2562
|
+
"responses": {
|
|
2563
|
+
"200": {
|
|
2564
|
+
"description": "Successful operation",
|
|
2565
|
+
"content": {
|
|
2566
|
+
"application/json": {
|
|
2567
|
+
"schema": {
|
|
2568
|
+
"title": "result",
|
|
2569
|
+
"type": "object"
|
|
2570
|
+
}
|
|
2571
|
+
}
|
|
2572
|
+
}
|
|
2573
|
+
}
|
|
2574
|
+
},
|
|
2575
|
+
"requestBody": {
|
|
2576
|
+
"content": {
|
|
2577
|
+
"application/json": {
|
|
2578
|
+
"schema": {
|
|
2579
|
+
"type": "object"
|
|
2580
|
+
},
|
|
2581
|
+
"example": {}
|
|
2582
|
+
}
|
|
2583
|
+
}
|
|
2584
|
+
}
|
|
2585
|
+
}
|
|
2586
|
+
},
|
|
2587
|
+
"/servicegroups/{name}": {
|
|
2588
|
+
"get": {
|
|
2589
|
+
"tags": [
|
|
2590
|
+
"Servicegroups"
|
|
2591
|
+
],
|
|
2592
|
+
"operationId": "getServiceGroup",
|
|
2593
|
+
"description": "The parameters and request body are for method: getServiceGroup. Same endpoint also used in methods:",
|
|
2594
|
+
"responses": {
|
|
2595
|
+
"200": {
|
|
2596
|
+
"description": "Successful operation",
|
|
2597
|
+
"content": {
|
|
2598
|
+
"application/json": {
|
|
2599
|
+
"schema": {
|
|
2600
|
+
"title": "result",
|
|
2601
|
+
"type": "object"
|
|
2602
|
+
}
|
|
2603
|
+
}
|
|
2604
|
+
}
|
|
2605
|
+
}
|
|
2606
|
+
},
|
|
2607
|
+
"parameters": [
|
|
2608
|
+
{
|
|
2609
|
+
"name": "name",
|
|
2610
|
+
"in": "path",
|
|
2611
|
+
"required": true,
|
|
2612
|
+
"schema": {
|
|
2613
|
+
"title": "name",
|
|
2614
|
+
"type": "string"
|
|
2615
|
+
}
|
|
2616
|
+
}
|
|
2617
|
+
],
|
|
2618
|
+
"requestBody": {
|
|
2619
|
+
"content": {
|
|
2620
|
+
"application/json": {
|
|
2621
|
+
"schema": {
|
|
2622
|
+
"type": "object"
|
|
2623
|
+
},
|
|
2624
|
+
"example": {}
|
|
2625
|
+
}
|
|
2626
|
+
}
|
|
2627
|
+
}
|
|
2628
|
+
}
|
|
2629
|
+
},
|
|
2630
|
+
"/servicegroups/{name}/config": {
|
|
2631
|
+
"get": {
|
|
2632
|
+
"tags": [
|
|
2633
|
+
"Servicegroups"
|
|
2634
|
+
],
|
|
2635
|
+
"operationId": "getServiceGroupConfig",
|
|
2636
|
+
"description": "The parameters and request body are for method: getServiceGroupConfig. Same endpoint also used in methods:",
|
|
2637
|
+
"responses": {
|
|
2638
|
+
"200": {
|
|
2639
|
+
"description": "Successful operation",
|
|
2640
|
+
"content": {
|
|
2641
|
+
"application/json": {
|
|
2642
|
+
"schema": {
|
|
2643
|
+
"title": "result",
|
|
2644
|
+
"type": "object"
|
|
2645
|
+
}
|
|
2646
|
+
}
|
|
2647
|
+
}
|
|
2648
|
+
}
|
|
2649
|
+
},
|
|
2650
|
+
"parameters": [
|
|
2651
|
+
{
|
|
2652
|
+
"name": "name",
|
|
2653
|
+
"in": "path",
|
|
2654
|
+
"required": true,
|
|
2655
|
+
"schema": {
|
|
2656
|
+
"title": "name",
|
|
2657
|
+
"type": "string"
|
|
2658
|
+
}
|
|
2659
|
+
}
|
|
2660
|
+
],
|
|
2661
|
+
"requestBody": {
|
|
2662
|
+
"content": {
|
|
2663
|
+
"application/json": {
|
|
2664
|
+
"schema": {
|
|
2665
|
+
"type": "object"
|
|
2666
|
+
},
|
|
2667
|
+
"example": {}
|
|
2668
|
+
}
|
|
2669
|
+
}
|
|
2670
|
+
}
|
|
2671
|
+
},
|
|
2672
|
+
"post": {
|
|
2673
|
+
"tags": [
|
|
2674
|
+
"Servicegroups"
|
|
2675
|
+
],
|
|
2676
|
+
"operationId": "postServiceGroupConfig",
|
|
2677
|
+
"description": "The parameters and request body are for method: postServiceGroupConfig. Same endpoint also used in methods:",
|
|
2678
|
+
"responses": {
|
|
2679
|
+
"200": {
|
|
2680
|
+
"description": "Successful operation",
|
|
2681
|
+
"content": {
|
|
2682
|
+
"application/json": {
|
|
2683
|
+
"schema": {
|
|
2684
|
+
"title": "result",
|
|
2685
|
+
"type": "object"
|
|
2686
|
+
}
|
|
2687
|
+
}
|
|
2688
|
+
}
|
|
2689
|
+
}
|
|
2690
|
+
},
|
|
2691
|
+
"parameters": [
|
|
2692
|
+
{
|
|
2693
|
+
"name": "name",
|
|
2694
|
+
"in": "path",
|
|
2695
|
+
"required": true,
|
|
2696
|
+
"schema": {
|
|
2697
|
+
"title": "name",
|
|
2698
|
+
"type": "string"
|
|
2699
|
+
}
|
|
2700
|
+
}
|
|
2701
|
+
],
|
|
2702
|
+
"requestBody": {
|
|
2703
|
+
"description": "indeterminate body object",
|
|
2704
|
+
"content": {
|
|
2705
|
+
"application/json": {
|
|
2706
|
+
"schema": {
|
|
2707
|
+
"type": "object"
|
|
2708
|
+
}
|
|
2709
|
+
}
|
|
2710
|
+
}
|
|
2711
|
+
}
|
|
2712
|
+
},
|
|
2713
|
+
"patch": {
|
|
2714
|
+
"tags": [
|
|
2715
|
+
"Servicegroups"
|
|
2716
|
+
],
|
|
2717
|
+
"operationId": "patchServiceGroupConfig",
|
|
2718
|
+
"description": "The parameters and request body are for method: patchServiceGroupConfig. Same endpoint also used in methods:",
|
|
2719
|
+
"responses": {
|
|
2720
|
+
"200": {
|
|
2721
|
+
"description": "Successful operation",
|
|
2722
|
+
"content": {
|
|
2723
|
+
"application/json": {
|
|
2724
|
+
"schema": {
|
|
2725
|
+
"title": "result",
|
|
2726
|
+
"type": "object"
|
|
2727
|
+
}
|
|
2728
|
+
}
|
|
2729
|
+
}
|
|
2730
|
+
}
|
|
2731
|
+
},
|
|
2732
|
+
"parameters": [
|
|
2733
|
+
{
|
|
2734
|
+
"name": "name",
|
|
2735
|
+
"in": "path",
|
|
2736
|
+
"required": true,
|
|
2737
|
+
"schema": {
|
|
2738
|
+
"title": "name",
|
|
2739
|
+
"type": "string"
|
|
2740
|
+
}
|
|
2741
|
+
}
|
|
2742
|
+
],
|
|
2743
|
+
"requestBody": {
|
|
2744
|
+
"description": "indeterminate body object",
|
|
2745
|
+
"content": {
|
|
2746
|
+
"application/json": {
|
|
2747
|
+
"schema": {
|
|
2748
|
+
"type": "object"
|
|
2749
|
+
}
|
|
2750
|
+
}
|
|
2751
|
+
}
|
|
2752
|
+
}
|
|
2753
|
+
},
|
|
2754
|
+
"delete": {
|
|
2755
|
+
"tags": [
|
|
2756
|
+
"Servicegroups"
|
|
2757
|
+
],
|
|
2758
|
+
"operationId": "deleteServiceGroupConfig",
|
|
2759
|
+
"description": "The parameters and request body are for method: deleteServiceGroupConfig. Same endpoint also used in methods:",
|
|
2760
|
+
"responses": {
|
|
2761
|
+
"200": {
|
|
2762
|
+
"description": "Successful operation",
|
|
2763
|
+
"content": {
|
|
2764
|
+
"application/json": {
|
|
2765
|
+
"schema": {
|
|
2766
|
+
"title": "result",
|
|
2767
|
+
"type": "object"
|
|
2768
|
+
}
|
|
2769
|
+
}
|
|
2770
|
+
}
|
|
2771
|
+
}
|
|
2772
|
+
},
|
|
2773
|
+
"parameters": [
|
|
2774
|
+
{
|
|
2775
|
+
"name": "name",
|
|
2776
|
+
"in": "path",
|
|
2777
|
+
"required": true,
|
|
2778
|
+
"schema": {
|
|
2779
|
+
"title": "name",
|
|
2780
|
+
"type": "string"
|
|
2781
|
+
}
|
|
2782
|
+
}
|
|
2783
|
+
],
|
|
2784
|
+
"requestBody": {
|
|
2785
|
+
"content": {
|
|
2786
|
+
"application/json": {
|
|
2787
|
+
"schema": {
|
|
2788
|
+
"type": "object"
|
|
2789
|
+
},
|
|
2790
|
+
"example": {}
|
|
2791
|
+
}
|
|
2792
|
+
}
|
|
2793
|
+
}
|
|
2794
|
+
}
|
|
2795
|
+
},
|
|
2796
|
+
"/servicegroups/{name}/outages": {
|
|
2797
|
+
"get": {
|
|
2798
|
+
"tags": [
|
|
2799
|
+
"Servicegroups"
|
|
2800
|
+
],
|
|
2801
|
+
"operationId": "getServiceGroupOutages",
|
|
2802
|
+
"description": "The parameters and request body are for method: getServiceGroupOutages. Same endpoint also used in methods:",
|
|
2803
|
+
"responses": {
|
|
2804
|
+
"200": {
|
|
2805
|
+
"description": "Successful operation",
|
|
2806
|
+
"content": {
|
|
2807
|
+
"application/json": {
|
|
2808
|
+
"schema": {
|
|
2809
|
+
"title": "result",
|
|
2810
|
+
"type": "object"
|
|
2811
|
+
}
|
|
2812
|
+
}
|
|
2813
|
+
}
|
|
2814
|
+
}
|
|
2815
|
+
},
|
|
2816
|
+
"parameters": [
|
|
2817
|
+
{
|
|
2818
|
+
"name": "name",
|
|
2819
|
+
"in": "path",
|
|
2820
|
+
"required": true,
|
|
2821
|
+
"schema": {
|
|
2822
|
+
"title": "name",
|
|
2823
|
+
"type": "string"
|
|
2824
|
+
}
|
|
2825
|
+
}
|
|
2826
|
+
],
|
|
2827
|
+
"requestBody": {
|
|
2828
|
+
"content": {
|
|
2829
|
+
"application/json": {
|
|
2830
|
+
"schema": {
|
|
2831
|
+
"type": "object"
|
|
2832
|
+
},
|
|
2833
|
+
"example": {}
|
|
2834
|
+
}
|
|
2835
|
+
}
|
|
2836
|
+
}
|
|
2837
|
+
}
|
|
2838
|
+
},
|
|
2839
|
+
"/servicegroups/{name}/stats": {
|
|
2840
|
+
"get": {
|
|
2841
|
+
"tags": [
|
|
2842
|
+
"Servicegroups"
|
|
2843
|
+
],
|
|
2844
|
+
"operationId": "getServiceGroupStats",
|
|
2845
|
+
"description": "The parameters and request body are for method: getServiceGroupStats. Same endpoint also used in methods:",
|
|
2846
|
+
"responses": {
|
|
2847
|
+
"200": {
|
|
2848
|
+
"description": "Successful operation",
|
|
2849
|
+
"content": {
|
|
2850
|
+
"application/json": {
|
|
2851
|
+
"schema": {
|
|
2852
|
+
"title": "result",
|
|
2853
|
+
"type": "object"
|
|
2854
|
+
}
|
|
2855
|
+
}
|
|
2856
|
+
}
|
|
2857
|
+
}
|
|
2858
|
+
},
|
|
2859
|
+
"parameters": [
|
|
2860
|
+
{
|
|
2861
|
+
"name": "name",
|
|
2862
|
+
"in": "path",
|
|
2863
|
+
"required": true,
|
|
2864
|
+
"schema": {
|
|
2865
|
+
"title": "name",
|
|
2866
|
+
"type": "string"
|
|
2867
|
+
}
|
|
2868
|
+
}
|
|
2869
|
+
],
|
|
2870
|
+
"requestBody": {
|
|
2871
|
+
"content": {
|
|
2872
|
+
"application/json": {
|
|
2873
|
+
"schema": {
|
|
2874
|
+
"type": "object"
|
|
2875
|
+
},
|
|
2876
|
+
"example": {}
|
|
2877
|
+
}
|
|
2878
|
+
}
|
|
2879
|
+
}
|
|
2880
|
+
}
|
|
2881
|
+
},
|
|
2882
|
+
"/services": {
|
|
2883
|
+
"get": {
|
|
2884
|
+
"tags": [
|
|
2885
|
+
"Services"
|
|
2886
|
+
],
|
|
2887
|
+
"operationId": "getServices",
|
|
2888
|
+
"description": "The parameters and request body are for method: getServices. Same endpoint also used in methods:",
|
|
2889
|
+
"responses": {
|
|
2890
|
+
"200": {
|
|
2891
|
+
"description": "Successful operation",
|
|
2892
|
+
"content": {
|
|
2893
|
+
"application/json": {
|
|
2894
|
+
"schema": {
|
|
2895
|
+
"title": "result",
|
|
2896
|
+
"type": "object"
|
|
2897
|
+
}
|
|
2898
|
+
}
|
|
2899
|
+
}
|
|
2900
|
+
}
|
|
2901
|
+
},
|
|
2902
|
+
"requestBody": {
|
|
2903
|
+
"content": {
|
|
2904
|
+
"application/json": {
|
|
2905
|
+
"schema": {
|
|
2906
|
+
"type": "object"
|
|
2907
|
+
},
|
|
2908
|
+
"example": {}
|
|
2909
|
+
}
|
|
2910
|
+
}
|
|
2911
|
+
}
|
|
2912
|
+
}
|
|
2913
|
+
},
|
|
2914
|
+
"/services/{host}/{service}": {
|
|
2915
|
+
"get": {
|
|
2916
|
+
"tags": [
|
|
2917
|
+
"Services"
|
|
2918
|
+
],
|
|
2919
|
+
"operationId": "getHostService",
|
|
2920
|
+
"description": "The parameters and request body are for method: getHostService. Same endpoint also used in methods:",
|
|
2921
|
+
"responses": {
|
|
2922
|
+
"200": {
|
|
2923
|
+
"description": "Successful operation",
|
|
2924
|
+
"content": {
|
|
2925
|
+
"application/json": {
|
|
2926
|
+
"schema": {
|
|
2927
|
+
"title": "result",
|
|
2928
|
+
"type": "object"
|
|
2929
|
+
}
|
|
2930
|
+
}
|
|
2931
|
+
}
|
|
2932
|
+
}
|
|
2933
|
+
},
|
|
2934
|
+
"parameters": [
|
|
2935
|
+
{
|
|
2936
|
+
"name": "host",
|
|
2937
|
+
"in": "path",
|
|
2938
|
+
"required": true,
|
|
2939
|
+
"schema": {
|
|
2940
|
+
"title": "host",
|
|
2941
|
+
"type": "string"
|
|
2942
|
+
}
|
|
2943
|
+
},
|
|
2944
|
+
{
|
|
2945
|
+
"name": "service",
|
|
2946
|
+
"in": "path",
|
|
2947
|
+
"required": true,
|
|
2948
|
+
"schema": {
|
|
2949
|
+
"title": "service",
|
|
2950
|
+
"type": "string"
|
|
2951
|
+
}
|
|
2952
|
+
}
|
|
2953
|
+
],
|
|
2954
|
+
"requestBody": {
|
|
2955
|
+
"content": {
|
|
2956
|
+
"application/json": {
|
|
2957
|
+
"schema": {
|
|
2958
|
+
"type": "object"
|
|
2959
|
+
},
|
|
2960
|
+
"example": {}
|
|
2961
|
+
}
|
|
2962
|
+
}
|
|
2963
|
+
}
|
|
2964
|
+
}
|
|
2965
|
+
},
|
|
2966
|
+
"/services/{host}/{service}/commandline": {
|
|
2967
|
+
"get": {
|
|
2968
|
+
"tags": [
|
|
2969
|
+
"Services"
|
|
2970
|
+
],
|
|
2971
|
+
"operationId": "getHostServiceCommandLine",
|
|
2972
|
+
"description": "The parameters and request body are for method: getHostServiceCommandLine. Same endpoint also used in methods:",
|
|
2973
|
+
"responses": {
|
|
2974
|
+
"200": {
|
|
2975
|
+
"description": "Successful operation",
|
|
2976
|
+
"content": {
|
|
2977
|
+
"application/json": {
|
|
2978
|
+
"schema": {
|
|
2979
|
+
"title": "result",
|
|
2980
|
+
"type": "object"
|
|
2981
|
+
}
|
|
2982
|
+
}
|
|
2983
|
+
}
|
|
2984
|
+
}
|
|
2985
|
+
},
|
|
2986
|
+
"parameters": [
|
|
2987
|
+
{
|
|
2988
|
+
"name": "host",
|
|
2989
|
+
"in": "path",
|
|
2990
|
+
"required": true,
|
|
2991
|
+
"schema": {
|
|
2992
|
+
"title": "host",
|
|
2993
|
+
"type": "string"
|
|
2994
|
+
}
|
|
2995
|
+
},
|
|
2996
|
+
{
|
|
2997
|
+
"name": "service",
|
|
2998
|
+
"in": "path",
|
|
2999
|
+
"required": true,
|
|
3000
|
+
"schema": {
|
|
3001
|
+
"title": "service",
|
|
3002
|
+
"type": "string"
|
|
3003
|
+
}
|
|
3004
|
+
}
|
|
3005
|
+
],
|
|
3006
|
+
"requestBody": {
|
|
3007
|
+
"content": {
|
|
3008
|
+
"application/json": {
|
|
3009
|
+
"schema": {
|
|
3010
|
+
"type": "object"
|
|
3011
|
+
},
|
|
3012
|
+
"example": {}
|
|
3013
|
+
}
|
|
3014
|
+
}
|
|
3015
|
+
}
|
|
3016
|
+
}
|
|
3017
|
+
},
|
|
3018
|
+
"/services/{host}/{service}/config": {
|
|
3019
|
+
"get": {
|
|
3020
|
+
"tags": [
|
|
3021
|
+
"Services"
|
|
3022
|
+
],
|
|
3023
|
+
"operationId": "getHostServiceConfig",
|
|
3024
|
+
"description": "The parameters and request body are for method: getHostServiceConfig. Same endpoint also used in methods:",
|
|
3025
|
+
"responses": {
|
|
3026
|
+
"200": {
|
|
3027
|
+
"description": "Successful operation",
|
|
3028
|
+
"content": {
|
|
3029
|
+
"application/json": {
|
|
3030
|
+
"schema": {
|
|
3031
|
+
"title": "result",
|
|
3032
|
+
"type": "object"
|
|
3033
|
+
}
|
|
3034
|
+
}
|
|
3035
|
+
}
|
|
3036
|
+
}
|
|
3037
|
+
},
|
|
3038
|
+
"parameters": [
|
|
3039
|
+
{
|
|
3040
|
+
"name": "host",
|
|
3041
|
+
"in": "path",
|
|
3042
|
+
"required": true,
|
|
3043
|
+
"schema": {
|
|
3044
|
+
"title": "host",
|
|
3045
|
+
"type": "string"
|
|
3046
|
+
}
|
|
3047
|
+
},
|
|
3048
|
+
{
|
|
3049
|
+
"name": "service",
|
|
3050
|
+
"in": "path",
|
|
3051
|
+
"required": true,
|
|
3052
|
+
"schema": {
|
|
3053
|
+
"title": "service",
|
|
3054
|
+
"type": "string"
|
|
3055
|
+
}
|
|
3056
|
+
}
|
|
3057
|
+
],
|
|
3058
|
+
"requestBody": {
|
|
3059
|
+
"content": {
|
|
3060
|
+
"application/json": {
|
|
3061
|
+
"schema": {
|
|
3062
|
+
"type": "object"
|
|
3063
|
+
},
|
|
3064
|
+
"example": {}
|
|
3065
|
+
}
|
|
3066
|
+
}
|
|
3067
|
+
}
|
|
3068
|
+
},
|
|
3069
|
+
"post": {
|
|
3070
|
+
"tags": [
|
|
3071
|
+
"Services"
|
|
3072
|
+
],
|
|
3073
|
+
"operationId": "postHostServiceConfig",
|
|
3074
|
+
"description": "The parameters and request body are for method: postHostServiceConfig. Same endpoint also used in methods:",
|
|
3075
|
+
"responses": {
|
|
3076
|
+
"200": {
|
|
3077
|
+
"description": "Successful operation",
|
|
3078
|
+
"content": {
|
|
3079
|
+
"application/json": {
|
|
3080
|
+
"schema": {
|
|
3081
|
+
"title": "result",
|
|
3082
|
+
"type": "object"
|
|
3083
|
+
}
|
|
3084
|
+
}
|
|
3085
|
+
}
|
|
3086
|
+
}
|
|
3087
|
+
},
|
|
3088
|
+
"parameters": [
|
|
3089
|
+
{
|
|
3090
|
+
"name": "host",
|
|
3091
|
+
"in": "path",
|
|
3092
|
+
"required": true,
|
|
3093
|
+
"schema": {
|
|
3094
|
+
"title": "host",
|
|
3095
|
+
"type": "string"
|
|
3096
|
+
}
|
|
3097
|
+
},
|
|
3098
|
+
{
|
|
3099
|
+
"name": "service",
|
|
3100
|
+
"in": "path",
|
|
3101
|
+
"required": true,
|
|
3102
|
+
"schema": {
|
|
3103
|
+
"title": "service",
|
|
3104
|
+
"type": "string"
|
|
3105
|
+
}
|
|
3106
|
+
}
|
|
3107
|
+
],
|
|
3108
|
+
"requestBody": {
|
|
3109
|
+
"description": "indeterminate body object",
|
|
3110
|
+
"content": {
|
|
3111
|
+
"application/json": {
|
|
3112
|
+
"schema": {
|
|
3113
|
+
"type": "object"
|
|
3114
|
+
}
|
|
3115
|
+
}
|
|
3116
|
+
}
|
|
3117
|
+
}
|
|
3118
|
+
},
|
|
3119
|
+
"patch": {
|
|
3120
|
+
"tags": [
|
|
3121
|
+
"Services"
|
|
3122
|
+
],
|
|
3123
|
+
"operationId": "patchHostServiceConfig",
|
|
3124
|
+
"description": "The parameters and request body are for method: patchHostServiceConfig. Same endpoint also used in methods:",
|
|
3125
|
+
"responses": {
|
|
3126
|
+
"200": {
|
|
3127
|
+
"description": "Successful operation",
|
|
3128
|
+
"content": {
|
|
3129
|
+
"application/json": {
|
|
3130
|
+
"schema": {
|
|
3131
|
+
"title": "result",
|
|
3132
|
+
"type": "object"
|
|
3133
|
+
}
|
|
3134
|
+
}
|
|
3135
|
+
}
|
|
3136
|
+
}
|
|
3137
|
+
},
|
|
3138
|
+
"parameters": [
|
|
3139
|
+
{
|
|
3140
|
+
"name": "host",
|
|
3141
|
+
"in": "path",
|
|
3142
|
+
"required": true,
|
|
3143
|
+
"schema": {
|
|
3144
|
+
"title": "host",
|
|
3145
|
+
"type": "string"
|
|
3146
|
+
}
|
|
3147
|
+
},
|
|
3148
|
+
{
|
|
3149
|
+
"name": "service",
|
|
3150
|
+
"in": "path",
|
|
3151
|
+
"required": true,
|
|
3152
|
+
"schema": {
|
|
3153
|
+
"title": "service",
|
|
3154
|
+
"type": "string"
|
|
3155
|
+
}
|
|
3156
|
+
}
|
|
3157
|
+
],
|
|
3158
|
+
"requestBody": {
|
|
3159
|
+
"description": "indeterminate body object",
|
|
3160
|
+
"content": {
|
|
3161
|
+
"application/json": {
|
|
3162
|
+
"schema": {
|
|
3163
|
+
"type": "object"
|
|
3164
|
+
}
|
|
3165
|
+
}
|
|
3166
|
+
}
|
|
3167
|
+
}
|
|
3168
|
+
},
|
|
3169
|
+
"delete": {
|
|
3170
|
+
"tags": [
|
|
3171
|
+
"Services"
|
|
3172
|
+
],
|
|
3173
|
+
"operationId": "deleteHostServiceConfig",
|
|
3174
|
+
"description": "The parameters and request body are for method: deleteHostServiceConfig. Same endpoint also used in methods:",
|
|
3175
|
+
"responses": {
|
|
3176
|
+
"200": {
|
|
3177
|
+
"description": "Successful operation",
|
|
3178
|
+
"content": {
|
|
3179
|
+
"application/json": {
|
|
3180
|
+
"schema": {
|
|
3181
|
+
"title": "result",
|
|
3182
|
+
"type": "object"
|
|
3183
|
+
}
|
|
3184
|
+
}
|
|
3185
|
+
}
|
|
3186
|
+
}
|
|
3187
|
+
},
|
|
3188
|
+
"parameters": [
|
|
3189
|
+
{
|
|
3190
|
+
"name": "host",
|
|
3191
|
+
"in": "path",
|
|
3192
|
+
"required": true,
|
|
3193
|
+
"schema": {
|
|
3194
|
+
"title": "host",
|
|
3195
|
+
"type": "string"
|
|
3196
|
+
}
|
|
3197
|
+
},
|
|
3198
|
+
{
|
|
3199
|
+
"name": "service",
|
|
3200
|
+
"in": "path",
|
|
3201
|
+
"required": true,
|
|
3202
|
+
"schema": {
|
|
3203
|
+
"title": "service",
|
|
3204
|
+
"type": "string"
|
|
3205
|
+
}
|
|
3206
|
+
}
|
|
3207
|
+
],
|
|
3208
|
+
"requestBody": {
|
|
3209
|
+
"content": {
|
|
3210
|
+
"application/json": {
|
|
3211
|
+
"schema": {
|
|
3212
|
+
"type": "object"
|
|
3213
|
+
},
|
|
3214
|
+
"example": {}
|
|
3215
|
+
}
|
|
3216
|
+
}
|
|
3217
|
+
}
|
|
3218
|
+
}
|
|
3219
|
+
},
|
|
3220
|
+
"/services/{host}/{service}/outages": {
|
|
3221
|
+
"get": {
|
|
3222
|
+
"tags": [
|
|
3223
|
+
"Services"
|
|
3224
|
+
],
|
|
3225
|
+
"operationId": "getHostServiceOutages",
|
|
3226
|
+
"description": "The parameters and request body are for method: getHostServiceOutages. Same endpoint also used in methods:",
|
|
3227
|
+
"responses": {
|
|
3228
|
+
"200": {
|
|
3229
|
+
"description": "Successful operation",
|
|
3230
|
+
"content": {
|
|
3231
|
+
"application/json": {
|
|
3232
|
+
"schema": {
|
|
3233
|
+
"title": "result",
|
|
3234
|
+
"type": "object"
|
|
3235
|
+
}
|
|
3236
|
+
}
|
|
3237
|
+
}
|
|
3238
|
+
}
|
|
3239
|
+
},
|
|
3240
|
+
"parameters": [
|
|
3241
|
+
{
|
|
3242
|
+
"name": "host",
|
|
3243
|
+
"in": "path",
|
|
3244
|
+
"required": true,
|
|
3245
|
+
"schema": {
|
|
3246
|
+
"title": "host",
|
|
3247
|
+
"type": "string"
|
|
3248
|
+
}
|
|
3249
|
+
},
|
|
3250
|
+
{
|
|
3251
|
+
"name": "service",
|
|
3252
|
+
"in": "path",
|
|
3253
|
+
"required": true,
|
|
3254
|
+
"schema": {
|
|
3255
|
+
"title": "service",
|
|
3256
|
+
"type": "string"
|
|
3257
|
+
}
|
|
3258
|
+
}
|
|
3259
|
+
],
|
|
3260
|
+
"requestBody": {
|
|
3261
|
+
"content": {
|
|
3262
|
+
"application/json": {
|
|
3263
|
+
"schema": {
|
|
3264
|
+
"type": "object"
|
|
3265
|
+
},
|
|
3266
|
+
"example": {}
|
|
3267
|
+
}
|
|
3268
|
+
}
|
|
3269
|
+
}
|
|
3270
|
+
}
|
|
3271
|
+
},
|
|
3272
|
+
"/services/outages": {
|
|
3273
|
+
"get": {
|
|
3274
|
+
"tags": [
|
|
3275
|
+
"Services"
|
|
3276
|
+
],
|
|
3277
|
+
"operationId": "getServicesOutages",
|
|
3278
|
+
"description": "The parameters and request body are for method: getServicesOutages. Same endpoint also used in methods:",
|
|
3279
|
+
"responses": {
|
|
3280
|
+
"200": {
|
|
3281
|
+
"description": "Successful operation",
|
|
3282
|
+
"content": {
|
|
3283
|
+
"application/json": {
|
|
3284
|
+
"schema": {
|
|
3285
|
+
"title": "result",
|
|
3286
|
+
"type": "object"
|
|
3287
|
+
}
|
|
3288
|
+
}
|
|
3289
|
+
}
|
|
3290
|
+
}
|
|
3291
|
+
},
|
|
3292
|
+
"requestBody": {
|
|
3293
|
+
"content": {
|
|
3294
|
+
"application/json": {
|
|
3295
|
+
"schema": {
|
|
3296
|
+
"type": "object"
|
|
3297
|
+
},
|
|
3298
|
+
"example": {}
|
|
3299
|
+
}
|
|
3300
|
+
}
|
|
3301
|
+
}
|
|
3302
|
+
}
|
|
3303
|
+
},
|
|
3304
|
+
"/services/stats": {
|
|
3305
|
+
"get": {
|
|
3306
|
+
"tags": [
|
|
3307
|
+
"Services"
|
|
3308
|
+
],
|
|
3309
|
+
"operationId": "getServicesStats",
|
|
3310
|
+
"description": "The parameters and request body are for method: getServicesStats. Same endpoint also used in methods:",
|
|
3311
|
+
"responses": {
|
|
3312
|
+
"200": {
|
|
3313
|
+
"description": "Successful operation",
|
|
3314
|
+
"content": {
|
|
3315
|
+
"application/json": {
|
|
3316
|
+
"schema": {
|
|
3317
|
+
"title": "result",
|
|
3318
|
+
"type": "object"
|
|
3319
|
+
}
|
|
3320
|
+
}
|
|
3321
|
+
}
|
|
3322
|
+
}
|
|
3323
|
+
},
|
|
3324
|
+
"requestBody": {
|
|
3325
|
+
"content": {
|
|
3326
|
+
"application/json": {
|
|
3327
|
+
"schema": {
|
|
3328
|
+
"type": "object"
|
|
3329
|
+
},
|
|
3330
|
+
"example": {}
|
|
3331
|
+
}
|
|
3332
|
+
}
|
|
3333
|
+
}
|
|
3334
|
+
}
|
|
3335
|
+
},
|
|
3336
|
+
"/services/totals": {
|
|
3337
|
+
"get": {
|
|
3338
|
+
"tags": [
|
|
3339
|
+
"Services"
|
|
3340
|
+
],
|
|
3341
|
+
"operationId": "getServicesTotals",
|
|
3342
|
+
"description": "The parameters and request body are for method: getServicesTotals. Same endpoint also used in methods:",
|
|
3343
|
+
"responses": {
|
|
3344
|
+
"200": {
|
|
3345
|
+
"description": "Successful operation",
|
|
3346
|
+
"content": {
|
|
3347
|
+
"application/json": {
|
|
3348
|
+
"schema": {
|
|
3349
|
+
"title": "result",
|
|
3350
|
+
"type": "object"
|
|
3351
|
+
}
|
|
3352
|
+
}
|
|
3353
|
+
}
|
|
3354
|
+
}
|
|
3355
|
+
},
|
|
3356
|
+
"requestBody": {
|
|
3357
|
+
"content": {
|
|
3358
|
+
"application/json": {
|
|
3359
|
+
"schema": {
|
|
3360
|
+
"type": "object"
|
|
3361
|
+
},
|
|
3362
|
+
"example": {}
|
|
3363
|
+
}
|
|
3364
|
+
}
|
|
3365
|
+
}
|
|
3366
|
+
}
|
|
3367
|
+
},
|
|
3368
|
+
"/sites": {
|
|
3369
|
+
"get": {
|
|
3370
|
+
"tags": [
|
|
3371
|
+
"Sites"
|
|
3372
|
+
],
|
|
3373
|
+
"operationId": "getSites",
|
|
3374
|
+
"description": "The parameters and request body are for method: getSites. Same endpoint also used in methods:",
|
|
3375
|
+
"responses": {
|
|
3376
|
+
"200": {
|
|
3377
|
+
"description": "Successful operation",
|
|
3378
|
+
"content": {
|
|
3379
|
+
"application/json": {
|
|
3380
|
+
"schema": {
|
|
3381
|
+
"title": "result",
|
|
3382
|
+
"type": "object"
|
|
3383
|
+
}
|
|
3384
|
+
}
|
|
3385
|
+
}
|
|
3386
|
+
}
|
|
3387
|
+
},
|
|
3388
|
+
"requestBody": {
|
|
3389
|
+
"content": {
|
|
3390
|
+
"application/json": {
|
|
3391
|
+
"schema": {
|
|
3392
|
+
"type": "object"
|
|
3393
|
+
},
|
|
3394
|
+
"example": {}
|
|
3395
|
+
}
|
|
3396
|
+
}
|
|
3397
|
+
}
|
|
3398
|
+
}
|
|
3399
|
+
},
|
|
3400
|
+
"/thruk": {
|
|
3401
|
+
"get": {
|
|
3402
|
+
"tags": [
|
|
3403
|
+
"Thruk"
|
|
3404
|
+
],
|
|
3405
|
+
"operationId": "getThruk",
|
|
3406
|
+
"description": "The parameters and request body are for method: getThruk. Same endpoint also used in methods:",
|
|
3407
|
+
"responses": {
|
|
3408
|
+
"200": {
|
|
3409
|
+
"description": "Successful operation",
|
|
3410
|
+
"content": {
|
|
3411
|
+
"application/json": {
|
|
3412
|
+
"schema": {
|
|
3413
|
+
"title": "result",
|
|
3414
|
+
"type": "object"
|
|
3415
|
+
}
|
|
3416
|
+
}
|
|
3417
|
+
}
|
|
3418
|
+
}
|
|
3419
|
+
},
|
|
3420
|
+
"requestBody": {
|
|
3421
|
+
"content": {
|
|
3422
|
+
"application/json": {
|
|
3423
|
+
"schema": {
|
|
3424
|
+
"type": "object"
|
|
3425
|
+
},
|
|
3426
|
+
"example": {}
|
|
3427
|
+
}
|
|
3428
|
+
}
|
|
3429
|
+
}
|
|
3430
|
+
}
|
|
3431
|
+
},
|
|
3432
|
+
"/thruk/whoami": {
|
|
3433
|
+
"get": {
|
|
3434
|
+
"tags": [
|
|
3435
|
+
"Thruk"
|
|
3436
|
+
],
|
|
3437
|
+
"operationId": "getThrukWhoami",
|
|
3438
|
+
"description": "The parameters and request body are for method: getThrukWhoami. Same endpoint also used in methods:",
|
|
3439
|
+
"responses": {
|
|
3440
|
+
"200": {
|
|
3441
|
+
"description": "Successful operation",
|
|
3442
|
+
"content": {
|
|
3443
|
+
"application/json": {
|
|
3444
|
+
"schema": {
|
|
3445
|
+
"title": "result",
|
|
3446
|
+
"type": "object"
|
|
3447
|
+
}
|
|
3448
|
+
}
|
|
3449
|
+
}
|
|
3450
|
+
}
|
|
3451
|
+
},
|
|
3452
|
+
"requestBody": {
|
|
3453
|
+
"content": {
|
|
3454
|
+
"application/json": {
|
|
3455
|
+
"schema": {
|
|
3456
|
+
"type": "object"
|
|
3457
|
+
},
|
|
3458
|
+
"example": {}
|
|
3459
|
+
}
|
|
3460
|
+
}
|
|
3461
|
+
}
|
|
3462
|
+
}
|
|
3463
|
+
},
|
|
3464
|
+
"/timeperiods": {
|
|
3465
|
+
"get": {
|
|
3466
|
+
"tags": [
|
|
3467
|
+
"Timeperiods"
|
|
3468
|
+
],
|
|
3469
|
+
"operationId": "getTimePeriods",
|
|
3470
|
+
"description": "The parameters and request body are for method: getTimePeriods. Same endpoint also used in methods:",
|
|
3471
|
+
"responses": {
|
|
3472
|
+
"200": {
|
|
3473
|
+
"description": "Successful operation",
|
|
3474
|
+
"content": {
|
|
3475
|
+
"application/json": {
|
|
3476
|
+
"schema": {
|
|
3477
|
+
"title": "result",
|
|
3478
|
+
"type": "object"
|
|
3479
|
+
}
|
|
3480
|
+
}
|
|
3481
|
+
}
|
|
3482
|
+
}
|
|
3483
|
+
},
|
|
3484
|
+
"requestBody": {
|
|
3485
|
+
"content": {
|
|
3486
|
+
"application/json": {
|
|
3487
|
+
"schema": {
|
|
3488
|
+
"type": "object"
|
|
3489
|
+
},
|
|
3490
|
+
"example": {}
|
|
3491
|
+
}
|
|
3492
|
+
}
|
|
3493
|
+
}
|
|
3494
|
+
}
|
|
3495
|
+
},
|
|
3496
|
+
"/timeperiods/{name}": {
|
|
3497
|
+
"get": {
|
|
3498
|
+
"tags": [
|
|
3499
|
+
"Timeperiods"
|
|
3500
|
+
],
|
|
3501
|
+
"operationId": "getTimePeriod",
|
|
3502
|
+
"description": "The parameters and request body are for method: getTimePeriod. Same endpoint also used in methods:",
|
|
3503
|
+
"responses": {
|
|
3504
|
+
"200": {
|
|
3505
|
+
"description": "Successful operation",
|
|
3506
|
+
"content": {
|
|
3507
|
+
"application/json": {
|
|
3508
|
+
"schema": {
|
|
3509
|
+
"title": "result",
|
|
3510
|
+
"type": "object"
|
|
3511
|
+
}
|
|
3512
|
+
}
|
|
3513
|
+
}
|
|
3514
|
+
}
|
|
3515
|
+
},
|
|
3516
|
+
"parameters": [
|
|
3517
|
+
{
|
|
3518
|
+
"name": "name",
|
|
3519
|
+
"in": "path",
|
|
3520
|
+
"required": true,
|
|
3521
|
+
"schema": {
|
|
3522
|
+
"title": "name",
|
|
3523
|
+
"type": "string"
|
|
3524
|
+
}
|
|
3525
|
+
}
|
|
3526
|
+
],
|
|
3527
|
+
"requestBody": {
|
|
3528
|
+
"content": {
|
|
3529
|
+
"application/json": {
|
|
3530
|
+
"schema": {
|
|
3531
|
+
"type": "object"
|
|
3532
|
+
},
|
|
3533
|
+
"example": {}
|
|
3534
|
+
}
|
|
3535
|
+
}
|
|
3536
|
+
}
|
|
3537
|
+
}
|
|
3538
|
+
},
|
|
3539
|
+
"/timeperiods/{name}/config": {
|
|
3540
|
+
"get": {
|
|
3541
|
+
"tags": [
|
|
3542
|
+
"Timeperiods"
|
|
3543
|
+
],
|
|
3544
|
+
"operationId": "getTimePeriodConfig",
|
|
3545
|
+
"description": "The parameters and request body are for method: getTimePeriodConfig. Same endpoint also used in methods:",
|
|
3546
|
+
"responses": {
|
|
3547
|
+
"200": {
|
|
3548
|
+
"description": "Successful operation",
|
|
3549
|
+
"content": {
|
|
3550
|
+
"application/json": {
|
|
3551
|
+
"schema": {
|
|
3552
|
+
"title": "result",
|
|
3553
|
+
"type": "object"
|
|
3554
|
+
}
|
|
3555
|
+
}
|
|
3556
|
+
}
|
|
3557
|
+
}
|
|
3558
|
+
},
|
|
3559
|
+
"parameters": [
|
|
3560
|
+
{
|
|
3561
|
+
"name": "name",
|
|
3562
|
+
"in": "path",
|
|
3563
|
+
"required": true,
|
|
3564
|
+
"schema": {
|
|
3565
|
+
"title": "name",
|
|
3566
|
+
"type": "string"
|
|
3567
|
+
}
|
|
3568
|
+
}
|
|
3569
|
+
],
|
|
3570
|
+
"requestBody": {
|
|
3571
|
+
"content": {
|
|
3572
|
+
"application/json": {
|
|
3573
|
+
"schema": {
|
|
3574
|
+
"type": "object"
|
|
3575
|
+
},
|
|
3576
|
+
"example": {}
|
|
3577
|
+
}
|
|
3578
|
+
}
|
|
3579
|
+
}
|
|
3580
|
+
},
|
|
3581
|
+
"post": {
|
|
3582
|
+
"tags": [
|
|
3583
|
+
"Timeperiods"
|
|
3584
|
+
],
|
|
3585
|
+
"operationId": "postTimePeriodConfig",
|
|
3586
|
+
"description": "The parameters and request body are for method: postTimePeriodConfig. Same endpoint also used in methods:",
|
|
3587
|
+
"responses": {
|
|
3588
|
+
"200": {
|
|
3589
|
+
"description": "Successful operation",
|
|
3590
|
+
"content": {
|
|
3591
|
+
"application/json": {
|
|
3592
|
+
"schema": {
|
|
3593
|
+
"title": "result",
|
|
3594
|
+
"type": "object"
|
|
3595
|
+
}
|
|
3596
|
+
}
|
|
3597
|
+
}
|
|
3598
|
+
}
|
|
3599
|
+
},
|
|
3600
|
+
"parameters": [
|
|
3601
|
+
{
|
|
3602
|
+
"name": "name",
|
|
3603
|
+
"in": "path",
|
|
3604
|
+
"required": true,
|
|
3605
|
+
"schema": {
|
|
3606
|
+
"title": "name",
|
|
3607
|
+
"type": "string"
|
|
3608
|
+
}
|
|
3609
|
+
}
|
|
3610
|
+
],
|
|
3611
|
+
"requestBody": {
|
|
3612
|
+
"description": "indeterminate body object",
|
|
3613
|
+
"content": {
|
|
3614
|
+
"application/json": {
|
|
3615
|
+
"schema": {
|
|
3616
|
+
"type": "object"
|
|
3617
|
+
}
|
|
3618
|
+
}
|
|
3619
|
+
}
|
|
3620
|
+
}
|
|
3621
|
+
},
|
|
3622
|
+
"patch": {
|
|
3623
|
+
"tags": [
|
|
3624
|
+
"Timeperiods"
|
|
3625
|
+
],
|
|
3626
|
+
"operationId": "patchTimePeriodConfig",
|
|
3627
|
+
"description": "The parameters and request body are for method: patchTimePeriodConfig. Same endpoint also used in methods:",
|
|
3628
|
+
"responses": {
|
|
3629
|
+
"200": {
|
|
3630
|
+
"description": "Successful operation",
|
|
3631
|
+
"content": {
|
|
3632
|
+
"application/json": {
|
|
3633
|
+
"schema": {
|
|
3634
|
+
"title": "result",
|
|
3635
|
+
"type": "object"
|
|
3636
|
+
}
|
|
3637
|
+
}
|
|
3638
|
+
}
|
|
3639
|
+
}
|
|
3640
|
+
},
|
|
3641
|
+
"parameters": [
|
|
3642
|
+
{
|
|
3643
|
+
"name": "name",
|
|
3644
|
+
"in": "path",
|
|
3645
|
+
"required": true,
|
|
3646
|
+
"schema": {
|
|
3647
|
+
"title": "name",
|
|
3648
|
+
"type": "string"
|
|
3649
|
+
}
|
|
3650
|
+
}
|
|
3651
|
+
],
|
|
3652
|
+
"requestBody": {
|
|
3653
|
+
"description": "indeterminate body object",
|
|
3654
|
+
"content": {
|
|
3655
|
+
"application/json": {
|
|
3656
|
+
"schema": {
|
|
3657
|
+
"type": "object"
|
|
3658
|
+
}
|
|
3659
|
+
}
|
|
3660
|
+
}
|
|
3661
|
+
}
|
|
3662
|
+
},
|
|
3663
|
+
"delete": {
|
|
3664
|
+
"tags": [
|
|
3665
|
+
"Timeperiods"
|
|
3666
|
+
],
|
|
3667
|
+
"operationId": "deleteTimePeriodConfig",
|
|
3668
|
+
"description": "The parameters and request body are for method: deleteTimePeriodConfig. Same endpoint also used in methods:",
|
|
3669
|
+
"responses": {
|
|
3670
|
+
"200": {
|
|
3671
|
+
"description": "Successful operation",
|
|
3672
|
+
"content": {
|
|
3673
|
+
"application/json": {
|
|
3674
|
+
"schema": {
|
|
3675
|
+
"title": "result",
|
|
3676
|
+
"type": "object"
|
|
3677
|
+
}
|
|
3678
|
+
}
|
|
3679
|
+
}
|
|
3680
|
+
}
|
|
3681
|
+
},
|
|
3682
|
+
"parameters": [
|
|
3683
|
+
{
|
|
3684
|
+
"name": "name",
|
|
3685
|
+
"in": "path",
|
|
3686
|
+
"required": true,
|
|
3687
|
+
"schema": {
|
|
3688
|
+
"title": "name",
|
|
3689
|
+
"type": "string"
|
|
3690
|
+
}
|
|
3691
|
+
}
|
|
3692
|
+
],
|
|
3693
|
+
"requestBody": {
|
|
3694
|
+
"content": {
|
|
3695
|
+
"application/json": {
|
|
3696
|
+
"schema": {
|
|
3697
|
+
"type": "object"
|
|
3698
|
+
},
|
|
3699
|
+
"example": {}
|
|
3700
|
+
}
|
|
3701
|
+
}
|
|
3702
|
+
}
|
|
3703
|
+
}
|
|
3704
|
+
}
|
|
3705
|
+
},
|
|
3706
|
+
"components": {
|
|
3707
|
+
"schemas": {}
|
|
3708
|
+
}
|
|
3709
|
+
}
|