forked from Shuffle/openapi-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
datadog.yaml
11959 lines (11483 loc) · 355 KB
/
datadog.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.0
info:
title: Datadog
description: >-
The Datadog API is an HTTP REST API. The API uses resource-oriented URLs to
call the API, uses status codes to indicate the success or failure of
requests, returns JSON from all requests, and uses standard HTTP response
codes. Use the Datadog API to access the Datadog platform programmatically.
For the official documentation, see [https://docs.datadoghq.com/api/](https://docs.datadoghq.com/api/)
This API collection was last updated on April 22, 2022.
version: "1.0"
x-logo: data:image/png;base64,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
contact:
email: [email protected]
name: "@shuffle_platform"
url: https://twitter.com/shuffleio
x-categories:
- SIEM
servers:
- url: https://app.datadoghq.com
host: app.datadoghq.com
basePath: /
schemes:
- "https:"
paths:
/:
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: List IP Ranges
operationId: List_IP_Ranges
description: Get information about Datadog IP ranges.
parameters: []
requestBody:
content: {}
/api/v1/application_key:
post:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Create an application key
operationId: Create_an_application_key
description: Create an application key with a given name.
parameters:
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: ""
schema:
type: string
- in: header
name: Content-Type
multiline: false
description: Header generated by shuffler.io OpenAPI
required: false
example: application/json
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: ""
"/api/v1/application_key/{key}":
put:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Edit an application key
operationId: Edit_an_application_key
description: Edit an application key name.
parameters:
- in: path
name: key
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: ""
schema:
type: string
- in: header
name: Content-Type
multiline: false
description: Header generated by shuffler.io OpenAPI
required: false
example: application/json
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: ""
/api/v1/check_run:
post:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Submit a Service Check
operationId: Submit_a_Service_Check
description: |-
Submit a list of Service Checks.
**Notes**:
- A valid API key is required.
- Service checks can be submitted up to 10 minutes in the past.
parameters:
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: ""
schema:
type: string
- in: header
name: Content-Type
multiline: false
description: Header generated by shuffler.io OpenAPI
required: false
example: application/json
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: ""
/api/v1/daily_custom_reports:
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Get the list of available daily custom reports
operationId: Get_the_list_of_available_daily_custom_reports
description: Get daily custom reports.
parameters:
- in: query
name: sort_dir
description: "The direction to sort by: `[desc, asc]`."
required: false
schema:
type: string
- in: query
name: sort
description: "The field to sort by: `[computed_on, size, start_date, end_date]`."
required: false
schema:
type: string
requestBody:
content: {}
"/api/v1/daily_custom_reports/{report_id}":
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Get specified daily custom reports
operationId: Get_specified_daily_custom_reports
description: Get specified daily custom reports.
parameters:
- in: path
name: report_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
requestBody:
content: {}
/api/v1/dashboard:
delete:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Delete dashboards
operationId: Delete_dashboards
description: Delete dashboards using the specified IDs. If there are any
failures, no dashboards will be deleted (partial success is not
allowed).
parameters:
- in: header
name: Content-Type
multiline: false
description: Header generated by shuffler.io OpenAPI
required: false
example: application/json
schema:
type: string
requestBody:
content: {}
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Get all dashboards
operationId: Get_all_dashboards
description: >-
Get all dashboards.
**Note**: This query will only return custom created or cloned dashboards.
This query will not return preset dashboards.
parameters: []
requestBody:
content: {}
patch:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Restore deleted dashboards
operationId: Restore_deleted_dashboards
description: Restore dashboards using the specified IDs. If there are any
failures, no dashboards will be restored (partial success is not
allowed).
parameters:
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: ""
schema:
type: string
- in: header
name: Content-Type
multiline: false
description: Header generated by shuffler.io OpenAPI
required: false
example: application/json
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: ""
post:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Create a new dashboard
operationId: Create_a_new_dashboard
description: >-
Create a dashboard using the specified options. When defining queries in
your widgets, take note of which queries should have the `as_count()` or
`as_rate()` modifiers appended.
Refer to the following [documentation](https://docs.datadoghq.com/developers/metrics/type_modifiers/?tab=count#in-application-modifiers) for more information on these modifiers.
parameters:
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: ""
schema:
type: string
- in: header
name: Content-Type
multiline: false
description: Header generated by shuffler.io OpenAPI
required: false
example: application/json
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: ""
/api/v1/dashboard/lists/manual:
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Get all dashboard lists
operationId: Get_all_dashboard_lists
description: Fetch all of your existing dashboard list definitions.
parameters: []
requestBody:
content: {}
post:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Create a dashboard list
operationId: Create_a_dashboard_list
description: Create an empty dashboard list.
parameters:
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: ""
schema:
type: string
- in: header
name: Content-Type
multiline: false
description: Header generated by shuffler.io OpenAPI
required: false
example: application/json
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: ""
"/api/v1/dashboard/lists/manual/{list_id}":
delete:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Delete a dashboard list
operationId: Delete_a_dashboard_list
description: Delete a dashboard list.
parameters:
- in: path
name: list_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
requestBody:
content: {}
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Get a dashboard list
operationId: Get_a_dashboard_list
description: Fetch an existing dashboard list's definition.
parameters:
- in: path
name: list_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
requestBody:
content: {}
put:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Update a dashboard list
operationId: Update_a_dashboard_list
description: Update the name of a dashboard list.
parameters:
- in: path
name: list_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: ""
schema:
type: string
- in: header
name: Content-Type
multiline: false
description: Header generated by shuffler.io OpenAPI
required: false
example: application/json
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: ""
/api/v1/dashboard/public:
post:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Create a shared dashboard
operationId: Create_a_shared_dashboard
description: Share a specified private dashboard, generating a URL at which it
can be publicly viewed.
parameters:
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: ""
schema:
type: string
- in: header
name: Content-Type
multiline: false
description: Header generated by shuffler.io OpenAPI
required: false
example: application/json
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: ""
"/api/v1/dashboard/public/{token}":
delete:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Revoke a shared dashboard URL
operationId: Revoke_a_shared_dashboard_URL
description: Revoke the public URL for a dashboard (rendering it private)
associated with the specified token.
parameters:
- in: path
name: token
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
requestBody:
content: {}
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Get a shared dashboard
operationId: Get_a_shared_dashboard
description: Fetch an existing shared dashboard's sharing metadata associated
with the specified token.
parameters:
- in: path
name: token
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
requestBody:
content: {}
put:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Update a shared dashboard
operationId: Update_a_shared_dashboard
description: Update a shared dashboard associated with the specified token.
parameters:
- in: path
name: token
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: ""
schema:
type: string
- in: header
name: Content-Type
multiline: false
description: Header generated by shuffler.io OpenAPI
required: false
example: application/json
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: ""
"/api/v1/dashboard/public/{token}/invitation":
delete:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Revoke shared dashboard invitations
operationId: Revoke_shared_dashboard_invitations
description: Revoke previously sent invitation emails and active sessions used
to access a given shared dashboard for specific email addresses.
parameters:
- in: path
name: token
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
- in: header
name: Content-Type
multiline: false
description: Header generated by shuffler.io OpenAPI
required: false
example: application/json
schema:
type: string
requestBody:
content: {}
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Get all invitations for a shared dashboard
operationId: Get_all_invitations_for_a_shared_dashboard
description: Describe the invitations that exist for the given shared dashboard
(paginated).
parameters:
- in: query
name: page_size
description: The number of records to return in a single request.
required: false
schema:
type: string
- in: query
name: page_number
description: The page to access (base 0).
required: false
schema:
type: string
- in: path
name: token
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
requestBody:
content: {}
post:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Send shared dashboard invitation email
operationId: Send_shared_dashboard_invitation_email
description: Send emails to specified email addresses containing links to access
a given authenticated shared dashboard. Email addresses must already
belong to the authenticated shared dashboard's share_list.
parameters:
- in: path
name: token
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: ""
schema:
type: string
- in: header
name: Content-Type
multiline: false
description: Header generated by shuffler.io OpenAPI
required: false
example: application/json
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: ""
"/api/v1/dashboard/{dashboard_id}":
delete:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Delete a dashboard
operationId: Delete_a_dashboard
description: Delete a dashboard using the specified ID.
parameters:
- in: path
name: dashboard_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
requestBody:
content: {}
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Get a dashboard
operationId: Get_a_dashboard
description: Get a dashboard using the specified ID.
parameters:
- in: path
name: dashboard_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
requestBody:
content: {}
put:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Update a dashboard
operationId: Update_a_dashboard
description: Update a dashboard using the specified ID.
parameters:
- in: path
name: dashboard_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: ""
schema:
type: string
- in: header
name: Content-Type
multiline: false
description: Header generated by shuffler.io OpenAPI
required: false
example: application/json
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: ""
/api/v1/downtime:
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Get all downtimes
operationId: Get_all_downtimes
description: Get all scheduled downtimes.
parameters:
- in: query
name: current_only
description: Only return downtimes that are active when the request is made.
required: false
schema:
type: string
requestBody:
content: {}
post:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Schedule a downtime
operationId: Schedule_a_downtime
description: Schedule a downtime.
parameters:
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: ""
schema:
type: string
- in: header
name: Content-Type
multiline: false
description: Header generated by shuffler.io OpenAPI
required: false
example: application/json
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: ""
/api/v1/downtime/cancel/by_scope:
post:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Cancel downtimes by scope
operationId: Cancel_downtimes_by_scope
description: Delete all downtimes that match the scope of `X`.
parameters:
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: ""
schema:
type: string
- in: header
name: Content-Type
multiline: false
description: Header generated by shuffler.io OpenAPI
required: false
example: application/json
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: ""
"/api/v1/downtime/{downtime_id}":
delete:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Cancel a downtime
operationId: Cancel_a_downtime
description: Cancel a downtime.
parameters:
- in: path
name: downtime_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
requestBody:
content: {}
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Get a downtime
operationId: Get_a_downtime
description: Get downtime detail by `downtime_id`.
parameters:
- in: path
name: downtime_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
requestBody:
content: {}
put:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Update a downtime
operationId: Update_a_downtime
description: Update a single downtime by `downtime_id`.
parameters:
- in: path
name: downtime_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: ""
schema:
type: string
- in: header
name: Content-Type
multiline: false
description: Header generated by shuffler.io OpenAPI
required: false
example: application/json
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: ""
/api/v1/events:
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Query the event stream
operationId: Query_the_event_stream
description: >-
The event stream can be queried and filtered by time, priority, sources
and tags.
**Notes**:
- If the event youre querying contains markdown formatting of any kind,
you may see characters such as `%`,`\`,`n` in your output.
- This endpoint returns a maximum of `1000` most recent results. To return additional results,
identify the last timestamp of the last result and set that as the `end` query time to
paginate the results. You can also use the page parameter to specify which set of `1000` results to return.
parameters:
- in: query
name: start
description: (Required) POSIX timestamp.
required: false
schema: