@itentialopensource/adapter-netbox 0.6.1 → 0.7.0

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/pronghorn.json CHANGED
@@ -9,7 +9,7 @@
9
9
  ],
10
10
  "methods": [
11
11
  {
12
- "name": "updateConfiguration",
12
+ "name": "updateAdapterConfiguration",
13
13
  "summary": "Updates the adapter configuration",
14
14
  "description": "Updates the adapter configuration file with the provided changes",
15
15
  "input": [
@@ -78,14 +78,510 @@
78
78
  ],
79
79
  "route": {
80
80
  "verb": "POST",
81
- "path": "/updateConfiguration"
81
+ "path": "/updateAdapterConfiguration"
82
+ },
83
+ "task": true
84
+ },
85
+ {
86
+ "name": "findPath",
87
+ "summary": "Provides the ability to see if a particular API path is supported by the adapter",
88
+ "description": "Provides the ability to see if a particular API path is supported by the adapter",
89
+ "input": [
90
+ {
91
+ "name": "apiPath",
92
+ "type": "string",
93
+ "info": "The API Path you want to check - make sure to not include base path and version",
94
+ "description": "The API Path you want to check - make sure to not include base path and version",
95
+ "schema": {
96
+ "title": "apiPath",
97
+ "type": "string"
98
+ },
99
+ "required": true
100
+ }
101
+ ],
102
+ "output": {
103
+ "name": "result",
104
+ "type": "object",
105
+ "description": "A JSON Object containing the result",
106
+ "schema": {
107
+ "title": "result",
108
+ "type": "object"
109
+ }
110
+ },
111
+ "roles": [
112
+ "admin"
113
+ ],
114
+ "route": {
115
+ "verb": "POST",
116
+ "path": "/findPath"
117
+ },
118
+ "task": true
119
+ },
120
+ {
121
+ "name": "troubleshoot",
122
+ "summary": "Runs troubleshoot script for adapter",
123
+ "description": "Runs troubleshoot script for adapter",
124
+ "input": [
125
+ {
126
+ "name": "props",
127
+ "type": "object",
128
+ "info": "Object containing configuration, healthcheck and auth properties {'connProps':{'host': 'api.service.com', 'base_path': '/', 'protocol': 'http', 'port': 443, 'version': 'v1'},'healthCheckEndpoint': '/healthcheck', 'auth': {'auth_method': 'no authentication', 'username': 'username', 'password': 'password'}}",
129
+ "required": true,
130
+ "schema": {
131
+ "title": "props",
132
+ "type": "object"
133
+ }
134
+ },
135
+ {
136
+ "name": "persistFlag",
137
+ "type": "boolean",
138
+ "info": "Whether the input properties should be saved",
139
+ "required": true
140
+ }
141
+ ],
142
+ "output": {
143
+ "name": "result",
144
+ "type": "object",
145
+ "description": "A JSON Object containing the test results",
146
+ "schema": {
147
+ "title": "result",
148
+ "type": "object"
149
+ }
150
+ },
151
+ "roles": [
152
+ "admin"
153
+ ],
154
+ "route": {
155
+ "verb": "POST",
156
+ "path": "/troubleshoot"
157
+ },
158
+ "task": true
159
+ },
160
+ {
161
+ "name": "runHealthcheck",
162
+ "summary": "Runs healthcheck script for adapter",
163
+ "description": "Runs healthcheck script for adapter",
164
+ "input": [],
165
+ "output": {
166
+ "name": "result",
167
+ "type": "boolean",
168
+ "description": "Whether healthcheck passed or failed"
169
+ },
170
+ "roles": [
171
+ "admin"
172
+ ],
173
+ "route": {
174
+ "verb": "POST",
175
+ "path": "/runHealthcheck"
176
+ },
177
+ "task": true
178
+ },
179
+ {
180
+ "name": "runConnectivity",
181
+ "summary": "Runs connectivity check script for adapter",
182
+ "description": "Runs connectivity check script for adapter",
183
+ "input": [],
184
+ "output": {
185
+ "name": "result",
186
+ "type": "object",
187
+ "description": "A JSON Object containing the test results",
188
+ "schema": {
189
+ "title": "result",
190
+ "type": "object"
191
+ }
192
+ },
193
+ "roles": [
194
+ "admin"
195
+ ],
196
+ "route": {
197
+ "verb": "POST",
198
+ "path": "/runConnectivity"
199
+ },
200
+ "task": true
201
+ },
202
+ {
203
+ "name": "runBasicGet",
204
+ "summary": "Runs basicGet script for adapter",
205
+ "description": "Runs basicGet script for adapter",
206
+ "input": [],
207
+ "output": {
208
+ "name": "result",
209
+ "type": "object",
210
+ "description": "A JSON Object containing the test results",
211
+ "schema": {
212
+ "title": "result",
213
+ "type": "object"
214
+ }
215
+ },
216
+ "roles": [
217
+ "admin"
218
+ ],
219
+ "route": {
220
+ "verb": "POST",
221
+ "path": "/runBasicGet"
222
+ },
223
+ "task": true
224
+ },
225
+ {
226
+ "name": "suspend",
227
+ "summary": "Suspends the adapter",
228
+ "description": "Suspends the adapter",
229
+ "input": [
230
+ {
231
+ "name": "mode",
232
+ "type": "enum",
233
+ "enumerals": [
234
+ "pause",
235
+ "error"
236
+ ],
237
+ "info": "How incoming requests are handled. Defaults to 'pause'",
238
+ "description": "How incoming requests are handled. Defaults to 'pause'",
239
+ "schema": {
240
+ "title": "mode",
241
+ "type": "string"
242
+ },
243
+ "required": false
244
+ }
245
+ ],
246
+ "output": {
247
+ "name": "result",
248
+ "type": "object",
249
+ "description": "A JSON Object containing the adapter suspended status",
250
+ "schema": {
251
+ "title": "result",
252
+ "type": "object"
253
+ }
254
+ },
255
+ "roles": [
256
+ "admin"
257
+ ],
258
+ "route": {
259
+ "verb": "POST",
260
+ "path": "/suspend"
261
+ },
262
+ "task": true
263
+ },
264
+ {
265
+ "name": "unsuspend",
266
+ "summary": "Unsuspends the adapter",
267
+ "description": "Unsuspends the adapter",
268
+ "input": [],
269
+ "output": {
270
+ "name": "result",
271
+ "type": "object",
272
+ "description": "A JSON Object containing the adapter suspended status",
273
+ "schema": {
274
+ "title": "result",
275
+ "type": "object"
276
+ }
277
+ },
278
+ "roles": [
279
+ "admin"
280
+ ],
281
+ "route": {
282
+ "verb": "POST",
283
+ "path": "/unsuspend"
284
+ },
285
+ "task": true
286
+ },
287
+ {
288
+ "name": "getQueue",
289
+ "summary": "Return the requests that are waiting in the queue if throttling is enabled",
290
+ "description": "Return the requests that are waiting in the queue if throttling is enabled",
291
+ "input": [],
292
+ "output": {
293
+ "name": "result",
294
+ "type": "object",
295
+ "description": "A JSON Object containing the adapter queue",
296
+ "schema": {
297
+ "title": "result",
298
+ "type": "object"
299
+ }
300
+ },
301
+ "roles": [
302
+ "admin"
303
+ ],
304
+ "route": {
305
+ "verb": "POST",
306
+ "path": "/getQueue"
307
+ },
308
+ "task": true
309
+ },
310
+ {
311
+ "name": "genericAdapterRequest",
312
+ "summary": "Makes the requested generic call",
313
+ "description": "Makes the requested generic call",
314
+ "input": [
315
+ {
316
+ "name": "uriPath",
317
+ "type": "string",
318
+ "info": "the path of the api call - do not include the host, port, base path or version",
319
+ "description": "the path of the api call",
320
+ "schema": {
321
+ "title": "uriPath",
322
+ "type": "string"
323
+ },
324
+ "required": true
325
+ },
326
+ {
327
+ "name": "restMethod",
328
+ "type": "string",
329
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
330
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
331
+ "schema": {
332
+ "title": "restMethod",
333
+ "type": "string"
334
+ },
335
+ "required": true
336
+ },
337
+ {
338
+ "name": "queryData",
339
+ "type": "object",
340
+ "info": "the query parameters to be put on the url (optional)",
341
+ "description": "the query parameters to be put on the url (optional)",
342
+ "schema": {
343
+ "title": "queryData",
344
+ "type": "object"
345
+ },
346
+ "required": false
347
+ },
348
+ {
349
+ "name": "requestBody",
350
+ "type": "object",
351
+ "info": "the payload to be sent with the request (optional)",
352
+ "description": "the payload to be sent with the request (optional)",
353
+ "schema": {
354
+ "title": "requestBody",
355
+ "type": "object"
356
+ },
357
+ "required": false
358
+ },
359
+ {
360
+ "name": "addlHeaders",
361
+ "type": "object",
362
+ "info": "additional headers to be put on the call (optional)",
363
+ "description": "additional headers to be put on the call (optional)",
364
+ "schema": {
365
+ "title": "addlHeaders",
366
+ "type": "object"
367
+ },
368
+ "required": false
369
+ }
370
+ ],
371
+ "output": {
372
+ "name": "result",
373
+ "type": "object",
374
+ "description": "A JSON Object containing status, code and the result",
375
+ "schema": {
376
+ "title": "result",
377
+ "type": "object"
378
+ }
379
+ },
380
+ "roles": [
381
+ "admin"
382
+ ],
383
+ "route": {
384
+ "verb": "POST",
385
+ "path": "/genericAdapterRequest"
386
+ },
387
+ "task": true
388
+ },
389
+ {
390
+ "name": "moveEntitiesToDB",
391
+ "summary": "Moves entities from an adapter into the IAP database",
392
+ "description": "Moves entities from an adapter into the IAP database",
393
+ "input": [],
394
+ "output": {
395
+ "name": "res",
396
+ "type": "object",
397
+ "description": "A JSON Object containing status, code and the response from the mongo transaction",
398
+ "schema": {
399
+ "title": "res",
400
+ "type": "object"
401
+ }
402
+ },
403
+ "roles": [
404
+ "admin"
405
+ ],
406
+ "route": {
407
+ "verb": "POST",
408
+ "path": "/moveEntitiesToDB"
409
+ },
410
+ "task": true
411
+ },
412
+ {
413
+ "name": "getDevice",
414
+ "summary": "Get the Appliance",
415
+ "description": "Get the Appliance",
416
+ "input": [
417
+ {
418
+ "name": "deviceName",
419
+ "type": "string",
420
+ "info": "An Appliance Device Name",
421
+ "required": true,
422
+ "schema": {
423
+ "title": "deviceName",
424
+ "type": "string"
425
+ }
426
+ }
427
+ ],
428
+ "output": {
429
+ "name": "result",
430
+ "type": "object",
431
+ "description": "A JSON Object containing status, code and the result",
432
+ "schema": {
433
+ "title": "result",
434
+ "type": "object"
435
+ }
436
+ },
437
+ "roles": [
438
+ "admin"
439
+ ],
440
+ "route": {
441
+ "verb": "POST",
442
+ "path": "/getDevice"
443
+ },
444
+ "task": false
445
+ },
446
+ {
447
+ "name": "getDevicesFiltered",
448
+ "summary": "Get Appliances that match the filter",
449
+ "description": "Get Appliances that match the filter",
450
+ "input": [
451
+ {
452
+ "name": "options",
453
+ "type": "object",
454
+ "info": "options - e.g. { 'start': 1, 'limit': 20, 'filter': { 'name': 'abc123' } }",
455
+ "required": true,
456
+ "schema": {
457
+ "title": "options",
458
+ "type": "object"
459
+ }
460
+ }
461
+ ],
462
+ "output": {
463
+ "name": "result",
464
+ "type": "array",
465
+ "description": "A JSON Object containing status, code and the result",
466
+ "schema": {
467
+ "title": "result",
468
+ "type": "array"
469
+ }
470
+ },
471
+ "roles": [
472
+ "admin"
473
+ ],
474
+ "route": {
475
+ "verb": "POST",
476
+ "path": "/getDevicesFiltered"
477
+ },
478
+ "task": false
479
+ },
480
+ {
481
+ "name": "isAlive",
482
+ "summary": "Checks the status for the provided Appliance",
483
+ "description": "Checks the status for the provided Appliance",
484
+ "input": [
485
+ {
486
+ "name": "deviceName",
487
+ "type": "string",
488
+ "info": "An Appliance Device Name",
489
+ "required": true,
490
+ "schema": {
491
+ "title": "deviceName",
492
+ "type": "string"
493
+ }
494
+ }
495
+ ],
496
+ "output": {
497
+ "name": "result",
498
+ "type": "boolean",
499
+ "description": "A JSON Object containing status, code and the result",
500
+ "schema": {
501
+ "title": "result",
502
+ "type": "boolean"
503
+ }
504
+ },
505
+ "roles": [
506
+ "admin"
507
+ ],
508
+ "route": {
509
+ "verb": "POST",
510
+ "path": "/isAlive"
511
+ },
512
+ "task": false
513
+ },
514
+ {
515
+ "name": "getConfig",
516
+ "summary": "Gets a config for the provided Appliance",
517
+ "description": "Gets a config for the provided Appliance",
518
+ "input": [
519
+ {
520
+ "name": "deviceName",
521
+ "type": "string",
522
+ "info": "An Appliance Device Name",
523
+ "required": true,
524
+ "schema": {
525
+ "title": "deviceName",
526
+ "type": "string"
527
+ }
528
+ },
529
+ {
530
+ "name": "format",
531
+ "type": "string",
532
+ "info": "The format to be returned - this is ignored as we always return json",
533
+ "required": false,
534
+ "schema": {
535
+ "title": "format",
536
+ "type": "string"
537
+ }
538
+ }
539
+ ],
540
+ "output": {
541
+ "name": "result",
542
+ "type": "object",
543
+ "description": "A JSON Object containing status, code and the result",
544
+ "schema": {
545
+ "title": "result",
546
+ "type": "object"
547
+ }
548
+ },
549
+ "roles": [
550
+ "admin"
551
+ ],
552
+ "route": {
553
+ "verb": "POST",
554
+ "path": "/getConfig"
555
+ },
556
+ "task": false
557
+ },
558
+ {
559
+ "name": "getCount",
560
+ "summary": "Gets a device count from the system",
561
+ "description": "Gets a device count from the system",
562
+ "input": [],
563
+ "output": {
564
+ "name": "result",
565
+ "type": "object",
566
+ "description": "A JSON Object containing status, code and the result",
567
+ "schema": {
568
+ "title": "result",
569
+ "type": "object"
570
+ }
571
+ },
572
+ "roles": [
573
+ "admin"
574
+ ],
575
+ "route": {
576
+ "verb": "POST",
577
+ "path": "/getCount"
82
578
  },
83
579
  "task": false
84
580
  },
85
581
  {
86
582
  "name": "getCircuitsCircuitTerminations",
87
- "summary": "Call to super to allow for caching",
88
- "description": "Call to super to allow for caching",
583
+ "summary": "get Circuit Terminations",
584
+ "description": "get Circuit Terminations",
89
585
  "input": [
90
586
  {
91
587
  "name": "termSide",
@@ -482,8 +978,8 @@
482
978
  },
483
979
  {
484
980
  "name": "getCircuitsCircuitTerminationsId",
485
- "summary": "Call to super to allow for caching",
486
- "description": "Call to super to allow for caching",
981
+ "summary": "get circuit terminations by id",
982
+ "description": "get circuit terminations by id",
487
983
  "input": [
488
984
  {
489
985
  "name": "id",
@@ -638,8 +1134,8 @@
638
1134
  },
639
1135
  {
640
1136
  "name": "getCircuitsCircuitTypes",
641
- "summary": "Call to super to allow for caching",
642
- "description": "Call to super to allow for caching",
1137
+ "summary": "get circuit types",
1138
+ "description": "get circuit types",
643
1139
  "input": [
644
1140
  {
645
1141
  "name": "id",
@@ -996,8 +1492,8 @@
996
1492
  },
997
1493
  {
998
1494
  "name": "getCircuitsCircuitTypesId",
999
- "summary": "Call to super to allow for caching",
1000
- "description": "Call to super to allow for caching",
1495
+ "summary": "get circuit types by id",
1496
+ "description": "get circuit types by id",
1001
1497
  "input": [
1002
1498
  {
1003
1499
  "name": "id",
@@ -1152,8 +1648,8 @@
1152
1648
  },
1153
1649
  {
1154
1650
  "name": "getCircuitsCircuits",
1155
- "summary": "Call to super to allow for caching",
1156
- "description": "Call to super to allow for caching",
1651
+ "summary": "get circuits",
1652
+ "description": "get circuits",
1157
1653
  "input": [
1158
1654
  {
1159
1655
  "name": "id",
@@ -1870,8 +2366,8 @@
1870
2366
  },
1871
2367
  {
1872
2368
  "name": "getCircuitsCircuitsId",
1873
- "summary": "Call to super to allow for caching",
1874
- "description": "Call to super to allow for caching",
2369
+ "summary": "get circuits by id",
2370
+ "description": "get circuits by id",
1875
2371
  "input": [
1876
2372
  {
1877
2373
  "name": "id",
@@ -2026,8 +2522,8 @@
2026
2522
  },
2027
2523
  {
2028
2524
  "name": "getCircuitsProviders",
2029
- "summary": "Call to super to allow for caching",
2030
- "description": "Call to super to allow for caching",
2525
+ "summary": "get circuit providers",
2526
+ "description": "get circuit providers",
2031
2527
  "input": [
2032
2528
  {
2033
2529
  "name": "id",
@@ -2704,8 +3200,8 @@
2704
3200
  },
2705
3201
  {
2706
3202
  "name": "getCircuitsProvidersId",
2707
- "summary": "Call to super to allow for caching",
2708
- "description": "Call to super to allow for caching",
3203
+ "summary": "get circuit providers by id",
3204
+ "description": "get circuit providers by id",
2709
3205
  "input": [
2710
3206
  {
2711
3207
  "name": "id",
@@ -2894,8 +3390,8 @@
2894
3390
  },
2895
3391
  {
2896
3392
  "name": "getDcimCables",
2897
- "summary": "Call to super to allow for caching",
2898
- "description": "Call to super to allow for caching",
3393
+ "summary": "get DCIM cables",
3394
+ "description": "get DCIM cables",
2899
3395
  "input": [
2900
3396
  {
2901
3397
  "name": "id",
@@ -3372,8 +3868,8 @@
3372
3868
  },
3373
3869
  {
3374
3870
  "name": "getDcimCablesId",
3375
- "summary": "Call to super to allow for caching",
3376
- "description": "Call to super to allow for caching",
3871
+ "summary": "get DCIM cables by id",
3872
+ "description": "get DCIM cables by id",
3377
3873
  "input": [
3378
3874
  {
3379
3875
  "name": "id",
@@ -3786,8 +4282,8 @@
3786
4282
  },
3787
4283
  {
3788
4284
  "name": "getDcimConsolePortTemplates",
3789
- "summary": "Call to super to allow for caching",
3790
- "description": "Call to super to allow for caching",
4285
+ "summary": "get DCIM Console Port Templates",
4286
+ "description": "get DCIM Console Port Templates",
3791
4287
  "input": [
3792
4288
  {
3793
4289
  "name": "id",
@@ -4084,8 +4580,8 @@
4084
4580
  },
4085
4581
  {
4086
4582
  "name": "getDcimConsolePortTemplatesId",
4087
- "summary": "Call to super to allow for caching",
4088
- "description": "Call to super to allow for caching",
4583
+ "summary": "get DCIM Console Port Templates by id",
4584
+ "description": "get DCIM Console Port Templates by id",
4089
4585
  "input": [
4090
4586
  {
4091
4587
  "name": "id",
@@ -4240,8 +4736,8 @@
4240
4736
  },
4241
4737
  {
4242
4738
  "name": "getDcimConsolePorts",
4243
- "summary": "Call to super to allow for caching",
4244
- "description": "Call to super to allow for caching",
4739
+ "summary": "get DCIM Console Ports",
4740
+ "description": "get DCIM Console Ports",
4245
4741
  "input": [
4246
4742
  {
4247
4743
  "name": "id",
@@ -4788,8 +5284,8 @@
4788
5284
  },
4789
5285
  {
4790
5286
  "name": "getDcimConsolePortsId",
4791
- "summary": "Call to super to allow for caching",
4792
- "description": "Call to super to allow for caching",
5287
+ "summary": "get DCIM Console Ports by id",
5288
+ "description": "get DCIM Console Ports by id",
4793
5289
  "input": [
4794
5290
  {
4795
5291
  "name": "id",
@@ -4978,8 +5474,8 @@
4978
5474
  },
4979
5475
  {
4980
5476
  "name": "getDcimConsoleServerPortTemplates",
4981
- "summary": "Call to super to allow for caching",
4982
- "description": "Call to super to allow for caching",
5477
+ "summary": "get DCIM Console Server Port Templates",
5478
+ "description": "get DCIM Console Server Port Templates",
4983
5479
  "input": [
4984
5480
  {
4985
5481
  "name": "id",
@@ -5276,8 +5772,8 @@
5276
5772
  },
5277
5773
  {
5278
5774
  "name": "getDcimConsoleServerPortTemplatesId",
5279
- "summary": "Call to super to allow for caching",
5280
- "description": "Call to super to allow for caching",
5775
+ "summary": "get DCIM Console Server Port Templates by id",
5776
+ "description": "get DCIM Console Server Port Templates by id",
5281
5777
  "input": [
5282
5778
  {
5283
5779
  "name": "id",
@@ -5432,8 +5928,8 @@
5432
5928
  },
5433
5929
  {
5434
5930
  "name": "getDcimConsoleServerPorts",
5435
- "summary": "Call to super to allow for caching",
5436
- "description": "Call to super to allow for caching",
5931
+ "summary": "get DCIM Console Server Ports",
5932
+ "description": "get DCIM Console Server Ports",
5437
5933
  "input": [
5438
5934
  {
5439
5935
  "name": "id",
@@ -5980,8 +6476,8 @@
5980
6476
  },
5981
6477
  {
5982
6478
  "name": "getDcimConsoleServerPortsId",
5983
- "summary": "Call to super to allow for caching",
5984
- "description": "Call to super to allow for caching",
6479
+ "summary": "get DCIM Console Server Ports by id",
6480
+ "description": "get DCIM Console Server Ports by id",
5985
6481
  "input": [
5986
6482
  {
5987
6483
  "name": "id",
@@ -6170,8 +6666,8 @@
6170
6666
  },
6171
6667
  {
6172
6668
  "name": "getDcimDeviceBayTemplates",
6173
- "summary": "Call to super to allow for caching",
6174
- "description": "Call to super to allow for caching",
6669
+ "summary": "get DCIM Device Bay Templates",
6670
+ "description": "get DCIM Device Bay Templates",
6175
6671
  "input": [
6176
6672
  {
6177
6673
  "name": "id",
@@ -6448,8 +6944,8 @@
6448
6944
  },
6449
6945
  {
6450
6946
  "name": "getDcimDeviceBayTemplatesId",
6451
- "summary": "Call to super to allow for caching",
6452
- "description": "Call to super to allow for caching",
6947
+ "summary": "get DCIM Device Bay Templates by id",
6948
+ "description": "get DCIM Device Bay Templates by id",
6453
6949
  "input": [
6454
6950
  {
6455
6951
  "name": "id",
@@ -6604,8 +7100,8 @@
6604
7100
  },
6605
7101
  {
6606
7102
  "name": "getDcimDeviceBays",
6607
- "summary": "Call to super to allow for caching",
6608
- "description": "Call to super to allow for caching",
7103
+ "summary": "get DCIM Device Bays",
7104
+ "description": "get DCIM Device Bays",
6609
7105
  "input": [
6610
7106
  {
6611
7107
  "name": "id",
@@ -7102,8 +7598,8 @@
7102
7598
  },
7103
7599
  {
7104
7600
  "name": "getDcimDeviceBaysId",
7105
- "summary": "Call to super to allow for caching",
7106
- "description": "Call to super to allow for caching",
7601
+ "summary": "get DCIM Device Bays by id",
7602
+ "description": "get DCIM Device Bays by id",
7107
7603
  "input": [
7108
7604
  {
7109
7605
  "name": "id",
@@ -7258,8 +7754,8 @@
7258
7754
  },
7259
7755
  {
7260
7756
  "name": "getDcimDeviceRoles",
7261
- "summary": "Call to super to allow for caching",
7262
- "description": "Call to super to allow for caching",
7757
+ "summary": "get DCIM Device Roles",
7758
+ "description": "get DCIM Device Roles",
7263
7759
  "input": [
7264
7760
  {
7265
7761
  "name": "id",
@@ -7726,8 +8222,8 @@
7726
8222
  },
7727
8223
  {
7728
8224
  "name": "getDcimDeviceRolesId",
7729
- "summary": "Call to super to allow for caching",
7730
- "description": "Call to super to allow for caching",
8225
+ "summary": "get DCIM Device Roles by id",
8226
+ "description": "get DCIM Device Roles by id",
7731
8227
  "input": [
7732
8228
  {
7733
8229
  "name": "id",
@@ -7882,8 +8378,8 @@
7882
8378
  },
7883
8379
  {
7884
8380
  "name": "getDcimDeviceTypes",
7885
- "summary": "Call to super to allow for caching",
7886
- "description": "Call to super to allow for caching",
8381
+ "summary": "get DCIM Device Types",
8382
+ "description": "get DCIM Device Types",
7887
8383
  "input": [
7888
8384
  {
7889
8385
  "name": "id",
@@ -8620,8 +9116,8 @@
8620
9116
  },
8621
9117
  {
8622
9118
  "name": "getDcimDeviceTypesId",
8623
- "summary": "Call to super to allow for caching",
8624
- "description": "Call to super to allow for caching",
9119
+ "summary": "get DCIM Device Types by id",
9120
+ "description": "get DCIM Device Types by id",
8625
9121
  "input": [
8626
9122
  {
8627
9123
  "name": "id",
@@ -8776,8 +9272,8 @@
8776
9272
  },
8777
9273
  {
8778
9274
  "name": "getDcimDevices",
8779
- "summary": "Call to super to allow for caching",
8780
- "description": "Call to super to allow for caching",
9275
+ "summary": "get DCIM Devices",
9276
+ "description": "get DCIM Devices",
8781
9277
  "input": [
8782
9278
  {
8783
9279
  "name": "id",
@@ -10054,8 +10550,8 @@
10054
10550
  },
10055
10551
  {
10056
10552
  "name": "getDcimDevicesId",
10057
- "summary": "Call to super to allow for caching",
10058
- "description": "Call to super to allow for caching",
10553
+ "summary": "get DCIM Devices by id",
10554
+ "description": "get DCIM Devices by id",
10059
10555
  "input": [
10060
10556
  {
10061
10557
  "name": "id",
@@ -10288,8 +10784,8 @@
10288
10784
  },
10289
10785
  {
10290
10786
  "name": "getDcimFrontPortTemplates",
10291
- "summary": "Call to super to allow for caching",
10292
- "description": "Call to super to allow for caching",
10787
+ "summary": "get DCIM Front Port Templates",
10788
+ "description": "get DCIM Front Port Templates",
10293
10789
  "input": [
10294
10790
  {
10295
10791
  "name": "id",
@@ -10586,8 +11082,8 @@
10586
11082
  },
10587
11083
  {
10588
11084
  "name": "getDcimFrontPortTemplatesId",
10589
- "summary": "Call to super to allow for caching",
10590
- "description": "Call to super to allow for caching",
11085
+ "summary": "get DCIM Front Port Templates by id",
11086
+ "description": "get DCIM Front Port Templates by id",
10591
11087
  "input": [
10592
11088
  {
10593
11089
  "name": "id",
@@ -10742,8 +11238,8 @@
10742
11238
  },
10743
11239
  {
10744
11240
  "name": "getDcimFrontPorts",
10745
- "summary": "Call to super to allow for caching",
10746
- "description": "Call to super to allow for caching",
11241
+ "summary": "get DCIM Front Ports",
11242
+ "description": "get DCIM Front Ports",
10747
11243
  "input": [
10748
11244
  {
10749
11245
  "name": "id",
@@ -11270,8 +11766,8 @@
11270
11766
  },
11271
11767
  {
11272
11768
  "name": "getDcimFrontPortsId",
11273
- "summary": "Call to super to allow for caching",
11274
- "description": "Call to super to allow for caching",
11769
+ "summary": "get DCIM Front Ports by id",
11770
+ "description": "get DCIM Front Ports by id",
11275
11771
  "input": [
11276
11772
  {
11277
11773
  "name": "id",
@@ -11530,8 +12026,8 @@
11530
12026
  },
11531
12027
  {
11532
12028
  "name": "getDcimInterfaceTemplates",
11533
- "summary": "Call to super to allow for caching",
11534
- "description": "Call to super to allow for caching",
12029
+ "summary": "get DCIM Interface Templates",
12030
+ "description": "get DCIM Interface Templates",
11535
12031
  "input": [
11536
12032
  {
11537
12033
  "name": "id",
@@ -11838,8 +12334,8 @@
11838
12334
  },
11839
12335
  {
11840
12336
  "name": "getDcimInterfaceTemplatesId",
11841
- "summary": "Call to super to allow for caching",
11842
- "description": "Call to super to allow for caching",
12337
+ "summary": "get DCIM Interface Templates by id",
12338
+ "description": "get DCIM Interface Templates by id",
11843
12339
  "input": [
11844
12340
  {
11845
12341
  "name": "id",
@@ -11994,8 +12490,8 @@
11994
12490
  },
11995
12491
  {
11996
12492
  "name": "getDcimInterfaces",
11997
- "summary": "Call to super to allow for caching",
11998
- "description": "Call to super to allow for caching",
12493
+ "summary": "get DCIM Interfaces",
12494
+ "description": "get DCIM Interfaces",
11999
12495
  "input": [
12000
12496
  {
12001
12497
  "name": "id",
@@ -12772,8 +13268,8 @@
12772
13268
  },
12773
13269
  {
12774
13270
  "name": "getDcimInterfacesId",
12775
- "summary": "Call to super to allow for caching",
12776
- "description": "Call to super to allow for caching",
13271
+ "summary": "get DCIM Interfaces by id",
13272
+ "description": "get DCIM Interfaces by id",
12777
13273
  "input": [
12778
13274
  {
12779
13275
  "name": "id",
@@ -12996,8 +13492,8 @@
12996
13492
  },
12997
13493
  {
12998
13494
  "name": "getDcimInventoryItems",
12999
- "summary": "Call to super to allow for caching",
13000
- "description": "Call to super to allow for caching",
13495
+ "summary": "get DCIM Inventory Items",
13496
+ "description": "get DCIM Inventory Items",
13001
13497
  "input": [
13002
13498
  {
13003
13499
  "name": "id",
@@ -13674,8 +14170,8 @@
13674
14170
  },
13675
14171
  {
13676
14172
  "name": "getDcimInventoryItemsId",
13677
- "summary": "Call to super to allow for caching",
13678
- "description": "Call to super to allow for caching",
14173
+ "summary": "get DCIM Inventory Items by id",
14174
+ "description": "get DCIM Inventory Items by id",
13679
14175
  "input": [
13680
14176
  {
13681
14177
  "name": "id",
@@ -13830,8 +14326,8 @@
13830
14326
  },
13831
14327
  {
13832
14328
  "name": "getDcimManufacturers",
13833
- "summary": "Call to super to allow for caching",
13834
- "description": "Call to super to allow for caching",
14329
+ "summary": "get DCIM Manufacturers",
14330
+ "description": "get DCIM Manufacturers",
13835
14331
  "input": [
13836
14332
  {
13837
14333
  "name": "id",
@@ -14288,8 +14784,8 @@
14288
14784
  },
14289
14785
  {
14290
14786
  "name": "getDcimManufacturersId",
14291
- "summary": "Call to super to allow for caching",
14292
- "description": "Call to super to allow for caching",
14787
+ "summary": "get DCIM Manufacturers by id",
14788
+ "description": "get DCIM Manufacturers by id",
14293
14789
  "input": [
14294
14790
  {
14295
14791
  "name": "id",
@@ -14444,8 +14940,8 @@
14444
14940
  },
14445
14941
  {
14446
14942
  "name": "getDcimPlatforms",
14447
- "summary": "Call to super to allow for caching",
14448
- "description": "Call to super to allow for caching",
14943
+ "summary": "get DCIM Platforms",
14944
+ "description": "get DCIM Platforms",
14449
14945
  "input": [
14450
14946
  {
14451
14947
  "name": "id",
@@ -15042,8 +15538,8 @@
15042
15538
  },
15043
15539
  {
15044
15540
  "name": "getDcimPlatformsId",
15045
- "summary": "Call to super to allow for caching",
15046
- "description": "Call to super to allow for caching",
15541
+ "summary": "get DCIM Platforms by id",
15542
+ "description": "get DCIM Platforms by id",
15047
15543
  "input": [
15048
15544
  {
15049
15545
  "name": "id",
@@ -15402,8 +15898,8 @@
15402
15898
  },
15403
15899
  {
15404
15900
  "name": "getDcimPowerFeeds",
15405
- "summary": "Call to super to allow for caching",
15406
- "description": "Call to super to allow for caching",
15901
+ "summary": "get DCIM Power Feeds",
15902
+ "description": "get DCIM Power Feeds",
15407
15903
  "input": [
15408
15904
  {
15409
15905
  "name": "id",
@@ -16120,8 +16616,8 @@
16120
16616
  },
16121
16617
  {
16122
16618
  "name": "getDcimPowerFeedsId",
16123
- "summary": "Call to super to allow for caching",
16124
- "description": "Call to super to allow for caching",
16619
+ "summary": "get DCIM Power Feeds by id",
16620
+ "description": "get DCIM Power Feeds by id",
16125
16621
  "input": [
16126
16622
  {
16127
16623
  "name": "id",
@@ -16276,8 +16772,8 @@
16276
16772
  },
16277
16773
  {
16278
16774
  "name": "getDcimPowerOutletTemplates",
16279
- "summary": "Call to super to allow for caching",
16280
- "description": "Call to super to allow for caching",
16775
+ "summary": "get DCIM Power Outlet Templates",
16776
+ "description": "get DCIM Power Outlet Templates",
16281
16777
  "input": [
16282
16778
  {
16283
16779
  "name": "id",
@@ -16594,8 +17090,8 @@
16594
17090
  },
16595
17091
  {
16596
17092
  "name": "getDcimPowerOutletTemplatesId",
16597
- "summary": "Call to super to allow for caching",
16598
- "description": "Call to super to allow for caching",
17093
+ "summary": "get DCIM Power Outlet Templates by id",
17094
+ "description": "get DCIM Power Outlet Templates by id",
16599
17095
  "input": [
16600
17096
  {
16601
17097
  "name": "id",
@@ -16750,8 +17246,8 @@
16750
17246
  },
16751
17247
  {
16752
17248
  "name": "getDcimPowerOutlets",
16753
- "summary": "Call to super to allow for caching",
16754
- "description": "Call to super to allow for caching",
17249
+ "summary": "get DCIM Power Outlets",
17250
+ "description": "get DCIM Power Outlets",
16755
17251
  "input": [
16756
17252
  {
16757
17253
  "name": "id",
@@ -17318,8 +17814,8 @@
17318
17814
  },
17319
17815
  {
17320
17816
  "name": "getDcimPowerOutletsId",
17321
- "summary": "Call to super to allow for caching",
17322
- "description": "Call to super to allow for caching",
17817
+ "summary": "get DCIM Power Outlets by id",
17818
+ "description": "get DCIM Power Outlets by id",
17323
17819
  "input": [
17324
17820
  {
17325
17821
  "name": "id",
@@ -17508,8 +18004,8 @@
17508
18004
  },
17509
18005
  {
17510
18006
  "name": "getDcimPowerPanels",
17511
- "summary": "Call to super to allow for caching",
17512
- "description": "Call to super to allow for caching",
18007
+ "summary": "get DCIM Power Panels",
18008
+ "description": "get DCIM Power Panels",
17513
18009
  "input": [
17514
18010
  {
17515
18011
  "name": "id",
@@ -17866,8 +18362,8 @@
17866
18362
  },
17867
18363
  {
17868
18364
  "name": "getDcimPowerPanelsId",
17869
- "summary": "Call to super to allow for caching",
17870
- "description": "Call to super to allow for caching",
18365
+ "summary": "get DCIM Power Panels by id",
18366
+ "description": "get DCIM Power Panels by id",
17871
18367
  "input": [
17872
18368
  {
17873
18369
  "name": "id",
@@ -18022,8 +18518,8 @@
18022
18518
  },
18023
18519
  {
18024
18520
  "name": "getDcimPowerPortTemplates",
18025
- "summary": "Call to super to allow for caching",
18026
- "description": "Call to super to allow for caching",
18521
+ "summary": "get DCIM Power Port Templates",
18522
+ "description": "get DCIM Power Port Templates",
18027
18523
  "input": [
18028
18524
  {
18029
18525
  "name": "id",
@@ -18440,8 +18936,8 @@
18440
18936
  },
18441
18937
  {
18442
18938
  "name": "getDcimPowerPortTemplatesId",
18443
- "summary": "Call to super to allow for caching",
18444
- "description": "Call to super to allow for caching",
18939
+ "summary": "get DCIM Power Port Templates by id",
18940
+ "description": "get DCIM Power Port Templates by id",
18445
18941
  "input": [
18446
18942
  {
18447
18943
  "name": "id",
@@ -18596,8 +19092,8 @@
18596
19092
  },
18597
19093
  {
18598
19094
  "name": "getDcimPowerPorts",
18599
- "summary": "Call to super to allow for caching",
18600
- "description": "Call to super to allow for caching",
19095
+ "summary": "get DCIM Power Ports",
19096
+ "description": "get DCIM Power Ports",
18601
19097
  "input": [
18602
19098
  {
18603
19099
  "name": "id",
@@ -19264,8 +19760,8 @@
19264
19760
  },
19265
19761
  {
19266
19762
  "name": "getDcimPowerPortsId",
19267
- "summary": "Call to super to allow for caching",
19268
- "description": "Call to super to allow for caching",
19763
+ "summary": "get DCIM Power Ports by id",
19764
+ "description": "get DCIM Power Ports by id",
19269
19765
  "input": [
19270
19766
  {
19271
19767
  "name": "id",
@@ -19454,8 +19950,8 @@
19454
19950
  },
19455
19951
  {
19456
19952
  "name": "getDcimRackGroups",
19457
- "summary": "Call to super to allow for caching",
19458
- "description": "Call to super to allow for caching",
19953
+ "summary": "get DCIM Rack Groups",
19954
+ "description": "get DCIM Rack Groups",
19459
19955
  "input": [
19460
19956
  {
19461
19957
  "name": "id",
@@ -20032,8 +20528,8 @@
20032
20528
  },
20033
20529
  {
20034
20530
  "name": "getDcimRackGroupsId",
20035
- "summary": "Call to super to allow for caching",
20036
- "description": "Call to super to allow for caching",
20531
+ "summary": "get DCIM Rack Groups by id",
20532
+ "description": "get DCIM Rack Groups by id",
20037
20533
  "input": [
20038
20534
  {
20039
20535
  "name": "id",
@@ -20188,8 +20684,8 @@
20188
20684
  },
20189
20685
  {
20190
20686
  "name": "getDcimRackReservations",
20191
- "summary": "Call to super to allow for caching",
20192
- "description": "Call to super to allow for caching",
20687
+ "summary": "get DCIM Rack Reservations",
20688
+ "description": "get DCIM Rack Reservations",
20193
20689
  "input": [
20194
20690
  {
20195
20691
  "name": "id",
@@ -20626,8 +21122,8 @@
20626
21122
  },
20627
21123
  {
20628
21124
  "name": "getDcimRackReservationsId",
20629
- "summary": "Call to super to allow for caching",
20630
- "description": "Call to super to allow for caching",
21125
+ "summary": "get DCIM Rack Reservations by id",
21126
+ "description": "get DCIM Rack Reservations by id",
20631
21127
  "input": [
20632
21128
  {
20633
21129
  "name": "id",
@@ -20782,8 +21278,8 @@
20782
21278
  },
20783
21279
  {
20784
21280
  "name": "getDcimRackRoles",
20785
- "summary": "Call to super to allow for caching",
20786
- "description": "Call to super to allow for caching",
21281
+ "summary": "get DCIM Rack Roles",
21282
+ "description": "get DCIM Rack Roles",
20787
21283
  "input": [
20788
21284
  {
20789
21285
  "name": "id",
@@ -21240,8 +21736,8 @@
21240
21736
  },
21241
21737
  {
21242
21738
  "name": "getDcimRackRolesId",
21243
- "summary": "Call to super to allow for caching",
21244
- "description": "Call to super to allow for caching",
21739
+ "summary": "get DCIM Rack Roles by id",
21740
+ "description": "get DCIM Rack Roles by id",
21245
21741
  "input": [
21246
21742
  {
21247
21743
  "name": "id",
@@ -21396,8 +21892,8 @@
21396
21892
  },
21397
21893
  {
21398
21894
  "name": "getDcimRacks",
21399
- "summary": "Call to super to allow for caching",
21400
- "description": "Call to super to allow for caching",
21895
+ "summary": "get DCIM Racks",
21896
+ "description": "get DCIM Racks",
21401
21897
  "input": [
21402
21898
  {
21403
21899
  "name": "id",
@@ -22454,8 +22950,8 @@
22454
22950
  },
22455
22951
  {
22456
22952
  "name": "getDcimRacksId",
22457
- "summary": "Call to super to allow for caching",
22458
- "description": "Call to super to allow for caching",
22953
+ "summary": "get DCIM Racks by id",
22954
+ "description": "get DCIM Racks by id",
22459
22955
  "input": [
22460
22956
  {
22461
22957
  "name": "id",
@@ -22744,8 +23240,8 @@
22744
23240
  },
22745
23241
  {
22746
23242
  "name": "getDcimRearPortTemplates",
22747
- "summary": "Call to super to allow for caching",
22748
- "description": "Call to super to allow for caching",
23243
+ "summary": "get DCIM Rear Port Templates",
23244
+ "description": "get DCIM Rear Port Templates",
22749
23245
  "input": [
22750
23246
  {
22751
23247
  "name": "id",
@@ -23102,8 +23598,8 @@
23102
23598
  },
23103
23599
  {
23104
23600
  "name": "getDcimRearPortTemplatesId",
23105
- "summary": "Call to super to allow for caching",
23106
- "description": "Call to super to allow for caching",
23601
+ "summary": "get DCIM Rear Port Templates by id",
23602
+ "description": "get DCIM Rear Port Templates by id",
23107
23603
  "input": [
23108
23604
  {
23109
23605
  "name": "id",
@@ -23258,8 +23754,8 @@
23258
23754
  },
23259
23755
  {
23260
23756
  "name": "getDcimRearPorts",
23261
- "summary": "Call to super to allow for caching",
23262
- "description": "Call to super to allow for caching",
23757
+ "summary": "get DCIM Rear Ports",
23758
+ "description": "get DCIM Rear Ports",
23263
23759
  "input": [
23264
23760
  {
23265
23761
  "name": "id",
@@ -23846,8 +24342,8 @@
23846
24342
  },
23847
24343
  {
23848
24344
  "name": "getDcimRearPortsId",
23849
- "summary": "Call to super to allow for caching",
23850
- "description": "Call to super to allow for caching",
24345
+ "summary": "get DCIM Rear Ports by id",
24346
+ "description": "get DCIM Rear Ports by id",
23851
24347
  "input": [
23852
24348
  {
23853
24349
  "name": "id",
@@ -24002,8 +24498,8 @@
24002
24498
  },
24003
24499
  {
24004
24500
  "name": "getDcimRegions",
24005
- "summary": "Call to super to allow for caching",
24006
- "description": "Call to super to allow for caching",
24501
+ "summary": "get DCIM Regions",
24502
+ "description": "get DCIM Regions",
24007
24503
  "input": [
24008
24504
  {
24009
24505
  "name": "id",
@@ -24500,8 +24996,8 @@
24500
24996
  },
24501
24997
  {
24502
24998
  "name": "getDcimRegionsId",
24503
- "summary": "Call to super to allow for caching",
24504
- "description": "Call to super to allow for caching",
24999
+ "summary": "get DCIM Regions by id",
25000
+ "description": "get DCIM Regions by id",
24505
25001
  "input": [
24506
25002
  {
24507
25003
  "name": "id",
@@ -24656,8 +25152,8 @@
24656
25152
  },
24657
25153
  {
24658
25154
  "name": "getDcimSites",
24659
- "summary": "Call to super to allow for caching",
24660
- "description": "Call to super to allow for caching",
25155
+ "summary": "get DCIM Sites",
25156
+ "description": "get DCIM Sites",
24661
25157
  "input": [
24662
25158
  {
24663
25159
  "name": "id",
@@ -25814,8 +26310,8 @@
25814
26310
  },
25815
26311
  {
25816
26312
  "name": "getDcimSitesId",
25817
- "summary": "Call to super to allow for caching",
25818
- "description": "Call to super to allow for caching",
26313
+ "summary": "get DCIM Sites by id",
26314
+ "description": "get DCIM Sites by id",
25819
26315
  "input": [
25820
26316
  {
25821
26317
  "name": "id",
@@ -26004,8 +26500,8 @@
26004
26500
  },
26005
26501
  {
26006
26502
  "name": "getDcimVirtualChassis",
26007
- "summary": "Call to super to allow for caching",
26008
- "description": "Call to super to allow for caching",
26503
+ "summary": "get DCIM Virtual Chassis",
26504
+ "description": "get DCIM Virtual Chassis",
26009
26505
  "input": [
26010
26506
  {
26011
26507
  "name": "id",
@@ -26402,8 +26898,8 @@
26402
26898
  },
26403
26899
  {
26404
26900
  "name": "getDcimVirtualChassisId",
26405
- "summary": "Call to super to allow for caching",
26406
- "description": "Call to super to allow for caching",
26901
+ "summary": "get DCIM Virtual Chassis by id",
26902
+ "description": "get DCIM Virtual Chassis by id",
26407
26903
  "input": [
26408
26904
  {
26409
26905
  "name": "id",
@@ -26615,8 +27111,8 @@
26615
27111
  },
26616
27112
  {
26617
27113
  "name": "getExtrasConfigContexts",
26618
- "summary": "Call to super to allow for caching",
26619
- "description": "Call to super to allow for caching",
27114
+ "summary": "get Extra Config Contexts",
27115
+ "description": "get Extra Config Contexts",
26620
27116
  "input": [
26621
27117
  {
26622
27118
  "name": "id",
@@ -27203,8 +27699,8 @@
27203
27699
  },
27204
27700
  {
27205
27701
  "name": "getExtrasConfigContextsId",
27206
- "summary": "Call to super to allow for caching",
27207
- "description": "Call to super to allow for caching",
27702
+ "summary": "get Extra Config Contexts by id",
27703
+ "description": "get Extra Config Contexts by id",
27208
27704
  "input": [
27209
27705
  {
27210
27706
  "name": "id",
@@ -27359,8 +27855,8 @@
27359
27855
  },
27360
27856
  {
27361
27857
  "name": "getExtrasExportTemplates",
27362
- "summary": "Call to super to allow for caching",
27363
- "description": "Call to super to allow for caching",
27858
+ "summary": "get Extra Export Templates",
27859
+ "description": "get Extra Export Templates",
27364
27860
  "input": [
27365
27861
  {
27366
27862
  "name": "id",
@@ -27647,8 +28143,8 @@
27647
28143
  },
27648
28144
  {
27649
28145
  "name": "getExtrasExportTemplatesId",
27650
- "summary": "Call to super to allow for caching",
27651
- "description": "Call to super to allow for caching",
28146
+ "summary": "get Extra Export Templates by id",
28147
+ "description": "get Extra Export Templates by id",
27652
28148
  "input": [
27653
28149
  {
27654
28150
  "name": "id",
@@ -27803,8 +28299,8 @@
27803
28299
  },
27804
28300
  {
27805
28301
  "name": "getExtrasGraphs",
27806
- "summary": "Call to super to allow for caching",
27807
- "description": "Call to super to allow for caching",
28302
+ "summary": "get Extra Graphs",
28303
+ "description": "get Extra Graphs",
27808
28304
  "input": [
27809
28305
  {
27810
28306
  "name": "id",
@@ -28091,8 +28587,8 @@
28091
28587
  },
28092
28588
  {
28093
28589
  "name": "getExtrasGraphsId",
28094
- "summary": "Call to super to allow for caching",
28095
- "description": "Call to super to allow for caching",
28590
+ "summary": "get Extra Graphs by id",
28591
+ "description": "get Extra Graphs by id",
28096
28592
  "input": [
28097
28593
  {
28098
28594
  "name": "id",
@@ -28247,8 +28743,8 @@
28247
28743
  },
28248
28744
  {
28249
28745
  "name": "getExtrasImageAttachments",
28250
- "summary": "Call to super to allow for caching",
28251
- "description": "Call to super to allow for caching",
28746
+ "summary": "get Extra Image Attachments",
28747
+ "description": "get Extra Image Attachments",
28252
28748
  "input": [
28253
28749
  {
28254
28750
  "name": "limit",
@@ -28335,8 +28831,8 @@
28335
28831
  },
28336
28832
  {
28337
28833
  "name": "getExtrasImageAttachmentsId",
28338
- "summary": "Call to super to allow for caching",
28339
- "description": "Call to super to allow for caching",
28834
+ "summary": "get Extra Image Attachments by id",
28835
+ "description": "get Extra Image Attachments by id",
28340
28836
  "input": [
28341
28837
  {
28342
28838
  "name": "id",
@@ -29137,8 +29633,8 @@
29137
29633
  },
29138
29634
  {
29139
29635
  "name": "getExtrasTags",
29140
- "summary": "Call to super to allow for caching",
29141
- "description": "Call to super to allow for caching",
29636
+ "summary": "get Extra Tags",
29637
+ "description": "get Extra Tags",
29142
29638
  "input": [
29143
29639
  {
29144
29640
  "name": "id",
@@ -29595,8 +30091,8 @@
29595
30091
  },
29596
30092
  {
29597
30093
  "name": "getExtrasTagsId",
29598
- "summary": "Call to super to allow for caching",
29599
- "description": "Call to super to allow for caching",
30094
+ "summary": "get Extra Tags by id",
30095
+ "description": "get Extra Tags by id",
29600
30096
  "input": [
29601
30097
  {
29602
30098
  "name": "id",
@@ -29751,8 +30247,8 @@
29751
30247
  },
29752
30248
  {
29753
30249
  "name": "getIpamAggregates",
29754
- "summary": "Call to super to allow for caching",
29755
- "description": "Call to super to allow for caching",
30250
+ "summary": "get IPAM Aggregates",
30251
+ "description": "get IPAM Aggregates",
29756
30252
  "input": [
29757
30253
  {
29758
30254
  "name": "id",
@@ -30109,8 +30605,8 @@
30109
30605
  },
30110
30606
  {
30111
30607
  "name": "getIpamAggregatesId",
30112
- "summary": "Call to super to allow for caching",
30113
- "description": "Call to super to allow for caching",
30608
+ "summary": "get IPAM Aggregates by id",
30609
+ "description": "get IPAM Aggregates by id",
30114
30610
  "input": [
30115
30611
  {
30116
30612
  "name": "id",
@@ -30265,8 +30761,8 @@
30265
30761
  },
30266
30762
  {
30267
30763
  "name": "getIpamIpAddresses",
30268
- "summary": "Call to super to allow for caching",
30269
- "description": "Call to super to allow for caching",
30764
+ "summary": "get IPAM IP Addresses",
30765
+ "description": "get IPAM IP Addresses",
30270
30766
  "input": [
30271
30767
  {
30272
30768
  "name": "id",
@@ -30913,8 +31409,8 @@
30913
31409
  },
30914
31410
  {
30915
31411
  "name": "getIpamIpAddressesId",
30916
- "summary": "Call to super to allow for caching",
30917
- "description": "Call to super to allow for caching",
31412
+ "summary": "get IPAM IP Addresses by id",
31413
+ "description": "get IPAM IP Addresses by id",
30918
31414
  "input": [
30919
31415
  {
30920
31416
  "name": "id",
@@ -31069,8 +31565,8 @@
31069
31565
  },
31070
31566
  {
31071
31567
  "name": "getIpamPrefixes",
31072
- "summary": "Call to super to allow for caching",
31073
- "description": "Call to super to allow for caching",
31568
+ "summary": "get IPAM Prefixes",
31569
+ "description": "get IPAM Prefixes",
31074
31570
  "input": [
31075
31571
  {
31076
31572
  "name": "id",
@@ -31667,8 +32163,8 @@
31667
32163
  },
31668
32164
  {
31669
32165
  "name": "getIpamPrefixesId",
31670
- "summary": "Call to super to allow for caching",
31671
- "description": "Call to super to allow for caching",
32166
+ "summary": "get IPAM Prefixes by id",
32167
+ "description": "get IPAM Prefixes by id",
31672
32168
  "input": [
31673
32169
  {
31674
32170
  "name": "id",
@@ -31979,8 +32475,8 @@
31979
32475
  },
31980
32476
  {
31981
32477
  "name": "getIpamRirs",
31982
- "summary": "Call to super to allow for caching",
31983
- "description": "Call to super to allow for caching",
32478
+ "summary": "get IPAM RIRS",
32479
+ "description": "get IPAM RIRS",
31984
32480
  "input": [
31985
32481
  {
31986
32482
  "name": "id",
@@ -32447,8 +32943,8 @@
32447
32943
  },
32448
32944
  {
32449
32945
  "name": "getIpamRirsId",
32450
- "summary": "Call to super to allow for caching",
32451
- "description": "Call to super to allow for caching",
32946
+ "summary": "get IPAM RIRS by id",
32947
+ "description": "get IPAM RIRS by id",
32452
32948
  "input": [
32453
32949
  {
32454
32950
  "name": "id",
@@ -32603,8 +33099,8 @@
32603
33099
  },
32604
33100
  {
32605
33101
  "name": "getIpamRoles",
32606
- "summary": "Call to super to allow for caching",
32607
- "description": "Call to super to allow for caching",
33102
+ "summary": "get IPAM Roles",
33103
+ "description": "get IPAM Roles",
32608
33104
  "input": [
32609
33105
  {
32610
33106
  "name": "id",
@@ -32961,8 +33457,8 @@
32961
33457
  },
32962
33458
  {
32963
33459
  "name": "getIpamRolesId",
32964
- "summary": "Call to super to allow for caching",
32965
- "description": "Call to super to allow for caching",
33460
+ "summary": "get IPAM Roles by id",
33461
+ "description": "get IPAM Roles by id",
32966
33462
  "input": [
32967
33463
  {
32968
33464
  "name": "id",
@@ -33117,8 +33613,8 @@
33117
33613
  },
33118
33614
  {
33119
33615
  "name": "getIpamServices",
33120
- "summary": "Call to super to allow for caching",
33121
- "description": "Call to super to allow for caching",
33616
+ "summary": "get IPAM Services",
33617
+ "description": "get IPAM Services",
33122
33618
  "input": [
33123
33619
  {
33124
33620
  "name": "id",
@@ -33615,8 +34111,8 @@
33615
34111
  },
33616
34112
  {
33617
34113
  "name": "getIpamServicesId",
33618
- "summary": "Call to super to allow for caching",
33619
- "description": "Call to super to allow for caching",
34114
+ "summary": "get IPAM Services by id",
34115
+ "description": "get IPAM Services by id",
33620
34116
  "input": [
33621
34117
  {
33622
34118
  "name": "id",
@@ -33771,8 +34267,8 @@
33771
34267
  },
33772
34268
  {
33773
34269
  "name": "getIpamVlanGroups",
33774
- "summary": "Call to super to allow for caching",
33775
- "description": "Call to super to allow for caching",
34270
+ "summary": "get IPAM Vlan Groups",
34271
+ "description": "get IPAM Vlan Groups",
33776
34272
  "input": [
33777
34273
  {
33778
34274
  "name": "id",
@@ -34309,8 +34805,8 @@
34309
34805
  },
34310
34806
  {
34311
34807
  "name": "getIpamVlanGroupsId",
34312
- "summary": "Call to super to allow for caching",
34313
- "description": "Call to super to allow for caching",
34808
+ "summary": "get IPAM Vlan Groups by id",
34809
+ "description": "get IPAM Vlan Groups by id",
34314
34810
  "input": [
34315
34811
  {
34316
34812
  "name": "id",
@@ -34465,8 +34961,8 @@
34465
34961
  },
34466
34962
  {
34467
34963
  "name": "getIpamVlans",
34468
- "summary": "Call to super to allow for caching",
34469
- "description": "Call to super to allow for caching",
34964
+ "summary": "get IPAM Vlans",
34965
+ "description": "get IPAM Vlans",
34470
34966
  "input": [
34471
34967
  {
34472
34968
  "name": "id",
@@ -35123,8 +35619,8 @@
35123
35619
  },
35124
35620
  {
35125
35621
  "name": "getIpamVlansId",
35126
- "summary": "Call to super to allow for caching",
35127
- "description": "Call to super to allow for caching",
35622
+ "summary": "get IPAM Vlans by id",
35623
+ "description": "get IPAM Vlans by id",
35128
35624
  "input": [
35129
35625
  {
35130
35626
  "name": "id",
@@ -35279,8 +35775,8 @@
35279
35775
  },
35280
35776
  {
35281
35777
  "name": "getIpamVrfs",
35282
- "summary": "Call to super to allow for caching",
35283
- "description": "Call to super to allow for caching",
35778
+ "summary": "get IPAM VRFS",
35779
+ "description": "get IPAM VRFS",
35284
35780
  "input": [
35285
35781
  {
35286
35782
  "name": "id",
@@ -35807,8 +36303,8 @@
35807
36303
  },
35808
36304
  {
35809
36305
  "name": "getIpamVrfsId",
35810
- "summary": "Call to super to allow for caching",
35811
- "description": "Call to super to allow for caching",
36306
+ "summary": "get IPAM VRFS by id",
36307
+ "description": "get IPAM VRFS by id",
35812
36308
  "input": [
35813
36309
  {
35814
36310
  "name": "id",
@@ -36009,8 +36505,8 @@
36009
36505
  },
36010
36506
  {
36011
36507
  "name": "getSecretsSecretRoles",
36012
- "summary": "Call to super to allow for caching",
36013
- "description": "Call to super to allow for caching",
36508
+ "summary": "get Secret Roles",
36509
+ "description": "get Secret Roles",
36014
36510
  "input": [
36015
36511
  {
36016
36512
  "name": "id",
@@ -36367,8 +36863,8 @@
36367
36863
  },
36368
36864
  {
36369
36865
  "name": "getSecretsSecretRolesId",
36370
- "summary": "Call to super to allow for caching",
36371
- "description": "Call to super to allow for caching",
36866
+ "summary": "get Secret Roles by id",
36867
+ "description": "get Secret Roles by id",
36372
36868
  "input": [
36373
36869
  {
36374
36870
  "name": "id",
@@ -37097,8 +37593,8 @@
37097
37593
  },
37098
37594
  {
37099
37595
  "name": "getTenancyTenantGroups",
37100
- "summary": "Call to super to allow for caching",
37101
- "description": "Call to super to allow for caching",
37596
+ "summary": "get Tenancy Groups",
37597
+ "description": "get Tenancy Groups",
37102
37598
  "input": [
37103
37599
  {
37104
37600
  "name": "id",
@@ -37595,8 +38091,8 @@
37595
38091
  },
37596
38092
  {
37597
38093
  "name": "getTenancyTenantGroupsId",
37598
- "summary": "Call to super to allow for caching",
37599
- "description": "Call to super to allow for caching",
38094
+ "summary": "get Tenancy Groups by id",
38095
+ "description": "get Tenancy Groups by id",
37600
38096
  "input": [
37601
38097
  {
37602
38098
  "name": "id",
@@ -37751,8 +38247,8 @@
37751
38247
  },
37752
38248
  {
37753
38249
  "name": "getTenancyTenants",
37754
- "summary": "Call to super to allow for caching",
37755
- "description": "Call to super to allow for caching",
38250
+ "summary": "get Tenancy",
38251
+ "description": "get Tenancy",
37756
38252
  "input": [
37757
38253
  {
37758
38254
  "name": "id",
@@ -38229,8 +38725,8 @@
38229
38725
  },
38230
38726
  {
38231
38727
  "name": "getTenancyTenantsId",
38232
- "summary": "Call to super to allow for caching",
38233
- "description": "Call to super to allow for caching",
38728
+ "summary": "get Tenancy by id",
38729
+ "description": "get Tenancy by id",
38234
38730
  "input": [
38235
38731
  {
38236
38732
  "name": "id",
@@ -38385,8 +38881,8 @@
38385
38881
  },
38386
38882
  {
38387
38883
  "name": "getVirtualizationClusterGroups",
38388
- "summary": "Call to super to allow for caching",
38389
- "description": "Call to super to allow for caching",
38884
+ "summary": "get Virtualization Cluster Groups",
38885
+ "description": "get Virtualization Cluster Groups",
38390
38886
  "input": [
38391
38887
  {
38392
38888
  "name": "id",
@@ -38843,8 +39339,8 @@
38843
39339
  },
38844
39340
  {
38845
39341
  "name": "getVirtualizationClusterGroupsId",
38846
- "summary": "Call to super to allow for caching",
38847
- "description": "Call to super to allow for caching",
39342
+ "summary": "get Virtualization Cluster Groups by id",
39343
+ "description": "get Virtualization Cluster Groups by id",
38848
39344
  "input": [
38849
39345
  {
38850
39346
  "name": "id",
@@ -38999,8 +39495,8 @@
38999
39495
  },
39000
39496
  {
39001
39497
  "name": "getVirtualizationClusterTypes",
39002
- "summary": "Call to super to allow for caching",
39003
- "description": "Call to super to allow for caching",
39498
+ "summary": "get Virtualization Cluster Types",
39499
+ "description": "get Virtualization Cluster Types",
39004
39500
  "input": [
39005
39501
  {
39006
39502
  "name": "id",
@@ -39457,8 +39953,8 @@
39457
39953
  },
39458
39954
  {
39459
39955
  "name": "getVirtualizationClusterTypesId",
39460
- "summary": "Call to super to allow for caching",
39461
- "description": "Call to super to allow for caching",
39956
+ "summary": "get Virtualization Cluster Types by id",
39957
+ "description": "get Virtualization Cluster Types by id",
39462
39958
  "input": [
39463
39959
  {
39464
39960
  "name": "id",
@@ -39613,8 +40109,8 @@
39613
40109
  },
39614
40110
  {
39615
40111
  "name": "getVirtualizationClusters",
39616
- "summary": "Call to super to allow for caching",
39617
- "description": "Call to super to allow for caching",
40112
+ "summary": "get Virtualization Clusters",
40113
+ "description": "get Virtualization Clusters",
39618
40114
  "input": [
39619
40115
  {
39620
40116
  "name": "id",
@@ -40191,8 +40687,8 @@
40191
40687
  },
40192
40688
  {
40193
40689
  "name": "getVirtualizationClustersId",
40194
- "summary": "Call to super to allow for caching",
40195
- "description": "Call to super to allow for caching",
40690
+ "summary": "get Virtualization Clusters by id",
40691
+ "description": "get Virtualization Clusters by id",
40196
40692
  "input": [
40197
40693
  {
40198
40694
  "name": "id",
@@ -40347,8 +40843,8 @@
40347
40843
  },
40348
40844
  {
40349
40845
  "name": "getVirtualizationInterfaces",
40350
- "summary": "Call to super to allow for caching",
40351
- "description": "Call to super to allow for caching",
40846
+ "summary": "get Virtualization Interfaces",
40847
+ "description": "get Virtualization Interfaces",
40352
40848
  "input": [
40353
40849
  {
40354
40850
  "name": "id",
@@ -40815,8 +41311,8 @@
40815
41311
  },
40816
41312
  {
40817
41313
  "name": "getVirtualizationInterfacesId",
40818
- "summary": "Call to super to allow for caching",
40819
- "description": "Call to super to allow for caching",
41314
+ "summary": "get Virtualization Interfaces by id",
41315
+ "description": "get Virtualization Interfaces by id",
40820
41316
  "input": [
40821
41317
  {
40822
41318
  "name": "id",
@@ -40971,8 +41467,8 @@
40971
41467
  },
40972
41468
  {
40973
41469
  "name": "getVirtualizationVirtualMachines",
40974
- "summary": "Call to super to allow for caching",
40975
- "description": "Call to super to allow for caching",
41470
+ "summary": "get Virtualization Virtual Machines",
41471
+ "description": "get Virtualization Virtual Machines",
40976
41472
  "input": [
40977
41473
  {
40978
41474
  "name": "id",
@@ -41979,8 +42475,8 @@
41979
42475
  },
41980
42476
  {
41981
42477
  "name": "getVirtualizationVirtualMachinesId",
41982
- "summary": "Call to super to allow for caching",
41983
- "description": "Call to super to allow for caching",
42478
+ "summary": "get Virtualization Virtual Machines by id",
42479
+ "description": "get Virtualization Virtual Machines by id",
41984
42480
  "input": [
41985
42481
  {
41986
42482
  "name": "id",
@@ -42132,6 +42628,40 @@
42132
42628
  "path": "/deleteVirtualizationVirtualMachinesId"
42133
42629
  },
42134
42630
  "task": true
42631
+ },
42632
+ {
42633
+ "name": "getGraphql",
42634
+ "summary": "A lightweight read-only endpoint for conveying querying using graphql.",
42635
+ "description": "A lightweight read-only endpoint for conveying querying using graphql.",
42636
+ "input": [
42637
+ {
42638
+ "name": "body",
42639
+ "type": "object",
42640
+ "info": "JSON object containing the graphql query",
42641
+ "required": true,
42642
+ "schema": {
42643
+ "title": "body",
42644
+ "type": "object"
42645
+ }
42646
+ }
42647
+ ],
42648
+ "output": {
42649
+ "name": "result",
42650
+ "type": "object",
42651
+ "description": "A JSON Object containing status, code and the result",
42652
+ "schema": {
42653
+ "title": "result",
42654
+ "type": "object"
42655
+ }
42656
+ },
42657
+ "roles": [
42658
+ "admin"
42659
+ ],
42660
+ "route": {
42661
+ "verb": "GET",
42662
+ "path": "/getGraphql"
42663
+ },
42664
+ "task": true
42135
42665
  }
42136
42666
  ],
42137
42667
  "views": []