@itentialopensource/adapter-datadog 0.5.4 → 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.
Files changed (56) hide show
  1. package/AUTH.md +39 -0
  2. package/BROKER.md +199 -0
  3. package/CALLS.md +1947 -0
  4. package/CHANGELOG.md +48 -22
  5. package/CODE_OF_CONDUCT.md +12 -17
  6. package/CONTRIBUTING.md +3 -148
  7. package/ENHANCE.md +69 -0
  8. package/PROPERTIES.md +641 -0
  9. package/README.md +239 -507
  10. package/SUMMARY.md +9 -0
  11. package/SYSTEMINFO.md +11 -0
  12. package/TROUBLESHOOT.md +47 -0
  13. package/adapter.js +380 -261
  14. package/adapterBase.js +843 -397
  15. package/changelogs/CHANGELOG.md +86 -0
  16. package/entities/.generic/action.json +110 -5
  17. package/entities/.generic/schema.json +6 -1
  18. package/error.json +12 -0
  19. package/metadata.json +49 -0
  20. package/package.json +30 -23
  21. package/pronghorn.json +1277 -674
  22. package/propertiesDecorators.json +14 -0
  23. package/propertiesSchema.json +842 -6
  24. package/refs?service=git-upload-pack +0 -0
  25. package/report/adapterInfo.json +10 -0
  26. package/report/updateReport1653677151204.json +120 -0
  27. package/report/updateReport1691508986112.json +120 -0
  28. package/report/updateReport1692202301848.json +120 -0
  29. package/report/updateReport1692203389397.json +120 -0
  30. package/report/updateReport1694469996136.json +120 -0
  31. package/report/updateReport1698423169409.json +120 -0
  32. package/sampleProperties.json +157 -4
  33. package/test/integration/adapterTestBasicGet.js +4 -6
  34. package/test/integration/adapterTestConnectivity.js +91 -42
  35. package/test/integration/adapterTestIntegration.js +158 -104
  36. package/test/unit/adapterBaseTestUnit.js +393 -310
  37. package/test/unit/adapterTestUnit.js +918 -164
  38. package/utils/adapterInfo.js +206 -0
  39. package/utils/addAuth.js +94 -0
  40. package/utils/artifactize.js +1 -1
  41. package/utils/basicGet.js +1 -14
  42. package/utils/checkMigrate.js +1 -1
  43. package/utils/entitiesToDB.js +179 -0
  44. package/utils/findPath.js +1 -1
  45. package/utils/methodDocumentor.js +273 -0
  46. package/utils/modify.js +14 -16
  47. package/utils/packModificationScript.js +2 -2
  48. package/utils/patches2bundledDeps.js +90 -0
  49. package/utils/pre-commit.sh +5 -0
  50. package/utils/removeHooks.js +20 -0
  51. package/utils/taskMover.js +309 -0
  52. package/utils/tbScript.js +129 -53
  53. package/utils/tbUtils.js +152 -35
  54. package/utils/testRunner.js +17 -17
  55. package/utils/troubleshootingAdapter.js +10 -31
  56. package/workflows/README.md +0 -3
package/pronghorn.json CHANGED
@@ -8,8 +8,8 @@
8
8
  "admin"
9
9
  ],
10
10
  "methods": [
11
- {
12
- "name": "updateAdapterConfiguration",
11
+ {
12
+ "name": "iapUpdateAdapterConfiguration",
13
13
  "summary": "Updates the adapter configuration",
14
14
  "description": "Updates the adapter configuration file with the provided changes",
15
15
  "input": [
@@ -62,6 +62,16 @@
62
62
  "title": "action",
63
63
  "type": "string"
64
64
  }
65
+ },
66
+ {
67
+ "name": "replace",
68
+ "type": "boolean",
69
+ "info": "True to replace entire mock data, false to merge/append",
70
+ "required": false,
71
+ "schema": {
72
+ "title": "replace",
73
+ "type": "boolean"
74
+ }
65
75
  }
66
76
  ],
67
77
  "output": {
@@ -78,12 +88,97 @@
78
88
  ],
79
89
  "route": {
80
90
  "verb": "POST",
81
- "path": "/updateAdapterConfiguration"
91
+ "path": "/iapUpdateAdapterConfiguration"
92
+ },
93
+ "task": true
94
+ },
95
+ {
96
+ "name": "iapSuspendAdapter",
97
+ "summary": "Suspends the adapter",
98
+ "description": "Suspends the adapter",
99
+ "input": [
100
+ {
101
+ "name": "mode",
102
+ "type": "enum",
103
+ "enumerals": [
104
+ "pause",
105
+ "error"
106
+ ],
107
+ "info": "How incoming requests are handled. Defaults to 'pause'",
108
+ "description": "How incoming requests are handled. Defaults to 'pause'",
109
+ "schema": {
110
+ "title": "mode",
111
+ "type": "string"
112
+ },
113
+ "required": false
114
+ }
115
+ ],
116
+ "output": {
117
+ "name": "result",
118
+ "type": "object",
119
+ "description": "A JSON Object containing the adapter suspended status",
120
+ "schema": {
121
+ "title": "result",
122
+ "type": "object"
123
+ }
124
+ },
125
+ "roles": [
126
+ "admin"
127
+ ],
128
+ "route": {
129
+ "verb": "POST",
130
+ "path": "/iapSuspendAdapter"
131
+ },
132
+ "task": true
133
+ },
134
+ {
135
+ "name": "iapUnsuspendAdapter",
136
+ "summary": "Unsuspends the adapter",
137
+ "description": "Unsuspends the adapter",
138
+ "input": [],
139
+ "output": {
140
+ "name": "result",
141
+ "type": "object",
142
+ "description": "A JSON Object containing the adapter suspended status",
143
+ "schema": {
144
+ "title": "result",
145
+ "type": "object"
146
+ }
147
+ },
148
+ "roles": [
149
+ "admin"
150
+ ],
151
+ "route": {
152
+ "verb": "POST",
153
+ "path": "/iapUnsuspendAdapter"
82
154
  },
83
155
  "task": true
84
156
  },
85
157
  {
86
- "name": "findPath",
158
+ "name": "iapGetAdapterQueue",
159
+ "summary": "Return the requests that are waiting in the queue if throttling is enabled",
160
+ "description": "Return the requests that are waiting in the queue if throttling is enabled",
161
+ "input": [],
162
+ "output": {
163
+ "name": "result",
164
+ "type": "object",
165
+ "description": "A JSON Object containing the adapter queue",
166
+ "schema": {
167
+ "title": "result",
168
+ "type": "object"
169
+ }
170
+ },
171
+ "roles": [
172
+ "admin"
173
+ ],
174
+ "route": {
175
+ "verb": "POST",
176
+ "path": "/iapGetAdapterQueue"
177
+ },
178
+ "task": true
179
+ },
180
+ {
181
+ "name": "iapFindAdapterPath",
87
182
  "summary": "Provides the ability to see if a particular API path is supported by the adapter",
88
183
  "description": "Provides the ability to see if a particular API path is supported by the adapter",
89
184
  "input": [
@@ -113,12 +208,12 @@
113
208
  ],
114
209
  "route": {
115
210
  "verb": "POST",
116
- "path": "/findPath"
211
+ "path": "/iapFindAdapterPath"
117
212
  },
118
213
  "task": true
119
214
  },
120
215
  {
121
- "name": "troubleshoot",
216
+ "name": "iapTroubleshootAdapter",
122
217
  "summary": "Runs troubleshoot script for adapter",
123
218
  "description": "Runs troubleshoot script for adapter",
124
219
  "input": [
@@ -136,7 +231,11 @@
136
231
  "name": "persistFlag",
137
232
  "type": "boolean",
138
233
  "info": "Whether the input properties should be saved",
139
- "required": true
234
+ "required": true,
235
+ "schema": {
236
+ "title": "persistFlag",
237
+ "type": "boolean"
238
+ }
140
239
  }
141
240
  ],
142
241
  "output": {
@@ -153,31 +252,35 @@
153
252
  ],
154
253
  "route": {
155
254
  "verb": "POST",
156
- "path": "/troubleshoot"
255
+ "path": "/iapTroubleshootAdapter"
157
256
  },
158
257
  "task": true
159
258
  },
160
259
  {
161
- "name": "runHealthcheck",
260
+ "name": "iapRunAdapterHealthcheck",
162
261
  "summary": "Runs healthcheck script for adapter",
163
262
  "description": "Runs healthcheck script for adapter",
164
263
  "input": [],
165
264
  "output": {
166
265
  "name": "result",
167
266
  "type": "boolean",
168
- "description": "Whether healthcheck passed or failed"
267
+ "description": "Whether healthcheck passed or failed",
268
+ "schema": {
269
+ "title": "result",
270
+ "type": "boolean"
271
+ }
169
272
  },
170
273
  "roles": [
171
274
  "admin"
172
275
  ],
173
276
  "route": {
174
277
  "verb": "POST",
175
- "path": "/runHealthcheck"
278
+ "path": "/iapRunAdapterHealthcheck"
176
279
  },
177
280
  "task": true
178
281
  },
179
282
  {
180
- "name": "runConnectivity",
283
+ "name": "iapRunAdapterConnectivity",
181
284
  "summary": "Runs connectivity check script for adapter",
182
285
  "description": "Runs connectivity check script for adapter",
183
286
  "input": [],
@@ -189,25 +292,462 @@
189
292
  "title": "result",
190
293
  "type": "object"
191
294
  }
192
- },
193
- "roles": [
194
- "admin"
295
+ },
296
+ "roles": [
297
+ "admin"
298
+ ],
299
+ "route": {
300
+ "verb": "POST",
301
+ "path": "/iapRunAdapterConnectivity"
302
+ },
303
+ "task": true
304
+ },
305
+ {
306
+ "name": "iapRunAdapterBasicGet",
307
+ "summary": "Runs basicGet script for adapter",
308
+ "description": "Runs basicGet script for adapter",
309
+ "input": [],
310
+ "output": {
311
+ "name": "result",
312
+ "type": "object",
313
+ "description": "A JSON Object containing the test results",
314
+ "schema": {
315
+ "title": "result",
316
+ "type": "object"
317
+ }
318
+ },
319
+ "roles": [
320
+ "admin"
321
+ ],
322
+ "route": {
323
+ "verb": "POST",
324
+ "path": "/iapRunAdapterBasicGet"
325
+ },
326
+ "task": true
327
+ },
328
+ {
329
+ "name": "iapMoveAdapterEntitiesToDB",
330
+ "summary": "Moves entities from an adapter into the IAP database",
331
+ "description": "Moves entities from an adapter into the IAP database",
332
+ "input": [],
333
+ "output": {
334
+ "name": "res",
335
+ "type": "object",
336
+ "description": "A JSON Object containing status, code and the response from the mongo transaction",
337
+ "schema": {
338
+ "title": "res",
339
+ "type": "object"
340
+ }
341
+ },
342
+ "roles": [
343
+ "admin"
344
+ ],
345
+ "route": {
346
+ "verb": "POST",
347
+ "path": "/iapMoveAdapterEntitiesToDB"
348
+ },
349
+ "task": true
350
+ },
351
+ {
352
+ "name": "iapDeactivateTasks",
353
+ "summary": "Deactivate the inputted tasks",
354
+ "description": "Deactivate the inputted tasks",
355
+ "input": [
356
+ {
357
+ "name": "tasks",
358
+ "type": "array",
359
+ "description": "Tasks to deactivate",
360
+ "schema": {
361
+ "title": "tasks",
362
+ "type": "array"
363
+ }
364
+ }
365
+ ],
366
+ "output": {
367
+ "name": "result",
368
+ "type": "object",
369
+ "description": "A JSON Object containing success status",
370
+ "schema": {
371
+ "title": "result",
372
+ "type": "object"
373
+ }
374
+ },
375
+ "roles": [
376
+ "admin"
377
+ ],
378
+ "route": {
379
+ "verb": "POST",
380
+ "path": "/iapDeactivateTasks"
381
+ },
382
+ "task": true
383
+ },
384
+ {
385
+ "name": "iapActivateTasks",
386
+ "summary": "Activate the inputted tasks",
387
+ "description": "activate the inputted tasks",
388
+ "input": [
389
+ {
390
+ "name": "tasks",
391
+ "type": "array",
392
+ "description": "Tasks to activate",
393
+ "schema": {
394
+ "title": "tasks",
395
+ "type": "array"
396
+ }
397
+ }
398
+ ],
399
+ "output": {
400
+ "name": "result",
401
+ "type": "object",
402
+ "description": "A JSON Object containing success status",
403
+ "schema": {
404
+ "title": "result",
405
+ "type": "object"
406
+ }
407
+ },
408
+ "roles": [
409
+ "admin"
410
+ ],
411
+ "route": {
412
+ "verb": "POST",
413
+ "path": "/iapActivateTasks"
414
+ },
415
+ "task": true
416
+ },
417
+ {
418
+ "name": "iapPopulateEntityCache",
419
+ "summary": "Populate the cache for the given entities",
420
+ "description": "Populate the cache for the given entities",
421
+ "input": [
422
+ {
423
+ "name": "entityTypes",
424
+ "type": "array",
425
+ "info": "the entity type(s) to populate",
426
+ "required": true,
427
+ "schema": {
428
+ "title": "entityTypes",
429
+ "type": "array"
430
+ }
431
+ }
432
+ ],
433
+ "output": {
434
+ "name": "result",
435
+ "type": "object",
436
+ "description": "A JSON Object containing status, code and the result",
437
+ "schema": {
438
+ "title": "result",
439
+ "type": "object"
440
+ }
441
+ },
442
+ "roles": [
443
+ "admin"
444
+ ],
445
+ "route": {
446
+ "verb": "POST",
447
+ "path": "/iapPopulateEntityCache"
448
+ },
449
+ "task": true
450
+ },
451
+ {
452
+ "name": "iapRetrieveEntitiesCache",
453
+ "summary": "Retrieves data from cache for specified entity type",
454
+ "description": "Retrieves data from cache for specified entity type",
455
+ "input": [
456
+ {
457
+ "name": "entityType",
458
+ "type": "string",
459
+ "info": "entity of which to retrieve",
460
+ "required": true,
461
+ "schema": {
462
+ "title": "entityType",
463
+ "type": "string"
464
+ }
465
+ },
466
+ {
467
+ "name": "options",
468
+ "type": "object",
469
+ "info": "settings of which data to return and how to return it",
470
+ "required": false,
471
+ "schema": {
472
+ "title": "options",
473
+ "type": "object"
474
+ }
475
+ }
476
+ ],
477
+ "output": {
478
+ "name": "result",
479
+ "type": "object",
480
+ "description": "A JSON Object containing status, code and the result",
481
+ "schema": {
482
+ "title": "result",
483
+ "type": "object"
484
+ }
485
+ },
486
+ "roles": [
487
+ "admin"
488
+ ],
489
+ "route": {
490
+ "verb": "POST",
491
+ "path": "/iapRetrieveEntitiesCache"
492
+ },
493
+ "task": true
494
+ },
495
+ {
496
+ "name": "getDevice",
497
+ "summary": "Get the Appliance",
498
+ "description": "Get the Appliance",
499
+ "input": [
500
+ {
501
+ "name": "deviceName",
502
+ "type": "string",
503
+ "info": "An Appliance Device Name",
504
+ "required": true,
505
+ "schema": {
506
+ "title": "deviceName",
507
+ "type": "string"
508
+ }
509
+ }
510
+ ],
511
+ "output": {
512
+ "name": "result",
513
+ "type": "object",
514
+ "description": "A JSON Object containing status, code and the result",
515
+ "schema": {
516
+ "title": "result",
517
+ "type": "object"
518
+ }
519
+ },
520
+ "roles": [
521
+ "admin"
522
+ ],
523
+ "route": {
524
+ "verb": "POST",
525
+ "path": "/getDevice"
526
+ },
527
+ "task": false
528
+ },
529
+ {
530
+ "name": "getDevicesFiltered",
531
+ "summary": "Get Appliances that match the filter",
532
+ "description": "Get Appliances that match the filter",
533
+ "input": [
534
+ {
535
+ "name": "options",
536
+ "type": "object",
537
+ "info": "options - e.g. { 'start': 1, 'limit': 20, 'filter': { 'name': 'abc123' } }",
538
+ "required": true,
539
+ "schema": {
540
+ "title": "options",
541
+ "type": "object"
542
+ }
543
+ }
544
+ ],
545
+ "output": {
546
+ "name": "result",
547
+ "type": "array",
548
+ "description": "A JSON Object containing status, code and the result",
549
+ "schema": {
550
+ "title": "result",
551
+ "type": "array"
552
+ }
553
+ },
554
+ "roles": [
555
+ "admin"
556
+ ],
557
+ "route": {
558
+ "verb": "POST",
559
+ "path": "/getDevicesFiltered"
560
+ },
561
+ "task": false
562
+ },
563
+ {
564
+ "name": "isAlive",
565
+ "summary": "Checks the status for the provided Appliance",
566
+ "description": "Checks the status for the provided Appliance",
567
+ "input": [
568
+ {
569
+ "name": "deviceName",
570
+ "type": "string",
571
+ "info": "An Appliance Device Name",
572
+ "required": true,
573
+ "schema": {
574
+ "title": "deviceName",
575
+ "type": "string"
576
+ }
577
+ }
578
+ ],
579
+ "output": {
580
+ "name": "result",
581
+ "type": "boolean",
582
+ "description": "A JSON Object containing status, code and the result",
583
+ "schema": {
584
+ "title": "result",
585
+ "type": "boolean"
586
+ }
587
+ },
588
+ "roles": [
589
+ "admin"
590
+ ],
591
+ "route": {
592
+ "verb": "POST",
593
+ "path": "/isAlive"
594
+ },
595
+ "task": false
596
+ },
597
+ {
598
+ "name": "getConfig",
599
+ "summary": "Gets a config for the provided Appliance",
600
+ "description": "Gets a config for the provided Appliance",
601
+ "input": [
602
+ {
603
+ "name": "deviceName",
604
+ "type": "string",
605
+ "info": "An Appliance Device Name",
606
+ "required": true,
607
+ "schema": {
608
+ "title": "deviceName",
609
+ "type": "string"
610
+ }
611
+ },
612
+ {
613
+ "name": "format",
614
+ "type": "string",
615
+ "info": "The format to be returned - this is ignored as we always return json",
616
+ "required": false,
617
+ "schema": {
618
+ "title": "format",
619
+ "type": "string"
620
+ }
621
+ }
622
+ ],
623
+ "output": {
624
+ "name": "result",
625
+ "type": "object",
626
+ "description": "A JSON Object containing status, code and the result",
627
+ "schema": {
628
+ "title": "result",
629
+ "type": "object"
630
+ }
631
+ },
632
+ "roles": [
633
+ "admin"
634
+ ],
635
+ "route": {
636
+ "verb": "POST",
637
+ "path": "/getConfig"
638
+ },
639
+ "task": false
640
+ },
641
+ {
642
+ "name": "iapGetDeviceCount",
643
+ "summary": "Gets a device count from the system",
644
+ "description": "Gets a device count from the system",
645
+ "input": [],
646
+ "output": {
647
+ "name": "result",
648
+ "type": "object",
649
+ "description": "A JSON Object containing status, code and the result",
650
+ "schema": {
651
+ "title": "result",
652
+ "type": "object"
653
+ }
654
+ },
655
+ "roles": [
656
+ "admin"
657
+ ],
658
+ "route": {
659
+ "verb": "POST",
660
+ "path": "/iapGetDeviceCount"
661
+ },
662
+ "task": false
663
+ },
664
+ {
665
+ "name": "iapExpandedGenericAdapterRequest",
666
+ "summary": "Makes the requested generic call with additional options",
667
+ "description": "Makes the requested generic call with additional options via metadata",
668
+ "input": [
669
+ {
670
+ "name": "metadata",
671
+ "type": "object",
672
+ "info": "metadata for the call (optional)",
673
+ "description": "metadata for the call - allows for many enhancements (optional)",
674
+ "schema": {
675
+ "title": "metadata",
676
+ "type": "object"
677
+ },
678
+ "required": false
679
+ },
680
+ {
681
+ "name": "uriPath",
682
+ "type": "string",
683
+ "info": "the path of the api call - do not include the host, port, base path or version",
684
+ "description": "the path of the api call",
685
+ "schema": {
686
+ "title": "uriPath",
687
+ "type": "string"
688
+ },
689
+ "required": false
690
+ },
691
+ {
692
+ "name": "restMethod",
693
+ "type": "string",
694
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
695
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
696
+ "schema": {
697
+ "title": "restMethod",
698
+ "type": "string"
699
+ },
700
+ "required": false
701
+ },
702
+ {
703
+ "name": "pathVars",
704
+ "type": "object",
705
+ "info": "the parameters to be put within the url path (optional)",
706
+ "description": "the parameters to be put within the url path (optional)",
707
+ "schema": {
708
+ "title": "pathVars",
709
+ "type": "object"
710
+ },
711
+ "required": false
712
+ },
713
+ {
714
+ "name": "queryData",
715
+ "type": "object",
716
+ "info": "the query parameters to be put on the url (optional)",
717
+ "description": "the query parameters to be put on the url (optional)",
718
+ "schema": {
719
+ "title": "queryData",
720
+ "type": "object"
721
+ },
722
+ "required": false
723
+ },
724
+ {
725
+ "name": "requestBody",
726
+ "type": "object",
727
+ "info": "the payload to be sent with the request (optional)",
728
+ "description": "the payload to be sent with the request (optional)",
729
+ "schema": {
730
+ "title": "requestBody",
731
+ "type": "object"
732
+ },
733
+ "required": false
734
+ },
735
+ {
736
+ "name": "addlHeaders",
737
+ "type": "object",
738
+ "info": "additional headers to be put on the call (optional)",
739
+ "description": "additional headers to be put on the call (optional)",
740
+ "schema": {
741
+ "title": "addlHeaders",
742
+ "type": "object"
743
+ },
744
+ "required": false
745
+ }
195
746
  ],
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
747
  "output": {
208
748
  "name": "result",
209
749
  "type": "object",
210
- "description": "A JSON Object containing the test results",
750
+ "description": "A JSON Object containing status, code and the result",
211
751
  "schema": {
212
752
  "title": "result",
213
753
  "type": "object"
@@ -218,81 +758,75 @@
218
758
  ],
219
759
  "route": {
220
760
  "verb": "POST",
221
- "path": "/runBasicGet"
761
+ "path": "/iapExpandedGenericAdapterRequest"
222
762
  },
223
763
  "task": true
224
764
  },
225
765
  {
226
- "name": "suspend",
227
- "summary": "Suspends the adapter",
228
- "description": "Suspends the adapter",
766
+ "name": "genericAdapterRequest",
767
+ "summary": "Makes the requested generic call",
768
+ "description": "Makes the requested generic call",
229
769
  "input": [
230
770
  {
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'",
771
+ "name": "uriPath",
772
+ "type": "string",
773
+ "info": "the path of the api call - do not include the host, port, base path or version",
774
+ "description": "the path of the api call",
239
775
  "schema": {
240
- "title": "mode",
776
+ "title": "uriPath",
777
+ "type": "string"
778
+ },
779
+ "required": true
780
+ },
781
+ {
782
+ "name": "restMethod",
783
+ "type": "string",
784
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
785
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
786
+ "schema": {
787
+ "title": "restMethod",
241
788
  "type": "string"
242
789
  },
790
+ "required": true
791
+ },
792
+ {
793
+ "name": "queryData",
794
+ "type": "object",
795
+ "info": "the query parameters to be put on the url (optional)",
796
+ "description": "the query parameters to be put on the url (optional)",
797
+ "schema": {
798
+ "title": "queryData",
799
+ "type": "object"
800
+ },
801
+ "required": false
802
+ },
803
+ {
804
+ "name": "requestBody",
805
+ "type": "object",
806
+ "info": "the payload to be sent with the request (optional)",
807
+ "description": "the payload to be sent with the request (optional)",
808
+ "schema": {
809
+ "title": "requestBody",
810
+ "type": "object"
811
+ },
812
+ "required": false
813
+ },
814
+ {
815
+ "name": "addlHeaders",
816
+ "type": "object",
817
+ "info": "additional headers to be put on the call (optional)",
818
+ "description": "additional headers to be put on the call (optional)",
819
+ "schema": {
820
+ "title": "addlHeaders",
821
+ "type": "object"
822
+ },
243
823
  "required": false
244
824
  }
245
825
  ],
246
826
  "output": {
247
827
  "name": "result",
248
828
  "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",
829
+ "description": "A JSON Object containing status, code and the result",
296
830
  "schema": {
297
831
  "title": "result",
298
832
  "type": "object"
@@ -303,12 +837,12 @@
303
837
  ],
304
838
  "route": {
305
839
  "verb": "POST",
306
- "path": "/getQueue"
840
+ "path": "/genericAdapterRequest"
307
841
  },
308
842
  "task": true
309
843
  },
310
844
  {
311
- "name": "genericAdapterRequest",
845
+ "name": "genericAdapterRequestNoBasePath",
312
846
  "summary": "Makes the requested generic call",
313
847
  "description": "Makes the requested generic call",
314
848
  "input": [
@@ -382,7 +916,76 @@
382
916
  ],
383
917
  "route": {
384
918
  "verb": "POST",
385
- "path": "/genericAdapterRequest"
919
+ "path": "/genericAdapterRequestNoBasePath"
920
+ },
921
+ "task": true
922
+ },
923
+ {
924
+ "name": "iapRunAdapterLint",
925
+ "summary": "Run the adapter lint script to return the results",
926
+ "description": "Run the adapter lint script to return the results",
927
+ "input": [],
928
+ "output": {
929
+ "name": "result",
930
+ "type": "string",
931
+ "description": "A string containing the run results",
932
+ "schema": {
933
+ "title": "result",
934
+ "type": "string"
935
+ }
936
+ },
937
+ "roles": [
938
+ "admin"
939
+ ],
940
+ "route": {
941
+ "verb": "GET",
942
+ "path": "/iapRunAdapterLint"
943
+ },
944
+ "task": true
945
+ },
946
+ {
947
+ "name": "iapRunAdapterTests",
948
+ "summary": "Run the adapter test scripts (baseunit and unit) to return the results",
949
+ "description": "Run the adapter test scripts (baseunit and unit) to return the results",
950
+ "input": [],
951
+ "output": {
952
+ "name": "result",
953
+ "type": "object",
954
+ "description": "A JSON Object containing status, code and the result",
955
+ "schema": {
956
+ "title": "result",
957
+ "type": "object"
958
+ }
959
+ },
960
+ "roles": [
961
+ "admin"
962
+ ],
963
+ "route": {
964
+ "verb": "GET",
965
+ "path": "/iapRunAdapterTests"
966
+ },
967
+ "task": true
968
+ },
969
+ {
970
+ "name": "iapGetAdapterInventory",
971
+ "summary": "Provide inventory information abbout the adapter",
972
+ "description": "Provide inventory information abbout the adapter",
973
+ "input": [],
974
+ "output": {
975
+ "name": "result",
976
+ "type": "object",
977
+ "description": "A JSON Object containing status, code and the result",
978
+ "schema": {
979
+ "title": "result",
980
+ "type": "object"
981
+ }
982
+ },
983
+ "roles": [
984
+ "admin"
985
+ ],
986
+ "route": {
987
+ "verb": "GET",
988
+ "path": "/iapGetAdapterInventory"
386
989
  },
387
990
  "task": true
388
991
  },
@@ -403,22 +1006,22 @@
403
1006
  },
404
1007
  {
405
1008
  "name": "apiKey",
406
- "type": "query",
1009
+ "type": "string",
407
1010
  "info": "Your Datadog API key",
408
1011
  "required": true,
409
1012
  "schema": {
410
1013
  "title": "apiKey",
411
- "type": "query"
1014
+ "type": "string"
412
1015
  }
413
1016
  },
414
1017
  {
415
1018
  "name": "applicationKey",
416
- "type": "query",
1019
+ "type": "string",
417
1020
  "info": "Your Datadog application key",
418
1021
  "required": true,
419
1022
  "schema": {
420
1023
  "title": "applicationKey",
421
- "type": "query"
1024
+ "type": "string"
422
1025
  }
423
1026
  }
424
1027
  ],
@@ -447,22 +1050,22 @@
447
1050
  "input": [
448
1051
  {
449
1052
  "name": "apiKey",
450
- "type": "query",
1053
+ "type": "string",
451
1054
  "info": "Your Datadog API key",
452
1055
  "required": true,
453
1056
  "schema": {
454
1057
  "title": "apiKey",
455
- "type": "query"
1058
+ "type": "string"
456
1059
  }
457
1060
  },
458
1061
  {
459
1062
  "name": "applicationKey",
460
- "type": "query",
1063
+ "type": "string",
461
1064
  "info": "Your Datadog application key",
462
1065
  "required": true,
463
1066
  "schema": {
464
1067
  "title": "applicationKey",
465
- "type": "query"
1068
+ "type": "string"
466
1069
  }
467
1070
  }
468
1071
  ],
@@ -491,22 +1094,22 @@
491
1094
  "input": [
492
1095
  {
493
1096
  "name": "apiKey",
494
- "type": "query",
1097
+ "type": "string",
495
1098
  "info": "Your Datadog API key",
496
1099
  "required": true,
497
1100
  "schema": {
498
1101
  "title": "apiKey",
499
- "type": "query"
1102
+ "type": "string"
500
1103
  }
501
1104
  },
502
1105
  {
503
1106
  "name": "applicationKey",
504
- "type": "query",
1107
+ "type": "string",
505
1108
  "info": "Your Datadog application key",
506
1109
  "required": true,
507
1110
  "schema": {
508
1111
  "title": "applicationKey",
509
- "type": "query"
1112
+ "type": "string"
510
1113
  }
511
1114
  }
512
1115
  ],
@@ -545,22 +1148,22 @@
545
1148
  },
546
1149
  {
547
1150
  "name": "apiKey",
548
- "type": "query",
1151
+ "type": "string",
549
1152
  "info": "Your Datadog API key",
550
1153
  "required": true,
551
1154
  "schema": {
552
1155
  "title": "apiKey",
553
- "type": "query"
1156
+ "type": "string"
554
1157
  }
555
1158
  },
556
1159
  {
557
1160
  "name": "applicationKey",
558
- "type": "query",
1161
+ "type": "string",
559
1162
  "info": "Your Datadog application key",
560
1163
  "required": true,
561
1164
  "schema": {
562
1165
  "title": "applicationKey",
563
- "type": "query"
1166
+ "type": "string"
564
1167
  }
565
1168
  }
566
1169
  ],
@@ -589,22 +1192,22 @@
589
1192
  "input": [
590
1193
  {
591
1194
  "name": "apiKey",
592
- "type": "query",
1195
+ "type": "string",
593
1196
  "info": "Your Datadog API key",
594
1197
  "required": true,
595
1198
  "schema": {
596
1199
  "title": "apiKey",
597
- "type": "query"
1200
+ "type": "string"
598
1201
  }
599
1202
  },
600
1203
  {
601
1204
  "name": "applicationKey",
602
- "type": "query",
1205
+ "type": "string",
603
1206
  "info": "Your Datadog application key",
604
1207
  "required": true,
605
1208
  "schema": {
606
1209
  "title": "applicationKey",
607
- "type": "query"
1210
+ "type": "string"
608
1211
  }
609
1212
  }
610
1213
  ],
@@ -633,12 +1236,12 @@
633
1236
  "input": [
634
1237
  {
635
1238
  "name": "apiKey",
636
- "type": "query",
1239
+ "type": "string",
637
1240
  "info": "Your Datadog API key",
638
1241
  "required": true,
639
1242
  "schema": {
640
1243
  "title": "apiKey",
641
- "type": "query"
1244
+ "type": "string"
642
1245
  }
643
1246
  }
644
1247
  ],
@@ -677,22 +1280,22 @@
677
1280
  },
678
1281
  {
679
1282
  "name": "apiKey",
680
- "type": "query",
1283
+ "type": "string",
681
1284
  "info": "Your Datadog API key",
682
1285
  "required": true,
683
1286
  "schema": {
684
1287
  "title": "apiKey",
685
- "type": "query"
1288
+ "type": "string"
686
1289
  }
687
1290
  },
688
1291
  {
689
1292
  "name": "applicationKey",
690
- "type": "query",
1293
+ "type": "string",
691
1294
  "info": "Your Datadog application key",
692
1295
  "required": true,
693
1296
  "schema": {
694
1297
  "title": "applicationKey",
695
- "type": "query"
1298
+ "type": "string"
696
1299
  }
697
1300
  }
698
1301
  ],
@@ -731,22 +1334,22 @@
731
1334
  },
732
1335
  {
733
1336
  "name": "apiKey",
734
- "type": "query",
1337
+ "type": "string",
735
1338
  "info": "Your Datadog API key",
736
1339
  "required": true,
737
1340
  "schema": {
738
1341
  "title": "apiKey",
739
- "type": "query"
1342
+ "type": "string"
740
1343
  }
741
1344
  },
742
1345
  {
743
1346
  "name": "applicationKey",
744
- "type": "query",
1347
+ "type": "string",
745
1348
  "info": "Your Datadog application key",
746
1349
  "required": true,
747
1350
  "schema": {
748
1351
  "title": "applicationKey",
749
- "type": "query"
1352
+ "type": "string"
750
1353
  }
751
1354
  }
752
1355
  ],
@@ -785,22 +1388,22 @@
785
1388
  },
786
1389
  {
787
1390
  "name": "apiKey",
788
- "type": "query",
1391
+ "type": "string",
789
1392
  "info": "Your Datadog API key",
790
1393
  "required": true,
791
1394
  "schema": {
792
1395
  "title": "apiKey",
793
- "type": "query"
1396
+ "type": "string"
794
1397
  }
795
1398
  },
796
1399
  {
797
1400
  "name": "applicationKey",
798
- "type": "query",
1401
+ "type": "string",
799
1402
  "info": "Your Datadog application key",
800
1403
  "required": true,
801
1404
  "schema": {
802
1405
  "title": "applicationKey",
803
- "type": "query"
1406
+ "type": "string"
804
1407
  }
805
1408
  }
806
1409
  ],
@@ -829,22 +1432,22 @@
829
1432
  "input": [
830
1433
  {
831
1434
  "name": "apiKey",
832
- "type": "query",
1435
+ "type": "string",
833
1436
  "info": "Your Datadog API key",
834
1437
  "required": true,
835
1438
  "schema": {
836
1439
  "title": "apiKey",
837
- "type": "query"
1440
+ "type": "string"
838
1441
  }
839
1442
  },
840
1443
  {
841
1444
  "name": "applicationKey",
842
- "type": "query",
1445
+ "type": "string",
843
1446
  "info": "Your Datadog application key",
844
1447
  "required": true,
845
1448
  "schema": {
846
1449
  "title": "applicationKey",
847
- "type": "query"
1450
+ "type": "string"
848
1451
  }
849
1452
  }
850
1453
  ],
@@ -883,22 +1486,22 @@
883
1486
  },
884
1487
  {
885
1488
  "name": "apiKey",
886
- "type": "query",
1489
+ "type": "string",
887
1490
  "info": "Your Datadog API key",
888
1491
  "required": true,
889
1492
  "schema": {
890
1493
  "title": "apiKey",
891
- "type": "query"
1494
+ "type": "string"
892
1495
  }
893
1496
  },
894
1497
  {
895
1498
  "name": "applicationKey",
896
- "type": "query",
1499
+ "type": "string",
897
1500
  "info": "Your Datadog application key",
898
1501
  "required": true,
899
1502
  "schema": {
900
1503
  "title": "applicationKey",
901
- "type": "query"
1504
+ "type": "string"
902
1505
  }
903
1506
  }
904
1507
  ],
@@ -937,22 +1540,22 @@
937
1540
  },
938
1541
  {
939
1542
  "name": "apiKey",
940
- "type": "query",
1543
+ "type": "string",
941
1544
  "info": "Your Datadog API key",
942
1545
  "required": true,
943
1546
  "schema": {
944
1547
  "title": "apiKey",
945
- "type": "query"
1548
+ "type": "string"
946
1549
  }
947
1550
  },
948
1551
  {
949
1552
  "name": "applicationKey",
950
- "type": "query",
1553
+ "type": "string",
951
1554
  "info": "Your Datadog application key",
952
1555
  "required": true,
953
1556
  "schema": {
954
1557
  "title": "applicationKey",
955
- "type": "query"
1558
+ "type": "string"
956
1559
  }
957
1560
  }
958
1561
  ],
@@ -981,22 +1584,22 @@
981
1584
  "input": [
982
1585
  {
983
1586
  "name": "apiKey",
984
- "type": "query",
1587
+ "type": "string",
985
1588
  "info": "Your Datadog API key",
986
1589
  "required": true,
987
1590
  "schema": {
988
1591
  "title": "apiKey",
989
- "type": "query"
1592
+ "type": "string"
990
1593
  }
991
1594
  },
992
1595
  {
993
1596
  "name": "applicationKey",
994
- "type": "query",
1597
+ "type": "string",
995
1598
  "info": "Your Datadog application key",
996
1599
  "required": true,
997
1600
  "schema": {
998
1601
  "title": "applicationKey",
999
- "type": "query"
1602
+ "type": "string"
1000
1603
  }
1001
1604
  }
1002
1605
  ],
@@ -1025,22 +1628,22 @@
1025
1628
  "input": [
1026
1629
  {
1027
1630
  "name": "apiKey",
1028
- "type": "query",
1631
+ "type": "string",
1029
1632
  "info": "Your Datadog API key",
1030
1633
  "required": true,
1031
1634
  "schema": {
1032
1635
  "title": "apiKey",
1033
- "type": "query"
1636
+ "type": "string"
1034
1637
  }
1035
1638
  },
1036
1639
  {
1037
1640
  "name": "applicationKey",
1038
- "type": "query",
1641
+ "type": "string",
1039
1642
  "info": "Your Datadog application key",
1040
1643
  "required": true,
1041
1644
  "schema": {
1042
1645
  "title": "applicationKey",
1043
- "type": "query"
1646
+ "type": "string"
1044
1647
  }
1045
1648
  }
1046
1649
  ],
@@ -1069,22 +1672,22 @@
1069
1672
  "input": [
1070
1673
  {
1071
1674
  "name": "apiKey",
1072
- "type": "query",
1675
+ "type": "string",
1073
1676
  "info": "Your Datadog API key",
1074
1677
  "required": true,
1075
1678
  "schema": {
1076
1679
  "title": "apiKey",
1077
- "type": "query"
1680
+ "type": "string"
1078
1681
  }
1079
1682
  },
1080
1683
  {
1081
1684
  "name": "applicationKey",
1082
- "type": "query",
1685
+ "type": "string",
1083
1686
  "info": "Your Datadog application key",
1084
1687
  "required": true,
1085
1688
  "schema": {
1086
1689
  "title": "applicationKey",
1087
- "type": "query"
1690
+ "type": "string"
1088
1691
  }
1089
1692
  }
1090
1693
  ],
@@ -1113,22 +1716,22 @@
1113
1716
  "input": [
1114
1717
  {
1115
1718
  "name": "apiKey",
1116
- "type": "query",
1719
+ "type": "string",
1117
1720
  "info": "Your Datadog API key",
1118
1721
  "required": true,
1119
1722
  "schema": {
1120
1723
  "title": "apiKey",
1121
- "type": "query"
1724
+ "type": "string"
1122
1725
  }
1123
1726
  },
1124
1727
  {
1125
1728
  "name": "applicationKey",
1126
- "type": "query",
1729
+ "type": "string",
1127
1730
  "info": "Your Datadog application key",
1128
1731
  "required": true,
1129
1732
  "schema": {
1130
1733
  "title": "applicationKey",
1131
- "type": "query"
1734
+ "type": "string"
1132
1735
  }
1133
1736
  }
1134
1737
  ],
@@ -1167,22 +1770,22 @@
1167
1770
  },
1168
1771
  {
1169
1772
  "name": "apiKey",
1170
- "type": "query",
1773
+ "type": "string",
1171
1774
  "info": "Your Datadog API key",
1172
1775
  "required": true,
1173
1776
  "schema": {
1174
1777
  "title": "apiKey",
1175
- "type": "query"
1778
+ "type": "string"
1176
1779
  }
1177
1780
  },
1178
1781
  {
1179
1782
  "name": "applicationKey",
1180
- "type": "query",
1783
+ "type": "string",
1181
1784
  "info": "Your Datadog application key",
1182
1785
  "required": true,
1183
1786
  "schema": {
1184
1787
  "title": "applicationKey",
1185
- "type": "query"
1788
+ "type": "string"
1186
1789
  }
1187
1790
  }
1188
1791
  ],
@@ -1211,22 +1814,22 @@
1211
1814
  "input": [
1212
1815
  {
1213
1816
  "name": "apiKey",
1214
- "type": "query",
1817
+ "type": "string",
1215
1818
  "info": "Your Datadog API key",
1216
1819
  "required": true,
1217
1820
  "schema": {
1218
1821
  "title": "apiKey",
1219
- "type": "query"
1822
+ "type": "string"
1220
1823
  }
1221
1824
  },
1222
1825
  {
1223
1826
  "name": "applicationKey",
1224
- "type": "query",
1827
+ "type": "string",
1225
1828
  "info": "Your Datadog application key",
1226
1829
  "required": true,
1227
1830
  "schema": {
1228
1831
  "title": "applicationKey",
1229
- "type": "query"
1832
+ "type": "string"
1230
1833
  }
1231
1834
  }
1232
1835
  ],
@@ -1255,22 +1858,22 @@
1255
1858
  "input": [
1256
1859
  {
1257
1860
  "name": "apiKey",
1258
- "type": "query",
1861
+ "type": "string",
1259
1862
  "info": "Your Datadog API key",
1260
1863
  "required": true,
1261
1864
  "schema": {
1262
1865
  "title": "apiKey",
1263
- "type": "query"
1866
+ "type": "string"
1264
1867
  }
1265
1868
  },
1266
1869
  {
1267
1870
  "name": "applicationKey",
1268
- "type": "query",
1871
+ "type": "string",
1269
1872
  "info": "Your Datadog application key",
1270
1873
  "required": true,
1271
1874
  "schema": {
1272
1875
  "title": "applicationKey",
1273
- "type": "query"
1876
+ "type": "string"
1274
1877
  }
1275
1878
  }
1276
1879
  ],
@@ -1309,22 +1912,22 @@
1309
1912
  },
1310
1913
  {
1311
1914
  "name": "apiKey",
1312
- "type": "query",
1915
+ "type": "string",
1313
1916
  "info": "Your Datadog API key",
1314
1917
  "required": true,
1315
1918
  "schema": {
1316
1919
  "title": "apiKey",
1317
- "type": "query"
1920
+ "type": "string"
1318
1921
  }
1319
1922
  },
1320
1923
  {
1321
1924
  "name": "applicationKey",
1322
- "type": "query",
1925
+ "type": "string",
1323
1926
  "info": "Your Datadog application key",
1324
1927
  "required": true,
1325
1928
  "schema": {
1326
1929
  "title": "applicationKey",
1327
- "type": "query"
1930
+ "type": "string"
1328
1931
  }
1329
1932
  }
1330
1933
  ],
@@ -1353,22 +1956,22 @@
1353
1956
  "input": [
1354
1957
  {
1355
1958
  "name": "apiKey",
1356
- "type": "query",
1959
+ "type": "string",
1357
1960
  "info": "Your Datadog API key",
1358
1961
  "required": true,
1359
1962
  "schema": {
1360
1963
  "title": "apiKey",
1361
- "type": "query"
1964
+ "type": "string"
1362
1965
  }
1363
1966
  },
1364
1967
  {
1365
1968
  "name": "applicationKey",
1366
- "type": "query",
1969
+ "type": "string",
1367
1970
  "info": "Your Datadog application key",
1368
1971
  "required": true,
1369
1972
  "schema": {
1370
1973
  "title": "applicationKey",
1371
- "type": "query"
1974
+ "type": "string"
1372
1975
  }
1373
1976
  }
1374
1977
  ],
@@ -1407,22 +2010,22 @@
1407
2010
  },
1408
2011
  {
1409
2012
  "name": "apiKey",
1410
- "type": "query",
2013
+ "type": "string",
1411
2014
  "info": "Your Datadog API key",
1412
2015
  "required": true,
1413
2016
  "schema": {
1414
2017
  "title": "apiKey",
1415
- "type": "query"
2018
+ "type": "string"
1416
2019
  }
1417
2020
  },
1418
2021
  {
1419
2022
  "name": "applicationKey",
1420
- "type": "query",
2023
+ "type": "string",
1421
2024
  "info": "Your Datadog application key",
1422
2025
  "required": true,
1423
2026
  "schema": {
1424
2027
  "title": "applicationKey",
1425
- "type": "query"
2028
+ "type": "string"
1426
2029
  }
1427
2030
  }
1428
2031
  ],
@@ -1461,22 +2064,22 @@
1461
2064
  },
1462
2065
  {
1463
2066
  "name": "apiKey",
1464
- "type": "query",
2067
+ "type": "string",
1465
2068
  "info": "Your Datadog API key",
1466
2069
  "required": true,
1467
2070
  "schema": {
1468
2071
  "title": "apiKey",
1469
- "type": "query"
2072
+ "type": "string"
1470
2073
  }
1471
2074
  },
1472
2075
  {
1473
2076
  "name": "applicationKey",
1474
- "type": "query",
2077
+ "type": "string",
1475
2078
  "info": "Your Datadog application key",
1476
2079
  "required": true,
1477
2080
  "schema": {
1478
2081
  "title": "applicationKey",
1479
- "type": "query"
2082
+ "type": "string"
1480
2083
  }
1481
2084
  }
1482
2085
  ],
@@ -1505,22 +2108,22 @@
1505
2108
  "input": [
1506
2109
  {
1507
2110
  "name": "apiKey",
1508
- "type": "query",
2111
+ "type": "string",
1509
2112
  "info": "Your Datadog API key",
1510
2113
  "required": true,
1511
2114
  "schema": {
1512
2115
  "title": "apiKey",
1513
- "type": "query"
2116
+ "type": "string"
1514
2117
  }
1515
2118
  },
1516
2119
  {
1517
2120
  "name": "applicationKey",
1518
- "type": "query",
2121
+ "type": "string",
1519
2122
  "info": "Your Datadog application key",
1520
2123
  "required": true,
1521
2124
  "schema": {
1522
2125
  "title": "applicationKey",
1523
- "type": "query"
2126
+ "type": "string"
1524
2127
  }
1525
2128
  }
1526
2129
  ],
@@ -1559,22 +2162,22 @@
1559
2162
  },
1560
2163
  {
1561
2164
  "name": "apiKey",
1562
- "type": "query",
2165
+ "type": "string",
1563
2166
  "info": "Your Datadog API key",
1564
2167
  "required": true,
1565
2168
  "schema": {
1566
2169
  "title": "apiKey",
1567
- "type": "query"
2170
+ "type": "string"
1568
2171
  }
1569
2172
  },
1570
2173
  {
1571
2174
  "name": "applicationKey",
1572
- "type": "query",
2175
+ "type": "string",
1573
2176
  "info": "Your Datadog application key",
1574
2177
  "required": true,
1575
2178
  "schema": {
1576
2179
  "title": "applicationKey",
1577
- "type": "query"
2180
+ "type": "string"
1578
2181
  }
1579
2182
  }
1580
2183
  ],
@@ -1603,22 +2206,22 @@
1603
2206
  "input": [
1604
2207
  {
1605
2208
  "name": "apiKey",
1606
- "type": "query",
2209
+ "type": "string",
1607
2210
  "info": "Your Datadog API key",
1608
2211
  "required": true,
1609
2212
  "schema": {
1610
2213
  "title": "apiKey",
1611
- "type": "query"
2214
+ "type": "string"
1612
2215
  }
1613
2216
  },
1614
2217
  {
1615
2218
  "name": "applicationKey",
1616
- "type": "query",
2219
+ "type": "string",
1617
2220
  "info": "Your Datadog application key",
1618
2221
  "required": true,
1619
2222
  "schema": {
1620
2223
  "title": "applicationKey",
1621
- "type": "query"
2224
+ "type": "string"
1622
2225
  }
1623
2226
  }
1624
2227
  ],
@@ -1657,22 +2260,22 @@
1657
2260
  },
1658
2261
  {
1659
2262
  "name": "apiKey",
1660
- "type": "query",
2263
+ "type": "string",
1661
2264
  "info": "Your Datadog API key",
1662
2265
  "required": true,
1663
2266
  "schema": {
1664
2267
  "title": "apiKey",
1665
- "type": "query"
2268
+ "type": "string"
1666
2269
  }
1667
2270
  },
1668
2271
  {
1669
2272
  "name": "applicationKey",
1670
- "type": "query",
2273
+ "type": "string",
1671
2274
  "info": "Your Datadog application key",
1672
2275
  "required": true,
1673
2276
  "schema": {
1674
2277
  "title": "applicationKey",
1675
- "type": "query"
2278
+ "type": "string"
1676
2279
  }
1677
2280
  }
1678
2281
  ],
@@ -1701,22 +2304,22 @@
1701
2304
  "input": [
1702
2305
  {
1703
2306
  "name": "apiKey",
1704
- "type": "query",
2307
+ "type": "string",
1705
2308
  "info": "Your Datadog API key",
1706
2309
  "required": true,
1707
2310
  "schema": {
1708
2311
  "title": "apiKey",
1709
- "type": "query"
2312
+ "type": "string"
1710
2313
  }
1711
2314
  },
1712
2315
  {
1713
2316
  "name": "applicationKey",
1714
- "type": "query",
2317
+ "type": "string",
1715
2318
  "info": "Your Datadog application key",
1716
2319
  "required": true,
1717
2320
  "schema": {
1718
2321
  "title": "applicationKey",
1719
- "type": "query"
2322
+ "type": "string"
1720
2323
  }
1721
2324
  }
1722
2325
  ],
@@ -1745,22 +2348,22 @@
1745
2348
  "input": [
1746
2349
  {
1747
2350
  "name": "apiKey",
1748
- "type": "query",
2351
+ "type": "string",
1749
2352
  "info": "Your Datadog API key",
1750
2353
  "required": true,
1751
2354
  "schema": {
1752
2355
  "title": "apiKey",
1753
- "type": "query"
2356
+ "type": "string"
1754
2357
  }
1755
2358
  },
1756
2359
  {
1757
2360
  "name": "applicationKey",
1758
- "type": "query",
2361
+ "type": "string",
1759
2362
  "info": "Your Datadog application key",
1760
2363
  "required": true,
1761
2364
  "schema": {
1762
2365
  "title": "applicationKey",
1763
- "type": "query"
2366
+ "type": "string"
1764
2367
  }
1765
2368
  }
1766
2369
  ],
@@ -1799,22 +2402,22 @@
1799
2402
  },
1800
2403
  {
1801
2404
  "name": "apiKey",
1802
- "type": "query",
2405
+ "type": "string",
1803
2406
  "info": "Your Datadog API key",
1804
2407
  "required": true,
1805
2408
  "schema": {
1806
2409
  "title": "apiKey",
1807
- "type": "query"
2410
+ "type": "string"
1808
2411
  }
1809
2412
  },
1810
2413
  {
1811
2414
  "name": "applicationKey",
1812
- "type": "query",
2415
+ "type": "string",
1813
2416
  "info": "Your Datadog application key",
1814
2417
  "required": true,
1815
2418
  "schema": {
1816
2419
  "title": "applicationKey",
1817
- "type": "query"
2420
+ "type": "string"
1818
2421
  }
1819
2422
  }
1820
2423
  ],
@@ -1843,22 +2446,22 @@
1843
2446
  "input": [
1844
2447
  {
1845
2448
  "name": "apiKey",
1846
- "type": "query",
2449
+ "type": "string",
1847
2450
  "info": "Your Datadog API key",
1848
2451
  "required": true,
1849
2452
  "schema": {
1850
2453
  "title": "apiKey",
1851
- "type": "query"
2454
+ "type": "string"
1852
2455
  }
1853
2456
  },
1854
2457
  {
1855
2458
  "name": "applicationKey",
1856
- "type": "query",
2459
+ "type": "string",
1857
2460
  "info": "Your Datadog application key",
1858
2461
  "required": true,
1859
2462
  "schema": {
1860
2463
  "title": "applicationKey",
1861
- "type": "query"
2464
+ "type": "string"
1862
2465
  }
1863
2466
  }
1864
2467
  ],
@@ -1897,22 +2500,22 @@
1897
2500
  },
1898
2501
  {
1899
2502
  "name": "apiKey",
1900
- "type": "query",
2503
+ "type": "string",
1901
2504
  "info": "Your Datadog API key",
1902
2505
  "required": true,
1903
2506
  "schema": {
1904
2507
  "title": "apiKey",
1905
- "type": "query"
2508
+ "type": "string"
1906
2509
  }
1907
2510
  },
1908
2511
  {
1909
2512
  "name": "applicationKey",
1910
- "type": "query",
2513
+ "type": "string",
1911
2514
  "info": "Your Datadog application key",
1912
2515
  "required": true,
1913
2516
  "schema": {
1914
2517
  "title": "applicationKey",
1915
- "type": "query"
2518
+ "type": "string"
1916
2519
  }
1917
2520
  }
1918
2521
  ],
@@ -1941,22 +2544,22 @@
1941
2544
  "input": [
1942
2545
  {
1943
2546
  "name": "apiKey",
1944
- "type": "query",
2547
+ "type": "string",
1945
2548
  "info": "Your Datadog API key",
1946
2549
  "required": true,
1947
2550
  "schema": {
1948
2551
  "title": "apiKey",
1949
- "type": "query"
2552
+ "type": "string"
1950
2553
  }
1951
2554
  },
1952
2555
  {
1953
2556
  "name": "applicationKey",
1954
- "type": "query",
2557
+ "type": "string",
1955
2558
  "info": "Your Datadog application key",
1956
2559
  "required": true,
1957
2560
  "schema": {
1958
2561
  "title": "applicationKey",
1959
- "type": "query"
2562
+ "type": "string"
1960
2563
  }
1961
2564
  }
1962
2565
  ],
@@ -1985,22 +2588,22 @@
1985
2588
  "input": [
1986
2589
  {
1987
2590
  "name": "apiKey",
1988
- "type": "query",
2591
+ "type": "string",
1989
2592
  "info": "Your Datadog API key",
1990
2593
  "required": true,
1991
2594
  "schema": {
1992
2595
  "title": "apiKey",
1993
- "type": "query"
2596
+ "type": "string"
1994
2597
  }
1995
2598
  },
1996
2599
  {
1997
2600
  "name": "applicationKey",
1998
- "type": "query",
2601
+ "type": "string",
1999
2602
  "info": "Your Datadog application key",
2000
2603
  "required": true,
2001
2604
  "schema": {
2002
2605
  "title": "applicationKey",
2003
- "type": "query"
2606
+ "type": "string"
2004
2607
  }
2005
2608
  }
2006
2609
  ],
@@ -2029,22 +2632,22 @@
2029
2632
  "input": [
2030
2633
  {
2031
2634
  "name": "apiKey",
2032
- "type": "query",
2635
+ "type": "string",
2033
2636
  "info": "Your Datadog API key",
2034
2637
  "required": true,
2035
2638
  "schema": {
2036
2639
  "title": "apiKey",
2037
- "type": "query"
2640
+ "type": "string"
2038
2641
  }
2039
2642
  },
2040
2643
  {
2041
2644
  "name": "applicationKey",
2042
- "type": "query",
2645
+ "type": "string",
2043
2646
  "info": "Your Datadog application key",
2044
2647
  "required": true,
2045
2648
  "schema": {
2046
2649
  "title": "applicationKey",
2047
- "type": "query"
2650
+ "type": "string"
2048
2651
  }
2049
2652
  }
2050
2653
  ],
@@ -2083,22 +2686,22 @@
2083
2686
  },
2084
2687
  {
2085
2688
  "name": "apiKey",
2086
- "type": "query",
2689
+ "type": "string",
2087
2690
  "info": "Your Datadog API key",
2088
2691
  "required": true,
2089
2692
  "schema": {
2090
2693
  "title": "apiKey",
2091
- "type": "query"
2694
+ "type": "string"
2092
2695
  }
2093
2696
  },
2094
2697
  {
2095
2698
  "name": "applicationKey",
2096
- "type": "query",
2699
+ "type": "string",
2097
2700
  "info": "Your Datadog application key",
2098
2701
  "required": true,
2099
2702
  "schema": {
2100
2703
  "title": "applicationKey",
2101
- "type": "query"
2704
+ "type": "string"
2102
2705
  }
2103
2706
  }
2104
2707
  ],
@@ -2127,22 +2730,22 @@
2127
2730
  "input": [
2128
2731
  {
2129
2732
  "name": "apiKey",
2130
- "type": "query",
2733
+ "type": "string",
2131
2734
  "info": "Your Datadog API key",
2132
2735
  "required": true,
2133
2736
  "schema": {
2134
2737
  "title": "apiKey",
2135
- "type": "query"
2738
+ "type": "string"
2136
2739
  }
2137
2740
  },
2138
2741
  {
2139
2742
  "name": "applicationKey",
2140
- "type": "query",
2743
+ "type": "string",
2141
2744
  "info": "Your Datadog application key",
2142
2745
  "required": true,
2143
2746
  "schema": {
2144
2747
  "title": "applicationKey",
2145
- "type": "query"
2748
+ "type": "string"
2146
2749
  }
2147
2750
  }
2148
2751
  ],
@@ -2171,22 +2774,22 @@
2171
2774
  "input": [
2172
2775
  {
2173
2776
  "name": "apiKey",
2174
- "type": "query",
2777
+ "type": "string",
2175
2778
  "info": "Your Datadog API key",
2176
2779
  "required": true,
2177
2780
  "schema": {
2178
2781
  "title": "apiKey",
2179
- "type": "query"
2782
+ "type": "string"
2180
2783
  }
2181
2784
  },
2182
2785
  {
2183
2786
  "name": "applicationKey",
2184
- "type": "query",
2787
+ "type": "string",
2185
2788
  "info": "Your Datadog application key",
2186
2789
  "required": true,
2187
2790
  "schema": {
2188
2791
  "title": "applicationKey",
2189
- "type": "query"
2792
+ "type": "string"
2190
2793
  }
2191
2794
  }
2192
2795
  ],
@@ -2215,22 +2818,22 @@
2215
2818
  "input": [
2216
2819
  {
2217
2820
  "name": "apiKey",
2218
- "type": "query",
2821
+ "type": "string",
2219
2822
  "info": "Your Datadog API key",
2220
2823
  "required": true,
2221
2824
  "schema": {
2222
2825
  "title": "apiKey",
2223
- "type": "query"
2826
+ "type": "string"
2224
2827
  }
2225
2828
  },
2226
2829
  {
2227
2830
  "name": "applicationKey",
2228
- "type": "query",
2831
+ "type": "string",
2229
2832
  "info": "Your Datadog application key",
2230
2833
  "required": true,
2231
2834
  "schema": {
2232
2835
  "title": "applicationKey",
2233
- "type": "query"
2836
+ "type": "string"
2234
2837
  }
2235
2838
  }
2236
2839
  ],
@@ -2259,62 +2862,62 @@
2259
2862
  "input": [
2260
2863
  {
2261
2864
  "name": "apiKey",
2262
- "type": "query",
2865
+ "type": "string",
2263
2866
  "info": "Your Datadog API key",
2264
2867
  "required": true,
2265
2868
  "schema": {
2266
2869
  "title": "apiKey",
2267
- "type": "query"
2870
+ "type": "string"
2268
2871
  }
2269
2872
  },
2270
2873
  {
2271
2874
  "name": "applicationKey",
2272
- "type": "query",
2875
+ "type": "string",
2273
2876
  "info": "Your Datadog application key",
2274
2877
  "required": true,
2275
2878
  "schema": {
2276
2879
  "title": "applicationKey",
2277
- "type": "query"
2880
+ "type": "string"
2278
2881
  }
2279
2882
  },
2280
2883
  {
2281
2884
  "name": "metricQuery",
2282
- "type": "query",
2885
+ "type": "string",
2283
2886
  "info": "The metric query to graph for the snapshot",
2284
2887
  "required": true,
2285
2888
  "schema": {
2286
2889
  "title": "metricQuery",
2287
- "type": "query"
2890
+ "type": "string"
2288
2891
  }
2289
2892
  },
2290
2893
  {
2291
2894
  "name": "start",
2292
- "type": "query",
2895
+ "type": "string",
2293
2896
  "info": "The POSIX timestamp of the start of the query.",
2294
2897
  "required": true,
2295
2898
  "schema": {
2296
2899
  "title": "start",
2297
- "type": "query"
2900
+ "type": "string"
2298
2901
  }
2299
2902
  },
2300
2903
  {
2301
2904
  "name": "end",
2302
- "type": "query",
2905
+ "type": "string",
2303
2906
  "info": "The POSIX timestamp of the end of the query.",
2304
2907
  "required": true,
2305
2908
  "schema": {
2306
2909
  "title": "end",
2307
- "type": "query"
2910
+ "type": "string"
2308
2911
  }
2309
2912
  },
2310
2913
  {
2311
2914
  "name": "title",
2312
- "type": "query",
2915
+ "type": "string",
2313
2916
  "info": "A title for the graph. If no title is specified, the graph doesn't have a title.",
2314
2917
  "required": true,
2315
2918
  "schema": {
2316
2919
  "title": "title",
2317
- "type": "query"
2920
+ "type": "string"
2318
2921
  }
2319
2922
  }
2320
2923
  ],
@@ -2343,72 +2946,72 @@
2343
2946
  "input": [
2344
2947
  {
2345
2948
  "name": "apiKey",
2346
- "type": "query",
2949
+ "type": "string",
2347
2950
  "info": "Your Datadog API key",
2348
2951
  "required": true,
2349
2952
  "schema": {
2350
2953
  "title": "apiKey",
2351
- "type": "query"
2954
+ "type": "string"
2352
2955
  }
2353
2956
  },
2354
2957
  {
2355
2958
  "name": "applicationKey",
2356
- "type": "query",
2959
+ "type": "string",
2357
2960
  "info": "Your Datadog application key",
2358
2961
  "required": true,
2359
2962
  "schema": {
2360
2963
  "title": "applicationKey",
2361
- "type": "query"
2964
+ "type": "string"
2362
2965
  }
2363
2966
  },
2364
2967
  {
2365
2968
  "name": "filter",
2366
- "type": "query",
2969
+ "type": "string",
2367
2970
  "info": "Query string to filter search results.",
2368
2971
  "required": true,
2369
2972
  "schema": {
2370
2973
  "title": "filter",
2371
- "type": "query"
2974
+ "type": "string"
2372
2975
  }
2373
2976
  },
2374
2977
  {
2375
2978
  "name": "sortField",
2376
- "type": "query",
2979
+ "type": "string",
2377
2980
  "info": "Sort hosts by the given field. Options: status, apps, cpu, iowait, load",
2378
2981
  "required": true,
2379
2982
  "schema": {
2380
2983
  "title": "sortField",
2381
- "type": "query"
2984
+ "type": "string"
2382
2985
  }
2383
2986
  },
2384
2987
  {
2385
2988
  "name": "sortDir",
2386
- "type": "query",
2989
+ "type": "string",
2387
2990
  "info": "Direction of sort. Options: asc, desc",
2388
2991
  "required": true,
2389
2992
  "schema": {
2390
2993
  "title": "sortDir",
2391
- "type": "query"
2994
+ "type": "string"
2392
2995
  }
2393
2996
  },
2394
2997
  {
2395
2998
  "name": "start",
2396
- "type": "query",
2999
+ "type": "string",
2397
3000
  "info": "Host result to start search from.",
2398
3001
  "required": true,
2399
3002
  "schema": {
2400
3003
  "title": "start",
2401
- "type": "query"
3004
+ "type": "string"
2402
3005
  }
2403
3006
  },
2404
3007
  {
2405
3008
  "name": "count",
2406
- "type": "query",
3009
+ "type": "number",
2407
3010
  "info": "Number of host results to return. Max 100.",
2408
3011
  "required": true,
2409
3012
  "schema": {
2410
3013
  "title": "count",
2411
- "type": "query"
3014
+ "type": "number"
2412
3015
  }
2413
3016
  }
2414
3017
  ],
@@ -2437,22 +3040,22 @@
2437
3040
  "input": [
2438
3041
  {
2439
3042
  "name": "apiKey",
2440
- "type": "query",
3043
+ "type": "string",
2441
3044
  "info": "Your Datadog API key",
2442
3045
  "required": true,
2443
3046
  "schema": {
2444
3047
  "title": "apiKey",
2445
- "type": "query"
3048
+ "type": "string"
2446
3049
  }
2447
3050
  },
2448
3051
  {
2449
3052
  "name": "applicationKey",
2450
- "type": "query",
3053
+ "type": "string",
2451
3054
  "info": "Your Datadog application key",
2452
3055
  "required": true,
2453
3056
  "schema": {
2454
3057
  "title": "applicationKey",
2455
- "type": "query"
3058
+ "type": "string"
2456
3059
  }
2457
3060
  }
2458
3061
  ],
@@ -2491,22 +3094,22 @@
2491
3094
  },
2492
3095
  {
2493
3096
  "name": "apiKey",
2494
- "type": "query",
3097
+ "type": "string",
2495
3098
  "info": "Your Datadog API key",
2496
3099
  "required": true,
2497
3100
  "schema": {
2498
3101
  "title": "apiKey",
2499
- "type": "query"
3102
+ "type": "string"
2500
3103
  }
2501
3104
  },
2502
3105
  {
2503
3106
  "name": "applicationKey",
2504
- "type": "query",
3107
+ "type": "string",
2505
3108
  "info": "Your Datadog application key",
2506
3109
  "required": true,
2507
3110
  "schema": {
2508
3111
  "title": "applicationKey",
2509
- "type": "query"
3112
+ "type": "string"
2510
3113
  }
2511
3114
  }
2512
3115
  ],
@@ -2545,22 +3148,22 @@
2545
3148
  },
2546
3149
  {
2547
3150
  "name": "apiKey",
2548
- "type": "query",
3151
+ "type": "string",
2549
3152
  "info": "Your Datadog API key",
2550
3153
  "required": true,
2551
3154
  "schema": {
2552
3155
  "title": "apiKey",
2553
- "type": "query"
3156
+ "type": "string"
2554
3157
  }
2555
3158
  },
2556
3159
  {
2557
3160
  "name": "applicationKey",
2558
- "type": "query",
3161
+ "type": "string",
2559
3162
  "info": "Your Datadog application key",
2560
3163
  "required": true,
2561
3164
  "schema": {
2562
3165
  "title": "applicationKey",
2563
- "type": "query"
3166
+ "type": "string"
2564
3167
  }
2565
3168
  }
2566
3169
  ],
@@ -2589,22 +3192,22 @@
2589
3192
  "input": [
2590
3193
  {
2591
3194
  "name": "apiKey",
2592
- "type": "query",
3195
+ "type": "string",
2593
3196
  "info": "Your Datadog API key",
2594
3197
  "required": true,
2595
3198
  "schema": {
2596
3199
  "title": "apiKey",
2597
- "type": "query"
3200
+ "type": "string"
2598
3201
  }
2599
3202
  },
2600
3203
  {
2601
3204
  "name": "applicationKey",
2602
- "type": "query",
3205
+ "type": "string",
2603
3206
  "info": "Your Datadog application key",
2604
3207
  "required": true,
2605
3208
  "schema": {
2606
3209
  "title": "applicationKey",
2607
- "type": "query"
3210
+ "type": "string"
2608
3211
  }
2609
3212
  }
2610
3213
  ],
@@ -2643,22 +3246,22 @@
2643
3246
  },
2644
3247
  {
2645
3248
  "name": "apiKey",
2646
- "type": "query",
3249
+ "type": "string",
2647
3250
  "info": "Your Datadog API key",
2648
3251
  "required": true,
2649
3252
  "schema": {
2650
3253
  "title": "apiKey",
2651
- "type": "query"
3254
+ "type": "string"
2652
3255
  }
2653
3256
  },
2654
3257
  {
2655
3258
  "name": "applicationKey",
2656
- "type": "query",
3259
+ "type": "string",
2657
3260
  "info": "Your Datadog application key",
2658
3261
  "required": true,
2659
3262
  "schema": {
2660
3263
  "title": "applicationKey",
2661
- "type": "query"
3264
+ "type": "string"
2662
3265
  }
2663
3266
  }
2664
3267
  ],
@@ -2687,22 +3290,22 @@
2687
3290
  "input": [
2688
3291
  {
2689
3292
  "name": "apiKey",
2690
- "type": "query",
3293
+ "type": "string",
2691
3294
  "info": "Your Datadog API key",
2692
3295
  "required": true,
2693
3296
  "schema": {
2694
3297
  "title": "apiKey",
2695
- "type": "query"
3298
+ "type": "string"
2696
3299
  }
2697
3300
  },
2698
3301
  {
2699
3302
  "name": "applicationKey",
2700
- "type": "query",
3303
+ "type": "string",
2701
3304
  "info": "Your Datadog application key",
2702
3305
  "required": true,
2703
3306
  "schema": {
2704
3307
  "title": "applicationKey",
2705
- "type": "query"
3308
+ "type": "string"
2706
3309
  }
2707
3310
  }
2708
3311
  ],
@@ -2731,22 +3334,22 @@
2731
3334
  "input": [
2732
3335
  {
2733
3336
  "name": "apiKey",
2734
- "type": "query",
3337
+ "type": "string",
2735
3338
  "info": "Your Datadog API key",
2736
3339
  "required": true,
2737
3340
  "schema": {
2738
3341
  "title": "apiKey",
2739
- "type": "query"
3342
+ "type": "string"
2740
3343
  }
2741
3344
  },
2742
3345
  {
2743
3346
  "name": "applicationKey",
2744
- "type": "query",
3347
+ "type": "string",
2745
3348
  "info": "Your Datadog application key",
2746
3349
  "required": true,
2747
3350
  "schema": {
2748
3351
  "title": "applicationKey",
2749
- "type": "query"
3352
+ "type": "string"
2750
3353
  }
2751
3354
  }
2752
3355
  ],
@@ -2775,22 +3378,22 @@
2775
3378
  "input": [
2776
3379
  {
2777
3380
  "name": "apiKey",
2778
- "type": "query",
3381
+ "type": "string",
2779
3382
  "info": "Your Datadog API key",
2780
3383
  "required": true,
2781
3384
  "schema": {
2782
3385
  "title": "apiKey",
2783
- "type": "query"
3386
+ "type": "string"
2784
3387
  }
2785
3388
  },
2786
3389
  {
2787
3390
  "name": "applicationKey",
2788
- "type": "query",
3391
+ "type": "string",
2789
3392
  "info": "Your Datadog application key",
2790
3393
  "required": true,
2791
3394
  "schema": {
2792
3395
  "title": "applicationKey",
2793
- "type": "query"
3396
+ "type": "string"
2794
3397
  }
2795
3398
  }
2796
3399
  ],
@@ -2829,22 +3432,22 @@
2829
3432
  },
2830
3433
  {
2831
3434
  "name": "apiKey",
2832
- "type": "query",
3435
+ "type": "string",
2833
3436
  "info": "Your Datadog API key",
2834
3437
  "required": true,
2835
3438
  "schema": {
2836
3439
  "title": "apiKey",
2837
- "type": "query"
3440
+ "type": "string"
2838
3441
  }
2839
3442
  },
2840
3443
  {
2841
3444
  "name": "applicationKey",
2842
- "type": "query",
3445
+ "type": "string",
2843
3446
  "info": "Your Datadog application key",
2844
3447
  "required": true,
2845
3448
  "schema": {
2846
3449
  "title": "applicationKey",
2847
- "type": "query"
3450
+ "type": "string"
2848
3451
  }
2849
3452
  }
2850
3453
  ],
@@ -2873,22 +3476,22 @@
2873
3476
  "input": [
2874
3477
  {
2875
3478
  "name": "apiKey",
2876
- "type": "query",
3479
+ "type": "string",
2877
3480
  "info": "Your Datadog API key",
2878
3481
  "required": true,
2879
3482
  "schema": {
2880
3483
  "title": "apiKey",
2881
- "type": "query"
3484
+ "type": "string"
2882
3485
  }
2883
3486
  },
2884
3487
  {
2885
3488
  "name": "applicationKey",
2886
- "type": "query",
3489
+ "type": "string",
2887
3490
  "info": "Your Datadog application key",
2888
3491
  "required": true,
2889
3492
  "schema": {
2890
3493
  "title": "applicationKey",
2891
- "type": "query"
3494
+ "type": "string"
2892
3495
  }
2893
3496
  }
2894
3497
  ],
@@ -2927,22 +3530,22 @@
2927
3530
  },
2928
3531
  {
2929
3532
  "name": "apiKey",
2930
- "type": "query",
3533
+ "type": "string",
2931
3534
  "info": "Your Datadog API key",
2932
3535
  "required": true,
2933
3536
  "schema": {
2934
3537
  "title": "apiKey",
2935
- "type": "query"
3538
+ "type": "string"
2936
3539
  }
2937
3540
  },
2938
3541
  {
2939
3542
  "name": "applicationKey",
2940
- "type": "query",
3543
+ "type": "string",
2941
3544
  "info": "Your Datadog application key",
2942
3545
  "required": true,
2943
3546
  "schema": {
2944
3547
  "title": "applicationKey",
2945
- "type": "query"
3548
+ "type": "string"
2946
3549
  }
2947
3550
  }
2948
3551
  ],
@@ -2971,22 +3574,22 @@
2971
3574
  "input": [
2972
3575
  {
2973
3576
  "name": "apiKey",
2974
- "type": "query",
3577
+ "type": "string",
2975
3578
  "info": "Your Datadog API key",
2976
3579
  "required": true,
2977
3580
  "schema": {
2978
3581
  "title": "apiKey",
2979
- "type": "query"
3582
+ "type": "string"
2980
3583
  }
2981
3584
  },
2982
3585
  {
2983
3586
  "name": "applicationKey",
2984
- "type": "query",
3587
+ "type": "string",
2985
3588
  "info": "Your Datadog application key",
2986
3589
  "required": true,
2987
3590
  "schema": {
2988
3591
  "title": "applicationKey",
2989
- "type": "query"
3592
+ "type": "string"
2990
3593
  }
2991
3594
  }
2992
3595
  ],
@@ -3025,22 +3628,22 @@
3025
3628
  },
3026
3629
  {
3027
3630
  "name": "apiKey",
3028
- "type": "query",
3631
+ "type": "string",
3029
3632
  "info": "Your Datadog API key",
3030
3633
  "required": true,
3031
3634
  "schema": {
3032
3635
  "title": "apiKey",
3033
- "type": "query"
3636
+ "type": "string"
3034
3637
  }
3035
3638
  },
3036
3639
  {
3037
3640
  "name": "applicationKey",
3038
- "type": "query",
3641
+ "type": "string",
3039
3642
  "info": "Your Datadog application key",
3040
3643
  "required": true,
3041
3644
  "schema": {
3042
3645
  "title": "applicationKey",
3043
- "type": "query"
3646
+ "type": "string"
3044
3647
  }
3045
3648
  }
3046
3649
  ],
@@ -3069,22 +3672,22 @@
3069
3672
  "input": [
3070
3673
  {
3071
3674
  "name": "apiKey",
3072
- "type": "query",
3675
+ "type": "string",
3073
3676
  "info": "Your Datadog API key",
3074
3677
  "required": true,
3075
3678
  "schema": {
3076
3679
  "title": "apiKey",
3077
- "type": "query"
3680
+ "type": "string"
3078
3681
  }
3079
3682
  },
3080
3683
  {
3081
3684
  "name": "applicationKey",
3082
- "type": "query",
3685
+ "type": "string",
3083
3686
  "info": "Your Datadog application key",
3084
3687
  "required": true,
3085
3688
  "schema": {
3086
3689
  "title": "applicationKey",
3087
- "type": "query"
3690
+ "type": "string"
3088
3691
  }
3089
3692
  }
3090
3693
  ],
@@ -3113,22 +3716,22 @@
3113
3716
  "input": [
3114
3717
  {
3115
3718
  "name": "apiKey",
3116
- "type": "query",
3719
+ "type": "string",
3117
3720
  "info": "Your Datadog API key",
3118
3721
  "required": true,
3119
3722
  "schema": {
3120
3723
  "title": "apiKey",
3121
- "type": "query"
3724
+ "type": "string"
3122
3725
  }
3123
3726
  },
3124
3727
  {
3125
3728
  "name": "applicationKey",
3126
- "type": "query",
3729
+ "type": "string",
3127
3730
  "info": "Your Datadog application key",
3128
3731
  "required": true,
3129
3732
  "schema": {
3130
3733
  "title": "applicationKey",
3131
- "type": "query"
3734
+ "type": "string"
3132
3735
  }
3133
3736
  }
3134
3737
  ],
@@ -3167,22 +3770,22 @@
3167
3770
  },
3168
3771
  {
3169
3772
  "name": "apiKey",
3170
- "type": "query",
3773
+ "type": "string",
3171
3774
  "info": "Your Datadog API key",
3172
3775
  "required": true,
3173
3776
  "schema": {
3174
3777
  "title": "apiKey",
3175
- "type": "query"
3778
+ "type": "string"
3176
3779
  }
3177
3780
  },
3178
3781
  {
3179
3782
  "name": "applicationKey",
3180
- "type": "query",
3783
+ "type": "string",
3181
3784
  "info": "Your Datadog application key",
3182
3785
  "required": true,
3183
3786
  "schema": {
3184
3787
  "title": "applicationKey",
3185
- "type": "query"
3788
+ "type": "string"
3186
3789
  }
3187
3790
  }
3188
3791
  ],
@@ -3221,22 +3824,22 @@
3221
3824
  },
3222
3825
  {
3223
3826
  "name": "apiKey",
3224
- "type": "query",
3827
+ "type": "string",
3225
3828
  "info": "Your Datadog API key",
3226
3829
  "required": true,
3227
3830
  "schema": {
3228
3831
  "title": "apiKey",
3229
- "type": "query"
3832
+ "type": "string"
3230
3833
  }
3231
3834
  },
3232
3835
  {
3233
3836
  "name": "applicationKey",
3234
- "type": "query",
3837
+ "type": "string",
3235
3838
  "info": "Your Datadog application key",
3236
3839
  "required": true,
3237
3840
  "schema": {
3238
3841
  "title": "applicationKey",
3239
- "type": "query"
3842
+ "type": "string"
3240
3843
  }
3241
3844
  }
3242
3845
  ],
@@ -3265,22 +3868,22 @@
3265
3868
  "input": [
3266
3869
  {
3267
3870
  "name": "apiKey",
3268
- "type": "query",
3871
+ "type": "string",
3269
3872
  "info": "Your Datadog API key",
3270
3873
  "required": true,
3271
3874
  "schema": {
3272
3875
  "title": "apiKey",
3273
- "type": "query"
3876
+ "type": "string"
3274
3877
  }
3275
3878
  },
3276
3879
  {
3277
3880
  "name": "applicationKey",
3278
- "type": "query",
3881
+ "type": "string",
3279
3882
  "info": "Your Datadog application key",
3280
3883
  "required": true,
3281
3884
  "schema": {
3282
3885
  "title": "applicationKey",
3283
- "type": "query"
3886
+ "type": "string"
3284
3887
  }
3285
3888
  }
3286
3889
  ],
@@ -3309,22 +3912,22 @@
3309
3912
  "input": [
3310
3913
  {
3311
3914
  "name": "apiKey",
3312
- "type": "query",
3915
+ "type": "string",
3313
3916
  "info": "Your Datadog API key",
3314
3917
  "required": true,
3315
3918
  "schema": {
3316
3919
  "title": "apiKey",
3317
- "type": "query"
3920
+ "type": "string"
3318
3921
  }
3319
3922
  },
3320
3923
  {
3321
3924
  "name": "applicationKey",
3322
- "type": "query",
3925
+ "type": "string",
3323
3926
  "info": "Your Datadog application key",
3324
3927
  "required": true,
3325
3928
  "schema": {
3326
3929
  "title": "applicationKey",
3327
- "type": "query"
3930
+ "type": "string"
3328
3931
  }
3329
3932
  }
3330
3933
  ],
@@ -3363,22 +3966,22 @@
3363
3966
  },
3364
3967
  {
3365
3968
  "name": "apiKey",
3366
- "type": "query",
3969
+ "type": "string",
3367
3970
  "info": "Your Datadog API key",
3368
3971
  "required": true,
3369
3972
  "schema": {
3370
3973
  "title": "apiKey",
3371
- "type": "query"
3974
+ "type": "string"
3372
3975
  }
3373
3976
  },
3374
3977
  {
3375
3978
  "name": "applicationKey",
3376
- "type": "query",
3979
+ "type": "string",
3377
3980
  "info": "Your Datadog application key",
3378
3981
  "required": true,
3379
3982
  "schema": {
3380
3983
  "title": "applicationKey",
3381
- "type": "query"
3984
+ "type": "string"
3382
3985
  }
3383
3986
  }
3384
3987
  ],
@@ -3407,22 +4010,22 @@
3407
4010
  "input": [
3408
4011
  {
3409
4012
  "name": "apiKey",
3410
- "type": "query",
4013
+ "type": "string",
3411
4014
  "info": "Your Datadog API key",
3412
4015
  "required": true,
3413
4016
  "schema": {
3414
4017
  "title": "apiKey",
3415
- "type": "query"
4018
+ "type": "string"
3416
4019
  }
3417
4020
  },
3418
4021
  {
3419
4022
  "name": "applicationKey",
3420
- "type": "query",
4023
+ "type": "string",
3421
4024
  "info": "Your Datadog application key",
3422
4025
  "required": true,
3423
4026
  "schema": {
3424
4027
  "title": "applicationKey",
3425
- "type": "query"
4028
+ "type": "string"
3426
4029
  }
3427
4030
  }
3428
4031
  ],
@@ -3451,22 +4054,22 @@
3451
4054
  "input": [
3452
4055
  {
3453
4056
  "name": "apiKey",
3454
- "type": "query",
4057
+ "type": "string",
3455
4058
  "info": "Your Datadog API key",
3456
4059
  "required": true,
3457
4060
  "schema": {
3458
4061
  "title": "apiKey",
3459
- "type": "query"
4062
+ "type": "string"
3460
4063
  }
3461
4064
  },
3462
4065
  {
3463
4066
  "name": "applicationKey",
3464
- "type": "query",
4067
+ "type": "string",
3465
4068
  "info": "Your Datadog application key",
3466
4069
  "required": true,
3467
4070
  "schema": {
3468
4071
  "title": "applicationKey",
3469
- "type": "query"
4072
+ "type": "string"
3470
4073
  }
3471
4074
  }
3472
4075
  ],
@@ -3505,22 +4108,22 @@
3505
4108
  },
3506
4109
  {
3507
4110
  "name": "apiKey",
3508
- "type": "query",
4111
+ "type": "string",
3509
4112
  "info": "Your Datadog API key",
3510
4113
  "required": true,
3511
4114
  "schema": {
3512
4115
  "title": "apiKey",
3513
- "type": "query"
4116
+ "type": "string"
3514
4117
  }
3515
4118
  },
3516
4119
  {
3517
4120
  "name": "applicationKey",
3518
- "type": "query",
4121
+ "type": "string",
3519
4122
  "info": "Your Datadog application key",
3520
4123
  "required": true,
3521
4124
  "schema": {
3522
4125
  "title": "applicationKey",
3523
- "type": "query"
4126
+ "type": "string"
3524
4127
  }
3525
4128
  }
3526
4129
  ],
@@ -3549,22 +4152,22 @@
3549
4152
  "input": [
3550
4153
  {
3551
4154
  "name": "apiKey",
3552
- "type": "query",
4155
+ "type": "string",
3553
4156
  "info": "Your Datadog API key",
3554
4157
  "required": true,
3555
4158
  "schema": {
3556
4159
  "title": "apiKey",
3557
- "type": "query"
4160
+ "type": "string"
3558
4161
  }
3559
4162
  },
3560
4163
  {
3561
4164
  "name": "applicationKey",
3562
- "type": "query",
4165
+ "type": "string",
3563
4166
  "info": "Your Datadog application key",
3564
4167
  "required": true,
3565
4168
  "schema": {
3566
4169
  "title": "applicationKey",
3567
- "type": "query"
4170
+ "type": "string"
3568
4171
  }
3569
4172
  }
3570
4173
  ],
@@ -3593,22 +4196,22 @@
3593
4196
  "input": [
3594
4197
  {
3595
4198
  "name": "apiKey",
3596
- "type": "query",
4199
+ "type": "string",
3597
4200
  "info": "",
3598
4201
  "required": true,
3599
4202
  "schema": {
3600
4203
  "title": "apiKey",
3601
- "type": "query"
4204
+ "type": "string"
3602
4205
  }
3603
4206
  },
3604
4207
  {
3605
4208
  "name": "applicationKey",
3606
- "type": "query",
4209
+ "type": "string",
3607
4210
  "info": "",
3608
4211
  "required": true,
3609
4212
  "schema": {
3610
4213
  "title": "applicationKey",
3611
- "type": "query"
4214
+ "type": "string"
3612
4215
  }
3613
4216
  }
3614
4217
  ],
@@ -3647,22 +4250,22 @@
3647
4250
  },
3648
4251
  {
3649
4252
  "name": "apiKey",
3650
- "type": "query",
4253
+ "type": "string",
3651
4254
  "info": "",
3652
4255
  "required": true,
3653
4256
  "schema": {
3654
4257
  "title": "apiKey",
3655
- "type": "query"
4258
+ "type": "string"
3656
4259
  }
3657
4260
  },
3658
4261
  {
3659
4262
  "name": "applicationKey",
3660
- "type": "query",
4263
+ "type": "string",
3661
4264
  "info": "",
3662
4265
  "required": true,
3663
4266
  "schema": {
3664
4267
  "title": "applicationKey",
3665
- "type": "query"
4268
+ "type": "string"
3666
4269
  }
3667
4270
  }
3668
4271
  ],
@@ -3691,22 +4294,22 @@
3691
4294
  "input": [
3692
4295
  {
3693
4296
  "name": "apiKey",
3694
- "type": "query",
4297
+ "type": "string",
3695
4298
  "info": "",
3696
4299
  "required": true,
3697
4300
  "schema": {
3698
4301
  "title": "apiKey",
3699
- "type": "query"
4302
+ "type": "string"
3700
4303
  }
3701
4304
  },
3702
4305
  {
3703
4306
  "name": "applicationKey",
3704
- "type": "query",
4307
+ "type": "string",
3705
4308
  "info": "",
3706
4309
  "required": true,
3707
4310
  "schema": {
3708
4311
  "title": "applicationKey",
3709
- "type": "query"
4312
+ "type": "string"
3710
4313
  }
3711
4314
  }
3712
4315
  ],
@@ -3745,22 +4348,22 @@
3745
4348
  },
3746
4349
  {
3747
4350
  "name": "apiKey",
3748
- "type": "query",
4351
+ "type": "string",
3749
4352
  "info": "",
3750
4353
  "required": true,
3751
4354
  "schema": {
3752
4355
  "title": "apiKey",
3753
- "type": "query"
4356
+ "type": "string"
3754
4357
  }
3755
4358
  },
3756
4359
  {
3757
4360
  "name": "applicationKey",
3758
- "type": "query",
4361
+ "type": "string",
3759
4362
  "info": "",
3760
4363
  "required": true,
3761
4364
  "schema": {
3762
4365
  "title": "applicationKey",
3763
- "type": "query"
4366
+ "type": "string"
3764
4367
  }
3765
4368
  }
3766
4369
  ],
@@ -3789,22 +4392,22 @@
3789
4392
  "input": [
3790
4393
  {
3791
4394
  "name": "apiKey",
3792
- "type": "query",
4395
+ "type": "string",
3793
4396
  "info": "Your Datadog API key",
3794
4397
  "required": true,
3795
4398
  "schema": {
3796
4399
  "title": "apiKey",
3797
- "type": "query"
4400
+ "type": "string"
3798
4401
  }
3799
4402
  },
3800
4403
  {
3801
4404
  "name": "applicationKey",
3802
- "type": "query",
4405
+ "type": "string",
3803
4406
  "info": "Your Datadog application key",
3804
4407
  "required": true,
3805
4408
  "schema": {
3806
4409
  "title": "applicationKey",
3807
- "type": "query"
4410
+ "type": "string"
3808
4411
  }
3809
4412
  }
3810
4413
  ],
@@ -3843,22 +4446,22 @@
3843
4446
  },
3844
4447
  {
3845
4448
  "name": "apiKey",
3846
- "type": "query",
4449
+ "type": "string",
3847
4450
  "info": "Your Datadog API key",
3848
4451
  "required": true,
3849
4452
  "schema": {
3850
4453
  "title": "apiKey",
3851
- "type": "query"
4454
+ "type": "string"
3852
4455
  }
3853
4456
  },
3854
4457
  {
3855
4458
  "name": "applicationKey",
3856
- "type": "query",
4459
+ "type": "string",
3857
4460
  "info": "Your Datadog application key",
3858
4461
  "required": true,
3859
4462
  "schema": {
3860
4463
  "title": "applicationKey",
3861
- "type": "query"
4464
+ "type": "string"
3862
4465
  }
3863
4466
  }
3864
4467
  ],
@@ -3887,22 +4490,22 @@
3887
4490
  "input": [
3888
4491
  {
3889
4492
  "name": "apiKey",
3890
- "type": "query",
4493
+ "type": "string",
3891
4494
  "info": "Your Datadog API key",
3892
4495
  "required": true,
3893
4496
  "schema": {
3894
4497
  "title": "apiKey",
3895
- "type": "query"
4498
+ "type": "string"
3896
4499
  }
3897
4500
  },
3898
4501
  {
3899
4502
  "name": "applicationKey",
3900
- "type": "query",
4503
+ "type": "string",
3901
4504
  "info": "Your Datadog application key",
3902
4505
  "required": true,
3903
4506
  "schema": {
3904
4507
  "title": "applicationKey",
3905
- "type": "query"
4508
+ "type": "string"
3906
4509
  }
3907
4510
  }
3908
4511
  ],
@@ -3941,22 +4544,22 @@
3941
4544
  },
3942
4545
  {
3943
4546
  "name": "apiKey",
3944
- "type": "query",
4547
+ "type": "string",
3945
4548
  "info": "Your Datadog API key",
3946
4549
  "required": true,
3947
4550
  "schema": {
3948
4551
  "title": "apiKey",
3949
- "type": "query"
4552
+ "type": "string"
3950
4553
  }
3951
4554
  },
3952
4555
  {
3953
4556
  "name": "applicationKey",
3954
- "type": "query",
4557
+ "type": "string",
3955
4558
  "info": "Your Datadog application key",
3956
4559
  "required": true,
3957
4560
  "schema": {
3958
4561
  "title": "applicationKey",
3959
- "type": "query"
4562
+ "type": "string"
3960
4563
  }
3961
4564
  }
3962
4565
  ],
@@ -3985,22 +4588,22 @@
3985
4588
  "input": [
3986
4589
  {
3987
4590
  "name": "apiKey",
3988
- "type": "query",
4591
+ "type": "string",
3989
4592
  "info": "Your Datadog API key",
3990
4593
  "required": true,
3991
4594
  "schema": {
3992
4595
  "title": "apiKey",
3993
- "type": "query"
4596
+ "type": "string"
3994
4597
  }
3995
4598
  },
3996
4599
  {
3997
4600
  "name": "applicationKey",
3998
- "type": "query",
4601
+ "type": "string",
3999
4602
  "info": "Your Datadog application key",
4000
4603
  "required": true,
4001
4604
  "schema": {
4002
4605
  "title": "applicationKey",
4003
- "type": "query"
4606
+ "type": "string"
4004
4607
  }
4005
4608
  }
4006
4609
  ],
@@ -4029,22 +4632,22 @@
4029
4632
  "input": [
4030
4633
  {
4031
4634
  "name": "apiKey",
4032
- "type": "query",
4635
+ "type": "string",
4033
4636
  "info": "",
4034
4637
  "required": true,
4035
4638
  "schema": {
4036
4639
  "title": "apiKey",
4037
- "type": "query"
4640
+ "type": "string"
4038
4641
  }
4039
4642
  },
4040
4643
  {
4041
4644
  "name": "applicationKey",
4042
- "type": "query",
4645
+ "type": "string",
4043
4646
  "info": "",
4044
4647
  "required": true,
4045
4648
  "schema": {
4046
4649
  "title": "applicationKey",
4047
- "type": "query"
4650
+ "type": "string"
4048
4651
  }
4049
4652
  }
4050
4653
  ],
@@ -4083,22 +4686,22 @@
4083
4686
  },
4084
4687
  {
4085
4688
  "name": "apiKey",
4086
- "type": "query",
4689
+ "type": "string",
4087
4690
  "info": "",
4088
4691
  "required": true,
4089
4692
  "schema": {
4090
4693
  "title": "apiKey",
4091
- "type": "query"
4694
+ "type": "string"
4092
4695
  }
4093
4696
  },
4094
4697
  {
4095
4698
  "name": "applicationKey",
4096
- "type": "query",
4699
+ "type": "string",
4097
4700
  "info": "",
4098
4701
  "required": true,
4099
4702
  "schema": {
4100
4703
  "title": "applicationKey",
4101
- "type": "query"
4704
+ "type": "string"
4102
4705
  }
4103
4706
  }
4104
4707
  ],
@@ -4127,22 +4730,22 @@
4127
4730
  "input": [
4128
4731
  {
4129
4732
  "name": "apiKey",
4130
- "type": "query",
4733
+ "type": "string",
4131
4734
  "info": "",
4132
4735
  "required": true,
4133
4736
  "schema": {
4134
4737
  "title": "apiKey",
4135
- "type": "query"
4738
+ "type": "string"
4136
4739
  }
4137
4740
  },
4138
4741
  {
4139
4742
  "name": "applicationKey",
4140
- "type": "query",
4743
+ "type": "string",
4141
4744
  "info": "",
4142
4745
  "required": true,
4143
4746
  "schema": {
4144
4747
  "title": "applicationKey",
4145
- "type": "query"
4748
+ "type": "string"
4146
4749
  }
4147
4750
  }
4148
4751
  ],
@@ -4181,22 +4784,22 @@
4181
4784
  },
4182
4785
  {
4183
4786
  "name": "apiKey",
4184
- "type": "query",
4787
+ "type": "string",
4185
4788
  "info": "",
4186
4789
  "required": true,
4187
4790
  "schema": {
4188
4791
  "title": "apiKey",
4189
- "type": "query"
4792
+ "type": "string"
4190
4793
  }
4191
4794
  },
4192
4795
  {
4193
4796
  "name": "applicationKey",
4194
- "type": "query",
4797
+ "type": "string",
4195
4798
  "info": "",
4196
4799
  "required": true,
4197
4800
  "schema": {
4198
4801
  "title": "applicationKey",
4199
- "type": "query"
4802
+ "type": "string"
4200
4803
  }
4201
4804
  }
4202
4805
  ],
@@ -4225,22 +4828,22 @@
4225
4828
  "input": [
4226
4829
  {
4227
4830
  "name": "apiKey",
4228
- "type": "query",
4831
+ "type": "string",
4229
4832
  "info": "",
4230
4833
  "required": true,
4231
4834
  "schema": {
4232
4835
  "title": "apiKey",
4233
- "type": "query"
4836
+ "type": "string"
4234
4837
  }
4235
4838
  },
4236
4839
  {
4237
4840
  "name": "applicationKey",
4238
- "type": "query",
4841
+ "type": "string",
4239
4842
  "info": "",
4240
4843
  "required": true,
4241
4844
  "schema": {
4242
4845
  "title": "applicationKey",
4243
- "type": "query"
4846
+ "type": "string"
4244
4847
  }
4245
4848
  }
4246
4849
  ],
@@ -4279,42 +4882,42 @@
4279
4882
  },
4280
4883
  {
4281
4884
  "name": "ddsource",
4282
- "type": "query",
4885
+ "type": "string",
4283
4886
  "info": "Source to associate to your logs",
4284
4887
  "required": true,
4285
4888
  "schema": {
4286
4889
  "title": "ddsource",
4287
- "type": "query"
4890
+ "type": "string"
4288
4891
  }
4289
4892
  },
4290
4893
  {
4291
4894
  "name": "service",
4292
- "type": "query",
4895
+ "type": "string",
4293
4896
  "info": "Service that emitted the logs",
4294
4897
  "required": true,
4295
4898
  "schema": {
4296
4899
  "title": "service",
4297
- "type": "query"
4900
+ "type": "string"
4298
4901
  }
4299
4902
  },
4300
4903
  {
4301
4904
  "name": "hostname",
4302
- "type": "query",
4905
+ "type": "string",
4303
4906
  "info": "Host from which the log is sent.",
4304
4907
  "required": true,
4305
4908
  "schema": {
4306
4909
  "title": "hostname",
4307
- "type": "query"
4910
+ "type": "string"
4308
4911
  }
4309
4912
  },
4310
4913
  {
4311
4914
  "name": "datadogApiKey",
4312
- "type": "default",
4915
+ "type": "string",
4313
4916
  "info": "path parameter",
4314
4917
  "required": false,
4315
4918
  "schema": {
4316
4919
  "title": "datadogApiKey",
4317
- "type": "default"
4920
+ "type": "string"
4318
4921
  }
4319
4922
  }
4320
4923
  ],
@@ -4353,22 +4956,22 @@
4353
4956
  },
4354
4957
  {
4355
4958
  "name": "apiKey",
4356
- "type": "query",
4959
+ "type": "string",
4357
4960
  "info": "Your Datadog API key",
4358
4961
  "required": true,
4359
4962
  "schema": {
4360
4963
  "title": "apiKey",
4361
- "type": "query"
4964
+ "type": "string"
4362
4965
  }
4363
4966
  },
4364
4967
  {
4365
4968
  "name": "applicationKey",
4366
- "type": "query",
4969
+ "type": "string",
4367
4970
  "info": "Your Datadog application key",
4368
4971
  "required": true,
4369
4972
  "schema": {
4370
4973
  "title": "applicationKey",
4371
- "type": "query"
4974
+ "type": "string"
4372
4975
  }
4373
4976
  }
4374
4977
  ],
@@ -4397,42 +5000,42 @@
4397
5000
  "input": [
4398
5001
  {
4399
5002
  "name": "apiKey",
4400
- "type": "query",
5003
+ "type": "string",
4401
5004
  "info": "Your Datadog API key",
4402
5005
  "required": true,
4403
5006
  "schema": {
4404
5007
  "title": "apiKey",
4405
- "type": "query"
5008
+ "type": "string"
4406
5009
  }
4407
5010
  },
4408
5011
  {
4409
5012
  "name": "applicationKey",
4410
- "type": "query",
5013
+ "type": "string",
4411
5014
  "info": "Your Datadog application key",
4412
5015
  "required": true,
4413
5016
  "schema": {
4414
5017
  "title": "applicationKey",
4415
- "type": "query"
5018
+ "type": "string"
4416
5019
  }
4417
5020
  },
4418
5021
  {
4419
5022
  "name": "from",
4420
- "type": "query",
5023
+ "type": "string",
4421
5024
  "info": "EPOCH Timestamp from which to list metrics.",
4422
5025
  "required": true,
4423
5026
  "schema": {
4424
5027
  "title": "from",
4425
- "type": "query"
5028
+ "type": "string"
4426
5029
  }
4427
5030
  },
4428
5031
  {
4429
5032
  "name": "host",
4430
- "type": "query",
5033
+ "type": "string",
4431
5034
  "info": "Hostname for filtering the list of metrics returned. If set, metrics retrieved are those with the corresponding hostname tag.",
4432
5035
  "required": true,
4433
5036
  "schema": {
4434
5037
  "title": "host",
4435
- "type": "query"
5038
+ "type": "string"
4436
5039
  }
4437
5040
  }
4438
5041
  ],
@@ -4471,22 +5074,22 @@
4471
5074
  },
4472
5075
  {
4473
5076
  "name": "apiKey",
4474
- "type": "query",
5077
+ "type": "string",
4475
5078
  "info": "Your Datadog API key",
4476
5079
  "required": true,
4477
5080
  "schema": {
4478
5081
  "title": "apiKey",
4479
- "type": "query"
5082
+ "type": "string"
4480
5083
  }
4481
5084
  },
4482
5085
  {
4483
5086
  "name": "applicationKey",
4484
- "type": "query",
5087
+ "type": "string",
4485
5088
  "info": "Your Datadog application key",
4486
5089
  "required": true,
4487
5090
  "schema": {
4488
5091
  "title": "applicationKey",
4489
- "type": "query"
5092
+ "type": "string"
4490
5093
  }
4491
5094
  }
4492
5095
  ],
@@ -4515,52 +5118,52 @@
4515
5118
  "input": [
4516
5119
  {
4517
5120
  "name": "apiKey",
4518
- "type": "query",
5121
+ "type": "string",
4519
5122
  "info": "Your Datadog API key",
4520
5123
  "required": true,
4521
5124
  "schema": {
4522
5125
  "title": "apiKey",
4523
- "type": "query"
5126
+ "type": "string"
4524
5127
  }
4525
5128
  },
4526
5129
  {
4527
5130
  "name": "applicationKey",
4528
- "type": "query",
5131
+ "type": "string",
4529
5132
  "info": "Your Datadog application key",
4530
5133
  "required": true,
4531
5134
  "schema": {
4532
5135
  "title": "applicationKey",
4533
- "type": "query"
5136
+ "type": "string"
4534
5137
  }
4535
5138
  },
4536
5139
  {
4537
5140
  "name": "from",
4538
- "type": "query",
5141
+ "type": "string",
4539
5142
  "info": "EPOCH Timestamp from which to query metrics data.",
4540
5143
  "required": true,
4541
5144
  "schema": {
4542
5145
  "title": "from",
4543
- "type": "query"
5146
+ "type": "string"
4544
5147
  }
4545
5148
  },
4546
5149
  {
4547
5150
  "name": "to",
4548
- "type": "query",
5151
+ "type": "string",
4549
5152
  "info": "EPOCH Timestamp until which to query metrics data.",
4550
5153
  "required": true,
4551
5154
  "schema": {
4552
5155
  "title": "to",
4553
- "type": "query"
5156
+ "type": "string"
4554
5157
  }
4555
5158
  },
4556
5159
  {
4557
5160
  "name": "query",
4558
- "type": "query",
5161
+ "type": "string",
4559
5162
  "info": "Query string for the metric to retrieve",
4560
5163
  "required": true,
4561
5164
  "schema": {
4562
5165
  "title": "query",
4563
- "type": "query"
5166
+ "type": "string"
4564
5167
  }
4565
5168
  }
4566
5169
  ],
@@ -4589,22 +5192,22 @@
4589
5192
  "input": [
4590
5193
  {
4591
5194
  "name": "apiKey",
4592
- "type": "query",
5195
+ "type": "string",
4593
5196
  "info": "Your Datadog API key",
4594
5197
  "required": true,
4595
5198
  "schema": {
4596
5199
  "title": "apiKey",
4597
- "type": "query"
5200
+ "type": "string"
4598
5201
  }
4599
5202
  },
4600
5203
  {
4601
5204
  "name": "applicationKey",
4602
- "type": "query",
5205
+ "type": "string",
4603
5206
  "info": "Your Datadog application key",
4604
5207
  "required": true,
4605
5208
  "schema": {
4606
5209
  "title": "applicationKey",
4607
- "type": "query"
5210
+ "type": "string"
4608
5211
  }
4609
5212
  }
4610
5213
  ],
@@ -4643,22 +5246,22 @@
4643
5246
  },
4644
5247
  {
4645
5248
  "name": "apiKey",
4646
- "type": "query",
5249
+ "type": "string",
4647
5250
  "info": "Your Datadog API key",
4648
5251
  "required": true,
4649
5252
  "schema": {
4650
5253
  "title": "apiKey",
4651
- "type": "query"
5254
+ "type": "string"
4652
5255
  }
4653
5256
  },
4654
5257
  {
4655
5258
  "name": "applicationKey",
4656
- "type": "query",
5259
+ "type": "string",
4657
5260
  "info": "Your Datadog application key",
4658
5261
  "required": true,
4659
5262
  "schema": {
4660
5263
  "title": "applicationKey",
4661
- "type": "query"
5264
+ "type": "string"
4662
5265
  }
4663
5266
  }
4664
5267
  ],
@@ -4687,32 +5290,32 @@
4687
5290
  "input": [
4688
5291
  {
4689
5292
  "name": "q",
4690
- "type": "query",
5293
+ "type": "string",
4691
5294
  "info": "Name of the metric to search on",
4692
5295
  "required": true,
4693
5296
  "schema": {
4694
5297
  "title": "q",
4695
- "type": "query"
5298
+ "type": "string"
4696
5299
  }
4697
5300
  },
4698
5301
  {
4699
5302
  "name": "apiKey",
4700
- "type": "query",
5303
+ "type": "string",
4701
5304
  "info": "Your Datadog API key",
4702
5305
  "required": true,
4703
5306
  "schema": {
4704
5307
  "title": "apiKey",
4705
- "type": "query"
5308
+ "type": "string"
4706
5309
  }
4707
5310
  },
4708
5311
  {
4709
5312
  "name": "applicationKey",
4710
- "type": "query",
5313
+ "type": "string",
4711
5314
  "info": "Your Datadog application key",
4712
5315
  "required": true,
4713
5316
  "schema": {
4714
5317
  "title": "applicationKey",
4715
- "type": "query"
5318
+ "type": "string"
4716
5319
  }
4717
5320
  }
4718
5321
  ],
@@ -4751,22 +5354,22 @@
4751
5354
  },
4752
5355
  {
4753
5356
  "name": "apiKey",
4754
- "type": "query",
5357
+ "type": "string",
4755
5358
  "info": "Your Datadog API key",
4756
5359
  "required": true,
4757
5360
  "schema": {
4758
5361
  "title": "apiKey",
4759
- "type": "query"
5362
+ "type": "string"
4760
5363
  }
4761
5364
  },
4762
5365
  {
4763
5366
  "name": "applicationKey",
4764
- "type": "query",
5367
+ "type": "string",
4765
5368
  "info": "Your Datadog application key",
4766
5369
  "required": true,
4767
5370
  "schema": {
4768
5371
  "title": "applicationKey",
4769
- "type": "query"
5372
+ "type": "string"
4770
5373
  }
4771
5374
  }
4772
5375
  ],
@@ -4795,32 +5398,32 @@
4795
5398
  "input": [
4796
5399
  {
4797
5400
  "name": "apiKey",
4798
- "type": "query",
5401
+ "type": "string",
4799
5402
  "info": "Your Datadog API key",
4800
5403
  "required": true,
4801
5404
  "schema": {
4802
5405
  "title": "apiKey",
4803
- "type": "query"
5406
+ "type": "string"
4804
5407
  }
4805
5408
  },
4806
5409
  {
4807
5410
  "name": "applicationKey",
4808
- "type": "query",
5411
+ "type": "string",
4809
5412
  "info": "Your Datadog application key",
4810
5413
  "required": true,
4811
5414
  "schema": {
4812
5415
  "title": "applicationKey",
4813
- "type": "query"
5416
+ "type": "string"
4814
5417
  }
4815
5418
  },
4816
5419
  {
4817
5420
  "name": "groupStates",
4818
- "type": "query",
5421
+ "type": "string",
4819
5422
  "info": "Includes additional information if available",
4820
5423
  "required": true,
4821
5424
  "schema": {
4822
5425
  "title": "groupStates",
4823
- "type": "query"
5426
+ "type": "string"
4824
5427
  }
4825
5428
  }
4826
5429
  ],
@@ -4859,22 +5462,22 @@
4859
5462
  },
4860
5463
  {
4861
5464
  "name": "apiKey",
4862
- "type": "query",
5465
+ "type": "string",
4863
5466
  "info": "Your Datadog API key",
4864
5467
  "required": true,
4865
5468
  "schema": {
4866
5469
  "title": "apiKey",
4867
- "type": "query"
5470
+ "type": "string"
4868
5471
  }
4869
5472
  },
4870
5473
  {
4871
5474
  "name": "applicationKey",
4872
- "type": "query",
5475
+ "type": "string",
4873
5476
  "info": "Your Datadog application key",
4874
5477
  "required": true,
4875
5478
  "schema": {
4876
5479
  "title": "applicationKey",
4877
- "type": "query"
5480
+ "type": "string"
4878
5481
  }
4879
5482
  }
4880
5483
  ],
@@ -4903,22 +5506,22 @@
4903
5506
  "input": [
4904
5507
  {
4905
5508
  "name": "apiKey",
4906
- "type": "query",
5509
+ "type": "string",
4907
5510
  "info": "Your Datadog API key",
4908
5511
  "required": true,
4909
5512
  "schema": {
4910
5513
  "title": "apiKey",
4911
- "type": "query"
5514
+ "type": "string"
4912
5515
  }
4913
5516
  },
4914
5517
  {
4915
5518
  "name": "applicationKey",
4916
- "type": "query",
5519
+ "type": "string",
4917
5520
  "info": "Your Datadog application key",
4918
5521
  "required": true,
4919
5522
  "schema": {
4920
5523
  "title": "applicationKey",
4921
- "type": "query"
5524
+ "type": "string"
4922
5525
  }
4923
5526
  }
4924
5527
  ],
@@ -4957,22 +5560,22 @@
4957
5560
  },
4958
5561
  {
4959
5562
  "name": "apiKey",
4960
- "type": "query",
5563
+ "type": "string",
4961
5564
  "info": "Your Datadog API key",
4962
5565
  "required": true,
4963
5566
  "schema": {
4964
5567
  "title": "apiKey",
4965
- "type": "query"
5568
+ "type": "string"
4966
5569
  }
4967
5570
  },
4968
5571
  {
4969
5572
  "name": "applicationKey",
4970
- "type": "query",
5573
+ "type": "string",
4971
5574
  "info": "Your Datadog application key",
4972
5575
  "required": true,
4973
5576
  "schema": {
4974
5577
  "title": "applicationKey",
4975
- "type": "query"
5578
+ "type": "string"
4976
5579
  }
4977
5580
  }
4978
5581
  ],
@@ -5011,22 +5614,22 @@
5011
5614
  },
5012
5615
  {
5013
5616
  "name": "apiKey",
5014
- "type": "query",
5617
+ "type": "string",
5015
5618
  "info": "Your Datadog API key",
5016
5619
  "required": true,
5017
5620
  "schema": {
5018
5621
  "title": "apiKey",
5019
- "type": "query"
5622
+ "type": "string"
5020
5623
  }
5021
5624
  },
5022
5625
  {
5023
5626
  "name": "applicationKey",
5024
- "type": "query",
5627
+ "type": "string",
5025
5628
  "info": "Your Datadog application key",
5026
5629
  "required": true,
5027
5630
  "schema": {
5028
5631
  "title": "applicationKey",
5029
- "type": "query"
5632
+ "type": "string"
5030
5633
  }
5031
5634
  }
5032
5635
  ],
@@ -5065,22 +5668,22 @@
5065
5668
  },
5066
5669
  {
5067
5670
  "name": "apiKey",
5068
- "type": "query",
5671
+ "type": "string",
5069
5672
  "info": "Your Datadog API key",
5070
5673
  "required": true,
5071
5674
  "schema": {
5072
5675
  "title": "apiKey",
5073
- "type": "query"
5676
+ "type": "string"
5074
5677
  }
5075
5678
  },
5076
5679
  {
5077
5680
  "name": "applicationKey",
5078
- "type": "query",
5681
+ "type": "string",
5079
5682
  "info": "Your Datadog application key",
5080
5683
  "required": true,
5081
5684
  "schema": {
5082
5685
  "title": "applicationKey",
5083
- "type": "query"
5686
+ "type": "string"
5084
5687
  }
5085
5688
  }
5086
5689
  ],
@@ -5119,22 +5722,22 @@
5119
5722
  },
5120
5723
  {
5121
5724
  "name": "apiKey",
5122
- "type": "query",
5725
+ "type": "string",
5123
5726
  "info": "",
5124
5727
  "required": true,
5125
5728
  "schema": {
5126
5729
  "title": "apiKey",
5127
- "type": "query"
5730
+ "type": "string"
5128
5731
  }
5129
5732
  },
5130
5733
  {
5131
5734
  "name": "applicationKey",
5132
- "type": "query",
5735
+ "type": "string",
5133
5736
  "info": "",
5134
5737
  "required": true,
5135
5738
  "schema": {
5136
5739
  "title": "applicationKey",
5137
- "type": "query"
5740
+ "type": "string"
5138
5741
  }
5139
5742
  }
5140
5743
  ],
@@ -5173,22 +5776,22 @@
5173
5776
  },
5174
5777
  {
5175
5778
  "name": "apiKey",
5176
- "type": "query",
5779
+ "type": "string",
5177
5780
  "info": "Your Datadog API key",
5178
5781
  "required": true,
5179
5782
  "schema": {
5180
5783
  "title": "apiKey",
5181
- "type": "query"
5784
+ "type": "string"
5182
5785
  }
5183
5786
  },
5184
5787
  {
5185
5788
  "name": "applicationKey",
5186
- "type": "query",
5789
+ "type": "string",
5187
5790
  "info": "Your Datadog application key",
5188
5791
  "required": true,
5189
5792
  "schema": {
5190
5793
  "title": "applicationKey",
5191
- "type": "query"
5794
+ "type": "string"
5192
5795
  }
5193
5796
  }
5194
5797
  ],
@@ -5227,22 +5830,22 @@
5227
5830
  },
5228
5831
  {
5229
5832
  "name": "apiKey",
5230
- "type": "query",
5833
+ "type": "string",
5231
5834
  "info": "",
5232
5835
  "required": true,
5233
5836
  "schema": {
5234
5837
  "title": "apiKey",
5235
- "type": "query"
5838
+ "type": "string"
5236
5839
  }
5237
5840
  },
5238
5841
  {
5239
5842
  "name": "applicationKey",
5240
- "type": "query",
5843
+ "type": "string",
5241
5844
  "info": "",
5242
5845
  "required": true,
5243
5846
  "schema": {
5244
5847
  "title": "applicationKey",
5245
- "type": "query"
5848
+ "type": "string"
5246
5849
  }
5247
5850
  }
5248
5851
  ],
@@ -5271,62 +5874,62 @@
5271
5874
  "input": [
5272
5875
  {
5273
5876
  "name": "apiKey",
5274
- "type": "query",
5877
+ "type": "string",
5275
5878
  "info": "Your Datadog API key",
5276
5879
  "required": true,
5277
5880
  "schema": {
5278
5881
  "title": "apiKey",
5279
- "type": "query"
5882
+ "type": "string"
5280
5883
  }
5281
5884
  },
5282
5885
  {
5283
5886
  "name": "applicationKey",
5284
- "type": "query",
5887
+ "type": "string",
5285
5888
  "info": "Your Datadog application key",
5286
5889
  "required": true,
5287
5890
  "schema": {
5288
5891
  "title": "applicationKey",
5289
- "type": "query"
5892
+ "type": "string"
5290
5893
  }
5291
5894
  },
5292
5895
  {
5293
5896
  "name": "query",
5294
- "type": "query",
5897
+ "type": "string",
5295
5898
  "info": "Query to filter your monitors",
5296
5899
  "required": true,
5297
5900
  "schema": {
5298
5901
  "title": "query",
5299
- "type": "query"
5902
+ "type": "string"
5300
5903
  }
5301
5904
  },
5302
5905
  {
5303
5906
  "name": "page",
5304
- "type": "query",
5907
+ "type": "number",
5305
5908
  "info": "Page to start paginating from.",
5306
5909
  "required": true,
5307
5910
  "schema": {
5308
5911
  "title": "page",
5309
- "type": "query"
5912
+ "type": "number"
5310
5913
  }
5311
5914
  },
5312
5915
  {
5313
5916
  "name": "perPage",
5314
- "type": "query",
5917
+ "type": "number",
5315
5918
  "info": "Number of monitors to return per page.",
5316
5919
  "required": true,
5317
5920
  "schema": {
5318
5921
  "title": "perPage",
5319
- "type": "query"
5922
+ "type": "number"
5320
5923
  }
5321
5924
  },
5322
5925
  {
5323
5926
  "name": "sort",
5324
- "type": "query",
5927
+ "type": "string",
5325
5928
  "info": "Comma separated string for sort order (e.g. name,asc) supported fields:\n\nname\nstatus\ntags",
5326
5929
  "required": true,
5327
5930
  "schema": {
5328
5931
  "title": "sort",
5329
- "type": "query"
5932
+ "type": "string"
5330
5933
  }
5331
5934
  }
5332
5935
  ],
@@ -5355,62 +5958,62 @@
5355
5958
  "input": [
5356
5959
  {
5357
5960
  "name": "apiKey",
5358
- "type": "query",
5961
+ "type": "string",
5359
5962
  "info": "Your Datadog API key",
5360
5963
  "required": true,
5361
5964
  "schema": {
5362
5965
  "title": "apiKey",
5363
- "type": "query"
5966
+ "type": "string"
5364
5967
  }
5365
5968
  },
5366
5969
  {
5367
5970
  "name": "applicationKey",
5368
- "type": "query",
5971
+ "type": "string",
5369
5972
  "info": "Your Datadog application key",
5370
5973
  "required": true,
5371
5974
  "schema": {
5372
5975
  "title": "applicationKey",
5373
- "type": "query"
5976
+ "type": "string"
5374
5977
  }
5375
5978
  },
5376
5979
  {
5377
5980
  "name": "query",
5378
- "type": "query",
5981
+ "type": "string",
5379
5982
  "info": "After entering a search query in your Manage Monitor page use the query parameter value in the URL of the page as value for this parameter. Consult the dedicated manage m...(description truncated)",
5380
5983
  "required": true,
5381
5984
  "schema": {
5382
5985
  "title": "query",
5383
- "type": "query"
5986
+ "type": "string"
5384
5987
  }
5385
5988
  },
5386
5989
  {
5387
5990
  "name": "page",
5388
- "type": "query",
5991
+ "type": "number",
5389
5992
  "info": "Page to start paginating from.",
5390
5993
  "required": true,
5391
5994
  "schema": {
5392
5995
  "title": "page",
5393
- "type": "query"
5996
+ "type": "number"
5394
5997
  }
5395
5998
  },
5396
5999
  {
5397
6000
  "name": "perPage",
5398
- "type": "query",
6001
+ "type": "number",
5399
6002
  "info": "Number of monitors to return per page.",
5400
6003
  "required": true,
5401
6004
  "schema": {
5402
6005
  "title": "perPage",
5403
- "type": "query"
6006
+ "type": "number"
5404
6007
  }
5405
6008
  },
5406
6009
  {
5407
6010
  "name": "sort",
5408
- "type": "query",
6011
+ "type": "string",
5409
6012
  "info": "Comma separated string for sort order (e.g. name,asc) supported fields:\n\nname\nstatus\ntags",
5410
6013
  "required": true,
5411
6014
  "schema": {
5412
6015
  "title": "sort",
5413
- "type": "query"
6016
+ "type": "string"
5414
6017
  }
5415
6018
  }
5416
6019
  ],
@@ -5449,22 +6052,22 @@
5449
6052
  },
5450
6053
  {
5451
6054
  "name": "apiKey",
5452
- "type": "query",
6055
+ "type": "string",
5453
6056
  "info": "Your Datadog API key",
5454
6057
  "required": true,
5455
6058
  "schema": {
5456
6059
  "title": "apiKey",
5457
- "type": "query"
6060
+ "type": "string"
5458
6061
  }
5459
6062
  },
5460
6063
  {
5461
6064
  "name": "applicationKey",
5462
- "type": "query",
6065
+ "type": "string",
5463
6066
  "info": "Your Datadog application key",
5464
6067
  "required": true,
5465
6068
  "schema": {
5466
6069
  "title": "applicationKey",
5467
- "type": "query"
6070
+ "type": "string"
5468
6071
  }
5469
6072
  }
5470
6073
  ],
@@ -5493,22 +6096,22 @@
5493
6096
  "input": [
5494
6097
  {
5495
6098
  "name": "apiKey",
5496
- "type": "query",
6099
+ "type": "string",
5497
6100
  "info": "Your Datadog API key",
5498
6101
  "required": true,
5499
6102
  "schema": {
5500
6103
  "title": "apiKey",
5501
- "type": "query"
6104
+ "type": "string"
5502
6105
  }
5503
6106
  },
5504
6107
  {
5505
6108
  "name": "applicationKey",
5506
- "type": "query",
6109
+ "type": "string",
5507
6110
  "info": "Your Datadog application key",
5508
6111
  "required": true,
5509
6112
  "schema": {
5510
6113
  "title": "applicationKey",
5511
- "type": "query"
6114
+ "type": "string"
5512
6115
  }
5513
6116
  }
5514
6117
  ],
@@ -5537,22 +6140,22 @@
5537
6140
  "input": [
5538
6141
  {
5539
6142
  "name": "apiKey",
5540
- "type": "query",
6143
+ "type": "string",
5541
6144
  "info": "Your Datadog API key",
5542
6145
  "required": true,
5543
6146
  "schema": {
5544
6147
  "title": "apiKey",
5545
- "type": "query"
6148
+ "type": "string"
5546
6149
  }
5547
6150
  },
5548
6151
  {
5549
6152
  "name": "applicationKey",
5550
- "type": "query",
6153
+ "type": "string",
5551
6154
  "info": "Your Datadog application key",
5552
6155
  "required": true,
5553
6156
  "schema": {
5554
6157
  "title": "applicationKey",
5555
- "type": "query"
6158
+ "type": "string"
5556
6159
  }
5557
6160
  }
5558
6161
  ],
@@ -5591,22 +6194,22 @@
5591
6194
  },
5592
6195
  {
5593
6196
  "name": "apiKey",
5594
- "type": "query",
6197
+ "type": "string",
5595
6198
  "info": "Your Datadog API key",
5596
6199
  "required": true,
5597
6200
  "schema": {
5598
6201
  "title": "apiKey",
5599
- "type": "query"
6202
+ "type": "string"
5600
6203
  }
5601
6204
  },
5602
6205
  {
5603
6206
  "name": "applicationKey",
5604
- "type": "query",
6207
+ "type": "string",
5605
6208
  "info": "Your Datadog application key",
5606
6209
  "required": true,
5607
6210
  "schema": {
5608
6211
  "title": "applicationKey",
5609
- "type": "query"
6212
+ "type": "string"
5610
6213
  }
5611
6214
  }
5612
6215
  ],
@@ -5645,22 +6248,22 @@
5645
6248
  },
5646
6249
  {
5647
6250
  "name": "apiKey",
5648
- "type": "query",
6251
+ "type": "string",
5649
6252
  "info": "Your Datadog API key",
5650
6253
  "required": true,
5651
6254
  "schema": {
5652
6255
  "title": "apiKey",
5653
- "type": "query"
6256
+ "type": "string"
5654
6257
  }
5655
6258
  },
5656
6259
  {
5657
6260
  "name": "applicationKey",
5658
- "type": "query",
6261
+ "type": "string",
5659
6262
  "info": "Your Datadog application key",
5660
6263
  "required": true,
5661
6264
  "schema": {
5662
6265
  "title": "applicationKey",
5663
- "type": "query"
6266
+ "type": "string"
5664
6267
  }
5665
6268
  }
5666
6269
  ],
@@ -5699,22 +6302,22 @@
5699
6302
  },
5700
6303
  {
5701
6304
  "name": "apiKey",
5702
- "type": "query",
6305
+ "type": "string",
5703
6306
  "info": "Your Datadog API key",
5704
6307
  "required": true,
5705
6308
  "schema": {
5706
6309
  "title": "apiKey",
5707
- "type": "query"
6310
+ "type": "string"
5708
6311
  }
5709
6312
  },
5710
6313
  {
5711
6314
  "name": "applicationKey",
5712
- "type": "query",
6315
+ "type": "string",
5713
6316
  "info": "Your Datadog application key",
5714
6317
  "required": true,
5715
6318
  "schema": {
5716
6319
  "title": "applicationKey",
5717
- "type": "query"
6320
+ "type": "string"
5718
6321
  }
5719
6322
  }
5720
6323
  ],
@@ -5743,22 +6346,22 @@
5743
6346
  "input": [
5744
6347
  {
5745
6348
  "name": "apiKey",
5746
- "type": "query",
6349
+ "type": "string",
5747
6350
  "info": "Your Datadog API key",
5748
6351
  "required": true,
5749
6352
  "schema": {
5750
6353
  "title": "apiKey",
5751
- "type": "query"
6354
+ "type": "string"
5752
6355
  }
5753
6356
  },
5754
6357
  {
5755
6358
  "name": "applicationKey",
5756
- "type": "query",
6359
+ "type": "string",
5757
6360
  "info": "Your Datadog application key",
5758
6361
  "required": true,
5759
6362
  "schema": {
5760
6363
  "title": "applicationKey",
5761
- "type": "query"
6364
+ "type": "string"
5762
6365
  }
5763
6366
  }
5764
6367
  ],
@@ -5797,22 +6400,22 @@
5797
6400
  },
5798
6401
  {
5799
6402
  "name": "apiKey",
5800
- "type": "query",
6403
+ "type": "string",
5801
6404
  "info": "Your Datadog API key",
5802
6405
  "required": true,
5803
6406
  "schema": {
5804
6407
  "title": "apiKey",
5805
- "type": "query"
6408
+ "type": "string"
5806
6409
  }
5807
6410
  },
5808
6411
  {
5809
6412
  "name": "applicationKey",
5810
- "type": "query",
6413
+ "type": "string",
5811
6414
  "info": "Your Datadog application key",
5812
6415
  "required": true,
5813
6416
  "schema": {
5814
6417
  "title": "applicationKey",
5815
- "type": "query"
6418
+ "type": "string"
5816
6419
  }
5817
6420
  }
5818
6421
  ],
@@ -5851,22 +6454,22 @@
5851
6454
  },
5852
6455
  {
5853
6456
  "name": "apiKey",
5854
- "type": "query",
6457
+ "type": "string",
5855
6458
  "info": "Your Datadog API key",
5856
6459
  "required": true,
5857
6460
  "schema": {
5858
6461
  "title": "apiKey",
5859
- "type": "query"
6462
+ "type": "string"
5860
6463
  }
5861
6464
  },
5862
6465
  {
5863
6466
  "name": "applicationKey",
5864
- "type": "query",
6467
+ "type": "string",
5865
6468
  "info": "Your Datadog application key",
5866
6469
  "required": true,
5867
6470
  "schema": {
5868
6471
  "title": "applicationKey",
5869
- "type": "query"
6472
+ "type": "string"
5870
6473
  }
5871
6474
  }
5872
6475
  ],
@@ -5905,22 +6508,22 @@
5905
6508
  },
5906
6509
  {
5907
6510
  "name": "apiKey",
5908
- "type": "query",
6511
+ "type": "string",
5909
6512
  "info": "Your Datadog API key",
5910
6513
  "required": true,
5911
6514
  "schema": {
5912
6515
  "title": "apiKey",
5913
- "type": "query"
6516
+ "type": "string"
5914
6517
  }
5915
6518
  },
5916
6519
  {
5917
6520
  "name": "applicationKey",
5918
- "type": "query",
6521
+ "type": "string",
5919
6522
  "info": "Your Datadog application key",
5920
6523
  "required": true,
5921
6524
  "schema": {
5922
6525
  "title": "applicationKey",
5923
- "type": "query"
6526
+ "type": "string"
5924
6527
  }
5925
6528
  }
5926
6529
  ],
@@ -5949,22 +6552,22 @@
5949
6552
  "input": [
5950
6553
  {
5951
6554
  "name": "apiKey",
5952
- "type": "query",
6555
+ "type": "string",
5953
6556
  "info": "Your Datadog API key",
5954
6557
  "required": true,
5955
6558
  "schema": {
5956
6559
  "title": "apiKey",
5957
- "type": "query"
6560
+ "type": "string"
5958
6561
  }
5959
6562
  },
5960
6563
  {
5961
6564
  "name": "applicationKey",
5962
- "type": "query",
6565
+ "type": "string",
5963
6566
  "info": "Your Datadog application key",
5964
6567
  "required": true,
5965
6568
  "schema": {
5966
6569
  "title": "applicationKey",
5967
- "type": "query"
6570
+ "type": "string"
5968
6571
  }
5969
6572
  }
5970
6573
  ],
@@ -5993,22 +6596,22 @@
5993
6596
  "input": [
5994
6597
  {
5995
6598
  "name": "apiKey",
5996
- "type": "query",
6599
+ "type": "string",
5997
6600
  "info": "Your Datadog API key",
5998
6601
  "required": true,
5999
6602
  "schema": {
6000
6603
  "title": "apiKey",
6001
- "type": "query"
6604
+ "type": "string"
6002
6605
  }
6003
6606
  },
6004
6607
  {
6005
6608
  "name": "applicationKey",
6006
- "type": "query",
6609
+ "type": "string",
6007
6610
  "info": "Your Datadog application key",
6008
6611
  "required": true,
6009
6612
  "schema": {
6010
6613
  "title": "applicationKey",
6011
- "type": "query"
6614
+ "type": "string"
6012
6615
  }
6013
6616
  }
6014
6617
  ],
@@ -6037,22 +6640,22 @@
6037
6640
  "input": [
6038
6641
  {
6039
6642
  "name": "apiKey",
6040
- "type": "query",
6643
+ "type": "string",
6041
6644
  "info": "Your Datadog API key",
6042
6645
  "required": true,
6043
6646
  "schema": {
6044
6647
  "title": "apiKey",
6045
- "type": "query"
6648
+ "type": "string"
6046
6649
  }
6047
6650
  },
6048
6651
  {
6049
6652
  "name": "applicationKey",
6050
- "type": "query",
6653
+ "type": "string",
6051
6654
  "info": "Your Datadog application key",
6052
6655
  "required": true,
6053
6656
  "schema": {
6054
6657
  "title": "applicationKey",
6055
- "type": "query"
6658
+ "type": "string"
6056
6659
  }
6057
6660
  }
6058
6661
  ],
@@ -6081,22 +6684,22 @@
6081
6684
  "input": [
6082
6685
  {
6083
6686
  "name": "apiKey",
6084
- "type": "query",
6687
+ "type": "string",
6085
6688
  "info": "",
6086
6689
  "required": true,
6087
6690
  "schema": {
6088
6691
  "title": "apiKey",
6089
- "type": "query"
6692
+ "type": "string"
6090
6693
  }
6091
6694
  },
6092
6695
  {
6093
6696
  "name": "applicationKey",
6094
- "type": "query",
6697
+ "type": "string",
6095
6698
  "info": "",
6096
6699
  "required": true,
6097
6700
  "schema": {
6098
6701
  "title": "applicationKey",
6099
- "type": "query"
6702
+ "type": "string"
6100
6703
  }
6101
6704
  }
6102
6705
  ],
@@ -6125,22 +6728,22 @@
6125
6728
  "input": [
6126
6729
  {
6127
6730
  "name": "apiKey",
6128
- "type": "query",
6731
+ "type": "string",
6129
6732
  "info": "Your Datadog API key",
6130
6733
  "required": true,
6131
6734
  "schema": {
6132
6735
  "title": "apiKey",
6133
- "type": "query"
6736
+ "type": "string"
6134
6737
  }
6135
6738
  },
6136
6739
  {
6137
6740
  "name": "applicationKey",
6138
- "type": "query",
6741
+ "type": "string",
6139
6742
  "info": "Your Datadog application key",
6140
6743
  "required": true,
6141
6744
  "schema": {
6142
6745
  "title": "applicationKey",
6143
- "type": "query"
6746
+ "type": "string"
6144
6747
  }
6145
6748
  }
6146
6749
  ],
@@ -6169,22 +6772,22 @@
6169
6772
  "input": [
6170
6773
  {
6171
6774
  "name": "apiKey",
6172
- "type": "query",
6775
+ "type": "string",
6173
6776
  "info": "Your Datadog API key",
6174
6777
  "required": true,
6175
6778
  "schema": {
6176
6779
  "title": "apiKey",
6177
- "type": "query"
6780
+ "type": "string"
6178
6781
  }
6179
6782
  },
6180
6783
  {
6181
6784
  "name": "applicationKey",
6182
- "type": "query",
6785
+ "type": "string",
6183
6786
  "info": "Your Datadog application key",
6184
6787
  "required": true,
6185
6788
  "schema": {
6186
6789
  "title": "applicationKey",
6187
- "type": "query"
6790
+ "type": "string"
6188
6791
  }
6189
6792
  }
6190
6793
  ],
@@ -6213,22 +6816,22 @@
6213
6816
  "input": [
6214
6817
  {
6215
6818
  "name": "apiKey",
6216
- "type": "query",
6819
+ "type": "string",
6217
6820
  "info": "Your Datadog API key",
6218
6821
  "required": true,
6219
6822
  "schema": {
6220
6823
  "title": "apiKey",
6221
- "type": "query"
6824
+ "type": "string"
6222
6825
  }
6223
6826
  },
6224
6827
  {
6225
6828
  "name": "applicationKey",
6226
- "type": "query",
6829
+ "type": "string",
6227
6830
  "info": "Your Datadog application key",
6228
6831
  "required": true,
6229
6832
  "schema": {
6230
6833
  "title": "applicationKey",
6231
- "type": "query"
6834
+ "type": "string"
6232
6835
  }
6233
6836
  }
6234
6837
  ],
@@ -6267,22 +6870,22 @@
6267
6870
  },
6268
6871
  {
6269
6872
  "name": "apiKey",
6270
- "type": "query",
6873
+ "type": "string",
6271
6874
  "info": "Your Datadog API key",
6272
6875
  "required": true,
6273
6876
  "schema": {
6274
6877
  "title": "apiKey",
6275
- "type": "query"
6878
+ "type": "string"
6276
6879
  }
6277
6880
  },
6278
6881
  {
6279
6882
  "name": "applicationKey",
6280
- "type": "query",
6883
+ "type": "string",
6281
6884
  "info": "Your Datadog application key",
6282
6885
  "required": true,
6283
6886
  "schema": {
6284
6887
  "title": "applicationKey",
6285
- "type": "query"
6888
+ "type": "string"
6286
6889
  }
6287
6890
  }
6288
6891
  ],
@@ -6321,22 +6924,22 @@
6321
6924
  },
6322
6925
  {
6323
6926
  "name": "apiKey",
6324
- "type": "query",
6927
+ "type": "string",
6325
6928
  "info": "Your Datadog API key",
6326
6929
  "required": true,
6327
6930
  "schema": {
6328
6931
  "title": "apiKey",
6329
- "type": "query"
6932
+ "type": "string"
6330
6933
  }
6331
6934
  },
6332
6935
  {
6333
6936
  "name": "applicationKey",
6334
- "type": "query",
6937
+ "type": "string",
6335
6938
  "info": "Your Datadog application key",
6336
6939
  "required": true,
6337
6940
  "schema": {
6338
6941
  "title": "applicationKey",
6339
- "type": "query"
6942
+ "type": "string"
6340
6943
  }
6341
6944
  }
6342
6945
  ],
@@ -6365,22 +6968,22 @@
6365
6968
  "input": [
6366
6969
  {
6367
6970
  "name": "apiKey",
6368
- "type": "query",
6971
+ "type": "string",
6369
6972
  "info": "Your Datadog API key",
6370
6973
  "required": true,
6371
6974
  "schema": {
6372
6975
  "title": "apiKey",
6373
- "type": "query"
6976
+ "type": "string"
6374
6977
  }
6375
6978
  },
6376
6979
  {
6377
6980
  "name": "applicationKey",
6378
- "type": "query",
6981
+ "type": "string",
6379
6982
  "info": "Your Datadog application key",
6380
6983
  "required": true,
6381
6984
  "schema": {
6382
6985
  "title": "applicationKey",
6383
- "type": "query"
6986
+ "type": "string"
6384
6987
  }
6385
6988
  }
6386
6989
  ],
@@ -6477,42 +7080,42 @@
6477
7080
  "input": [
6478
7081
  {
6479
7082
  "name": "apiKey",
6480
- "type": "query",
7083
+ "type": "string",
6481
7084
  "info": "Your Datadog API key",
6482
7085
  "required": true,
6483
7086
  "schema": {
6484
7087
  "title": "apiKey",
6485
- "type": "query"
7088
+ "type": "string"
6486
7089
  }
6487
7090
  },
6488
7091
  {
6489
7092
  "name": "applicationKey",
6490
- "type": "query",
7093
+ "type": "string",
6491
7094
  "info": "Your Datadog application key",
6492
7095
  "required": true,
6493
7096
  "schema": {
6494
7097
  "title": "applicationKey",
6495
- "type": "query"
7098
+ "type": "string"
6496
7099
  }
6497
7100
  },
6498
7101
  {
6499
7102
  "name": "startHr",
6500
- "type": "query",
7103
+ "type": "string",
6501
7104
  "info": "datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage beginning at this hour",
6502
7105
  "required": true,
6503
7106
  "schema": {
6504
7107
  "title": "startHr",
6505
- "type": "query"
7108
+ "type": "string"
6506
7109
  }
6507
7110
  },
6508
7111
  {
6509
7112
  "name": "endHr",
6510
- "type": "query",
7113
+ "type": "string",
6511
7114
  "info": "datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage ending BEFORE this hour",
6512
7115
  "required": true,
6513
7116
  "schema": {
6514
7117
  "title": "endHr",
6515
- "type": "query"
7118
+ "type": "string"
6516
7119
  }
6517
7120
  }
6518
7121
  ],
@@ -6541,42 +7144,42 @@
6541
7144
  "input": [
6542
7145
  {
6543
7146
  "name": "apiKey",
6544
- "type": "query",
7147
+ "type": "string",
6545
7148
  "info": "Your Datadog API key",
6546
7149
  "required": true,
6547
7150
  "schema": {
6548
7151
  "title": "apiKey",
6549
- "type": "query"
7152
+ "type": "string"
6550
7153
  }
6551
7154
  },
6552
7155
  {
6553
7156
  "name": "applicationKey",
6554
- "type": "query",
7157
+ "type": "string",
6555
7158
  "info": "Your Datadog application key",
6556
7159
  "required": true,
6557
7160
  "schema": {
6558
7161
  "title": "applicationKey",
6559
- "type": "query"
7162
+ "type": "string"
6560
7163
  }
6561
7164
  },
6562
7165
  {
6563
7166
  "name": "startHr",
6564
- "type": "query",
7167
+ "type": "string",
6565
7168
  "info": "datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage beginning at this hour",
6566
7169
  "required": true,
6567
7170
  "schema": {
6568
7171
  "title": "startHr",
6569
- "type": "query"
7172
+ "type": "string"
6570
7173
  }
6571
7174
  },
6572
7175
  {
6573
7176
  "name": "endHr",
6574
- "type": "query",
7177
+ "type": "string",
6575
7178
  "info": "datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage ending BEFORE this hour",
6576
7179
  "required": true,
6577
7180
  "schema": {
6578
7181
  "title": "endHr",
6579
- "type": "query"
7182
+ "type": "string"
6580
7183
  }
6581
7184
  }
6582
7185
  ],
@@ -6605,42 +7208,42 @@
6605
7208
  "input": [
6606
7209
  {
6607
7210
  "name": "apiKey",
6608
- "type": "query",
7211
+ "type": "string",
6609
7212
  "info": "Your Datadog API key",
6610
7213
  "required": true,
6611
7214
  "schema": {
6612
7215
  "title": "apiKey",
6613
- "type": "query"
7216
+ "type": "string"
6614
7217
  }
6615
7218
  },
6616
7219
  {
6617
7220
  "name": "applicationKey",
6618
- "type": "query",
7221
+ "type": "string",
6619
7222
  "info": "Your Datadog application key",
6620
7223
  "required": true,
6621
7224
  "schema": {
6622
7225
  "title": "applicationKey",
6623
- "type": "query"
7226
+ "type": "string"
6624
7227
  }
6625
7228
  },
6626
7229
  {
6627
7230
  "name": "startHr",
6628
- "type": "query",
7231
+ "type": "string",
6629
7232
  "info": "Required: datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage beginning at this hour",
6630
7233
  "required": true,
6631
7234
  "schema": {
6632
7235
  "title": "startHr",
6633
- "type": "query"
7236
+ "type": "string"
6634
7237
  }
6635
7238
  },
6636
7239
  {
6637
7240
  "name": "endHr",
6638
- "type": "query",
7241
+ "type": "string",
6639
7242
  "info": "Optional: datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage ending BEFORE this hour",
6640
7243
  "required": true,
6641
7244
  "schema": {
6642
7245
  "title": "endHr",
6643
- "type": "query"
7246
+ "type": "string"
6644
7247
  }
6645
7248
  }
6646
7249
  ],
@@ -6669,42 +7272,42 @@
6669
7272
  "input": [
6670
7273
  {
6671
7274
  "name": "apiKey",
6672
- "type": "query",
7275
+ "type": "string",
6673
7276
  "info": "Your Datadog API key",
6674
7277
  "required": true,
6675
7278
  "schema": {
6676
7279
  "title": "apiKey",
6677
- "type": "query"
7280
+ "type": "string"
6678
7281
  }
6679
7282
  },
6680
7283
  {
6681
7284
  "name": "applicationKey",
6682
- "type": "query",
7285
+ "type": "string",
6683
7286
  "info": "Your Datadog application key",
6684
7287
  "required": true,
6685
7288
  "schema": {
6686
7289
  "title": "applicationKey",
6687
- "type": "query"
7290
+ "type": "string"
6688
7291
  }
6689
7292
  },
6690
7293
  {
6691
7294
  "name": "month",
6692
- "type": "query",
7295
+ "type": "string",
6693
7296
  "info": "datetime in ISO-8601 format, UTC, precise to month: [YYYY-MM] for usage beginning at this hour.",
6694
7297
  "required": true,
6695
7298
  "schema": {
6696
7299
  "title": "month",
6697
- "type": "query"
7300
+ "type": "string"
6698
7301
  }
6699
7302
  },
6700
7303
  {
6701
7304
  "name": "names",
6702
- "type": "query",
7305
+ "type": "string",
6703
7306
  "info": "comma-separated list of metric names",
6704
7307
  "required": true,
6705
7308
  "schema": {
6706
7309
  "title": "names",
6707
- "type": "query"
7310
+ "type": "string"
6708
7311
  }
6709
7312
  }
6710
7313
  ],
@@ -6733,52 +7336,52 @@
6733
7336
  "input": [
6734
7337
  {
6735
7338
  "name": "apiKey",
6736
- "type": "query",
7339
+ "type": "string",
6737
7340
  "info": "Your Datadog API key",
6738
7341
  "required": true,
6739
7342
  "schema": {
6740
7343
  "title": "apiKey",
6741
- "type": "query"
7344
+ "type": "string"
6742
7345
  }
6743
7346
  },
6744
7347
  {
6745
7348
  "name": "applicationKey",
6746
- "type": "query",
7349
+ "type": "string",
6747
7350
  "info": "Your Datadog application key",
6748
7351
  "required": true,
6749
7352
  "schema": {
6750
7353
  "title": "applicationKey",
6751
- "type": "query"
7354
+ "type": "string"
6752
7355
  }
6753
7356
  },
6754
7357
  {
6755
7358
  "name": "startMonth",
6756
- "type": "query",
7359
+ "type": "string",
6757
7360
  "info": "Datetime in ISO-8601 format, UTC, precise to month: [YYYY-MM] for usage beginning in this month. Maximum of 15 months ago.",
6758
7361
  "required": true,
6759
7362
  "schema": {
6760
7363
  "title": "startMonth",
6761
- "type": "query"
7364
+ "type": "string"
6762
7365
  }
6763
7366
  },
6764
7367
  {
6765
7368
  "name": "endMonth",
6766
- "type": "query",
7369
+ "type": "string",
6767
7370
  "info": "Datetime in ISO-8601 format, UTC, precise to month: [YYYY-MM] for usage ending this month.",
6768
7371
  "required": true,
6769
7372
  "schema": {
6770
7373
  "title": "endMonth",
6771
- "type": "query"
7374
+ "type": "string"
6772
7375
  }
6773
7376
  },
6774
7377
  {
6775
7378
  "name": "includeOrgIds",
6776
- "type": "query",
7379
+ "type": "string",
6777
7380
  "info": "Include usage summaries for each sub-org.",
6778
7381
  "required": true,
6779
7382
  "schema": {
6780
7383
  "title": "includeOrgIds",
6781
- "type": "query"
7384
+ "type": "string"
6782
7385
  }
6783
7386
  }
6784
7387
  ],
@@ -6807,42 +7410,42 @@
6807
7410
  "input": [
6808
7411
  {
6809
7412
  "name": "apiKey",
6810
- "type": "query",
7413
+ "type": "string",
6811
7414
  "info": "Your Datadog API key",
6812
7415
  "required": true,
6813
7416
  "schema": {
6814
7417
  "title": "apiKey",
6815
- "type": "query"
7418
+ "type": "string"
6816
7419
  }
6817
7420
  },
6818
7421
  {
6819
7422
  "name": "applicationKey",
6820
- "type": "query",
7423
+ "type": "string",
6821
7424
  "info": "Your Datadog application key",
6822
7425
  "required": true,
6823
7426
  "schema": {
6824
7427
  "title": "applicationKey",
6825
- "type": "query"
7428
+ "type": "string"
6826
7429
  }
6827
7430
  },
6828
7431
  {
6829
7432
  "name": "startHr",
6830
- "type": "query",
7433
+ "type": "string",
6831
7434
  "info": "datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage beginning at this hour",
6832
7435
  "required": true,
6833
7436
  "schema": {
6834
7437
  "title": "startHr",
6835
- "type": "query"
7438
+ "type": "string"
6836
7439
  }
6837
7440
  },
6838
7441
  {
6839
7442
  "name": "endHr",
6840
- "type": "query",
7443
+ "type": "string",
6841
7444
  "info": "datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage ending BEFORE this hour",
6842
7445
  "required": true,
6843
7446
  "schema": {
6844
7447
  "title": "endHr",
6845
- "type": "query"
7448
+ "type": "string"
6846
7449
  }
6847
7450
  }
6848
7451
  ],
@@ -6871,42 +7474,42 @@
6871
7474
  "input": [
6872
7475
  {
6873
7476
  "name": "apiKey",
6874
- "type": "query",
7477
+ "type": "string",
6875
7478
  "info": "Your Datadog API key",
6876
7479
  "required": true,
6877
7480
  "schema": {
6878
7481
  "title": "apiKey",
6879
- "type": "query"
7482
+ "type": "string"
6880
7483
  }
6881
7484
  },
6882
7485
  {
6883
7486
  "name": "applicationKey",
6884
- "type": "query",
7487
+ "type": "string",
6885
7488
  "info": "Your Datadog application key",
6886
7489
  "required": true,
6887
7490
  "schema": {
6888
7491
  "title": "applicationKey",
6889
- "type": "query"
7492
+ "type": "string"
6890
7493
  }
6891
7494
  },
6892
7495
  {
6893
7496
  "name": "startHr",
6894
- "type": "query",
7497
+ "type": "string",
6895
7498
  "info": "Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage beginning at this hour",
6896
7499
  "required": true,
6897
7500
  "schema": {
6898
7501
  "title": "startHr",
6899
- "type": "query"
7502
+ "type": "string"
6900
7503
  }
6901
7504
  },
6902
7505
  {
6903
7506
  "name": "endHr",
6904
- "type": "query",
7507
+ "type": "string",
6905
7508
  "info": "Datetime in ISO-8601 format, UTC, precise to hour: [YYYY-MM-DDThh] for usage ending BEFORE this hour",
6906
7509
  "required": true,
6907
7510
  "schema": {
6908
7511
  "title": "endHr",
6909
- "type": "query"
7512
+ "type": "string"
6910
7513
  }
6911
7514
  }
6912
7515
  ],