-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathapi.en.yaml
More file actions
13684 lines (13684 loc) · 367 KB
/
api.en.yaml
File metadata and controls
13684 lines (13684 loc) · 367 KB
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
menu:
api:
- name: Overview
url: /api/latest/
identifier: API overview
weight: -10
- name: Using the API
url: /api/latest/using-the-api/
parent: API overview
weight: 5
- name: Authorization Scopes
url: /api/latest/scopes/
identifier: API Scopes
parent: API overview
weight: 6
- name: Rate Limits
url: /api/latest/rate-limits/
parent: API overview
weight: 7
identifier: rate-limits
- name: AWS Integration
url: /api/latest/aws-integration/
identifier: aws-integration
generated: true
- name: Get AWS integration standard IAM permissions
url: '#get-aws-integration-standard-iam-permissions'
identifier: aws-integration-get-aws-integration-standard-iam-permissions
parent: aws-integration
generated: true
params:
versions:
- v2
operationids:
- GetAWSIntegrationIAMPermissionsStandard
unstable: []
order: 7
- name: Get resource collection IAM permissions
url: '#get-resource-collection-iam-permissions'
identifier: aws-integration-get-resource-collection-iam-permissions
parent: aws-integration
generated: true
params:
versions:
- v2
operationids:
- GetAWSIntegrationIAMPermissionsResourceCollection
unstable: []
order: 8
- name: Get AWS integration IAM permissions
url: '#get-aws-integration-iam-permissions'
identifier: aws-integration-get-aws-integration-iam-permissions
parent: aws-integration
generated: true
params:
versions:
- v2
operationids:
- GetAWSIntegrationIAMPermissions
unstable: []
order: 6
- name: List available namespaces
url: '#list-available-namespaces'
identifier: aws-integration-list-available-namespaces
parent: aws-integration
generated: true
params:
versions:
- v2
operationids:
- ListAWSNamespaces
unstable: []
order: 1
- name: Get an AWS integration by config ID
url: '#get-an-aws-integration-by-config-id'
identifier: aws-integration-get-an-aws-integration-by-config-id
parent: aws-integration
generated: true
params:
versions:
- v2
operationids:
- GetAWSAccount
unstable: []
order: 3
- name: Generate a new external ID
url: '#generate-a-new-external-id'
identifier: aws-integration-generate-a-new-external-id
parent: aws-integration
generated: true
params:
versions:
- v1
- v2
operationids:
- CreateNewAWSExternalID
unstable: []
order: 4
- name: Set an AWS tag filter
url: '#set-an-aws-tag-filter'
identifier: aws-integration-set-an-aws-tag-filter
parent: aws-integration
generated: true
params:
versions:
- v1
operationids:
- CreateAWSTagFilter
unstable: []
order: 2
- name: Get all AWS tag filters
url: '#get-all-aws-tag-filters'
identifier: aws-integration-get-all-aws-tag-filters
parent: aws-integration
generated: true
params:
versions:
- v1
operationids:
- ListAWSTagFilters
unstable: []
order: 1
- name: Delete a tag filtering entry
url: '#delete-a-tag-filtering-entry'
identifier: aws-integration-delete-a-tag-filtering-entry
parent: aws-integration
generated: true
params:
versions:
- v1
operationids:
- DeleteAWSTagFilter
unstable: []
order: 3
- name: Create an Amazon EventBridge source
url: '#create-an-amazon-eventbridge-source'
identifier: aws-integration-create-an-amazon-eventbridge-source
parent: aws-integration
generated: true
params:
versions:
- v1
- v2
operationids:
- CreateAWSEventBridgeSource
unstable: []
order: 11
- name: Get all Amazon EventBridge sources
url: '#get-all-amazon-eventbridge-sources'
identifier: aws-integration-get-all-amazon-eventbridge-sources
parent: aws-integration
generated: true
params:
versions:
- v1
- v2
operationids:
- ListAWSEventBridgeSources
unstable: []
order: 10
- name: Delete an Amazon EventBridge source
url: '#delete-an-amazon-eventbridge-source'
identifier: aws-integration-delete-an-amazon-eventbridge-source
parent: aws-integration
generated: true
params:
versions:
- v1
- v2
operationids:
- DeleteAWSEventBridgeSource
unstable: []
order: 12
- name: List namespace rules
url: '#list-namespace-rules'
identifier: aws-integration-list-namespace-rules
parent: aws-integration
generated: true
params:
versions:
- v1
operationids:
- ListAvailableAWSNamespaces
unstable: []
order: 5
- name: Update an AWS integration
url: '#update-an-aws-integration'
identifier: aws-integration-update-an-aws-integration
parent: aws-integration
generated: true
params:
versions:
- v1
- v2
operationids:
- UpdateAWSAccount
unstable: []
order: 9
- name: Create an AWS integration
url: '#create-an-aws-integration'
identifier: aws-integration-create-an-aws-integration
parent: aws-integration
generated: true
params:
versions:
- v1
- v2
operationids:
- CreateAWSAccount
unstable: []
order: 8
- name: List all AWS integrations
url: '#list-all-aws-integrations'
identifier: aws-integration-list-all-aws-integrations
parent: aws-integration
generated: true
params:
versions:
- v1
- v2
operationids:
- ListAWSAccounts
unstable: []
order: 6
- name: Delete an AWS integration
url: '#delete-an-aws-integration'
identifier: aws-integration-delete-an-aws-integration
parent: aws-integration
generated: true
params:
versions:
- v1
- v2
operationids:
- DeleteAWSAccount
unstable: []
order: 7
- name: AWS Logs Integration
url: /api/latest/aws-logs-integration/
identifier: aws-logs-integration
generated: true
- name: Check permissions for log services
url: '#check-permissions-for-log-services'
identifier: aws-logs-integration-check-permissions-for-log-services
parent: aws-logs-integration
generated: true
params:
versions:
- v1
operationids:
- CheckAWSLogsServicesAsync
unstable: []
order: 6
- name: Enable an AWS Logs integration
url: '#enable-an-aws-logs-integration'
identifier: aws-logs-integration-enable-an-aws-logs-integration
parent: aws-logs-integration
generated: true
params:
versions:
- v1
operationids:
- EnableAWSLogServices
unstable: []
order: 5
- name: Get list of AWS log ready services
url: '#get-list-of-aws-log-ready-services'
identifier: aws-logs-integration-get-list-of-aws-log-ready-services
parent: aws-logs-integration
generated: true
params:
versions:
- v1
- v2
operationids:
- ListAWSLogsServices
unstable: []
order: 4
- name: Check that an AWS Lambda Function exists
url: '#check-that-an-aws-lambda-function-exists'
identifier: aws-logs-integration-check-that-an-aws-lambda-function-exists
parent: aws-logs-integration
generated: true
params:
versions:
- v1
operationids:
- CheckAWSLogsLambdaAsync
unstable: []
order: 7
- name: Add AWS Log Lambda ARN
url: '#add-aws-log-lambda-arn'
identifier: aws-logs-integration-add-aws-log-lambda-arn
parent: aws-logs-integration
generated: true
params:
versions:
- v1
operationids:
- CreateAWSLambdaARN
unstable: []
order: 2
- name: List all AWS Logs integrations
url: '#list-all-aws-logs-integrations'
identifier: aws-logs-integration-list-all-aws-logs-integrations
parent: aws-logs-integration
generated: true
params:
versions:
- v1
operationids:
- ListAWSLogsIntegrations
unstable: []
order: 1
- name: Delete an AWS Logs integration
url: '#delete-an-aws-logs-integration'
identifier: aws-logs-integration-delete-an-aws-logs-integration
parent: aws-logs-integration
generated: true
params:
versions:
- v1
operationids:
- DeleteAWSLambdaARN
unstable: []
order: 3
- name: Authentication
url: /api/latest/authentication/
identifier: authentication
generated: true
- name: Validate API key
url: '#validate-api-key'
identifier: authentication-validate-api-key
parent: authentication
generated: true
params:
versions:
- v1
operationids:
- Validate
unstable: []
order: 1
- name: Azure Integration
url: /api/latest/azure-integration/
identifier: azure-integration
generated: true
- name: Update Azure integration host filters
url: '#update-azure-integration-host-filters'
identifier: azure-integration-update-azure-integration-host-filters
parent: azure-integration
generated: true
params:
versions:
- v1
operationids:
- UpdateAzureHostFilters
unstable: []
order: 5
- name: Update an Azure integration
url: '#update-an-azure-integration'
identifier: azure-integration-update-an-azure-integration
parent: azure-integration
generated: true
params:
versions:
- v1
operationids:
- UpdateAzureIntegration
unstable: []
order: 4
- name: Create an Azure integration
url: '#create-an-azure-integration'
identifier: azure-integration-create-an-azure-integration
parent: azure-integration
generated: true
params:
versions:
- v1
operationids:
- CreateAzureIntegration
unstable: []
order: 2
- name: List all Azure integrations
url: '#list-all-azure-integrations'
identifier: azure-integration-list-all-azure-integrations
parent: azure-integration
generated: true
params:
versions:
- v1
operationids:
- ListAzureIntegration
unstable: []
order: 1
- name: Delete an Azure integration
url: '#delete-an-azure-integration'
identifier: azure-integration-delete-an-azure-integration
parent: azure-integration
generated: true
params:
versions:
- v1
operationids:
- DeleteAzureIntegration
unstable: []
order: 3
- name: Dashboard Lists
url: /api/latest/dashboard-lists/
identifier: dashboard-lists
generated: true
- name: Update items of a dashboard list
url: '#update-items-of-a-dashboard-list'
identifier: dashboard-lists-update-items-of-a-dashboard-list
parent: dashboard-lists
generated: true
params:
versions:
- v2
operationids:
- UpdateDashboardListItems
unstable: []
order: 3
- name: Add Items to a Dashboard List
url: '#add-items-to-a-dashboard-list'
identifier: dashboard-lists-add-items-to-a-dashboard-list
parent: dashboard-lists
generated: true
params:
versions:
- v2
operationids:
- CreateDashboardListItems
unstable: []
order: 2
- name: Get items of a Dashboard List
url: '#get-items-of-a-dashboard-list'
identifier: dashboard-lists-get-items-of-a-dashboard-list
parent: dashboard-lists
generated: true
params:
versions:
- v2
operationids:
- GetDashboardListItems
unstable: []
order: 1
- name: Delete items from a dashboard list
url: '#delete-items-from-a-dashboard-list'
identifier: dashboard-lists-delete-items-from-a-dashboard-list
parent: dashboard-lists
generated: true
params:
versions:
- v2
operationids:
- DeleteDashboardListItems
unstable: []
order: 4
- name: Update a dashboard list
url: '#update-a-dashboard-list'
identifier: dashboard-lists-update-a-dashboard-list
parent: dashboard-lists
generated: true
params:
versions:
- v1
operationids:
- UpdateDashboardList
unstable: []
order: 4
- name: Get a dashboard list
url: '#get-a-dashboard-list'
identifier: dashboard-lists-get-a-dashboard-list
parent: dashboard-lists
generated: true
params:
versions:
- v1
operationids:
- GetDashboardList
unstable: []
order: 3
- name: Delete a dashboard list
url: '#delete-a-dashboard-list'
identifier: dashboard-lists-delete-a-dashboard-list
parent: dashboard-lists
generated: true
params:
versions:
- v1
operationids:
- DeleteDashboardList
unstable: []
order: 5
- name: Create a dashboard list
url: '#create-a-dashboard-list'
identifier: dashboard-lists-create-a-dashboard-list
parent: dashboard-lists
generated: true
params:
versions:
- v1
operationids:
- CreateDashboardList
unstable: []
order: 2
- name: Get all dashboard lists
url: '#get-all-dashboard-lists'
identifier: dashboard-lists-get-all-dashboard-lists
parent: dashboard-lists
generated: true
params:
versions:
- v1
operationids:
- ListDashboardLists
unstable: []
order: 1
- name: Dashboards
url: /api/latest/dashboards/
identifier: dashboards
generated: true
- name: Update a dashboard
url: '#update-a-dashboard'
identifier: dashboards-update-a-dashboard
parent: dashboards
generated: true
params:
versions:
- v1
operationids:
- UpdateDashboard
unstable: []
order: 4
- name: Get a dashboard
url: '#get-a-dashboard'
identifier: dashboards-get-a-dashboard
parent: dashboards
generated: true
params:
versions:
- v1
operationids:
- GetDashboard
unstable: []
order: 2
- name: Delete a dashboard
url: '#delete-a-dashboard'
identifier: dashboards-delete-a-dashboard
parent: dashboards
generated: true
params:
versions:
- v1
operationids:
- DeleteDashboard
unstable: []
order: 5
- name: Send shared dashboard invitation email
url: '#send-shared-dashboard-invitation-email'
identifier: dashboards-send-shared-dashboard-invitation-email
parent: dashboards
generated: true
params:
versions:
- v1
operationids:
- SendPublicDashboardInvitation
unstable: []
order: 11
- name: Get all invitations for a shared dashboard
url: '#get-all-invitations-for-a-shared-dashboard'
identifier: dashboards-get-all-invitations-for-a-shared-dashboard
parent: dashboards
generated: true
params:
versions:
- v1
operationids:
- GetPublicDashboardInvitations
unstable: []
order: 12
- name: Revoke shared dashboard invitations
url: '#revoke-shared-dashboard-invitations'
identifier: dashboards-revoke-shared-dashboard-invitations
parent: dashboards
generated: true
params:
versions:
- v1
operationids:
- DeletePublicDashboardInvitation
unstable: []
order: 14
- name: Update a shared dashboard
url: '#update-a-shared-dashboard'
identifier: dashboards-update-a-shared-dashboard
parent: dashboards
generated: true
params:
versions:
- v1
operationids:
- UpdatePublicDashboard
unstable: []
order: 10
- name: Get a shared dashboard
url: '#get-a-shared-dashboard'
identifier: dashboards-get-a-shared-dashboard
parent: dashboards
generated: true
params:
versions:
- v1
operationids:
- GetPublicDashboard
unstable: []
order: 9
- name: Revoke a shared dashboard URL
url: '#revoke-a-shared-dashboard-url'
identifier: dashboards-revoke-a-shared-dashboard-url
parent: dashboards
generated: true
params:
versions:
- v1
operationids:
- DeletePublicDashboard
unstable: []
order: 13
- name: Create a shared dashboard
url: '#create-a-shared-dashboard'
identifier: dashboards-create-a-shared-dashboard
parent: dashboards
generated: true
params:
versions:
- v1
operationids:
- CreatePublicDashboard
unstable: []
order: 8
- name: Create a new dashboard
url: '#create-a-new-dashboard'
identifier: dashboards-create-a-new-dashboard
parent: dashboards
generated: true
params:
versions:
- v1
operationids:
- CreateDashboard
unstable: []
order: 1
- name: Restore deleted dashboards
url: '#restore-deleted-dashboards'
identifier: dashboards-restore-deleted-dashboards
parent: dashboards
generated: true
params:
versions:
- v1
operationids:
- RestoreDashboards
unstable: []
order: 7
- name: Get all dashboards
url: '#get-all-dashboards'
identifier: dashboards-get-all-dashboards
parent: dashboards
generated: true
params:
versions:
- v1
operationids:
- ListDashboards
unstable: []
order: 3
- name: Delete dashboards
url: '#delete-dashboards'
identifier: dashboards-delete-dashboards
parent: dashboards
generated: true
params:
versions:
- v1
operationids:
- DeleteDashboards
unstable: []
order: 6
- name: Downtimes
url: /api/latest/downtimes/
identifier: downtimes
generated: true
- name: Get active downtimes for a monitor
url: '#get-active-downtimes-for-a-monitor'
identifier: downtimes-get-active-downtimes-for-a-monitor
parent: downtimes
generated: true
params:
versions:
- v1
- v2
operationids:
- ListMonitorDowntimes
unstable: []
order: 7
- name: Update a downtime
url: '#update-a-downtime'
identifier: downtimes-update-a-downtime
parent: downtimes
generated: true
params:
versions:
- v1
- v2
operationids:
- UpdateDowntime
unstable: []
order: 6
- name: Get a downtime
url: '#get-a-downtime'
identifier: downtimes-get-a-downtime
parent: downtimes
generated: true
params:
versions:
- v1
- v2
operationids:
- GetDowntime
unstable: []
order: 5
- name: Cancel a downtime
url: '#cancel-a-downtime'
identifier: downtimes-cancel-a-downtime
parent: downtimes
generated: true
params:
versions:
- v1
- v2
operationids:
- CancelDowntime
unstable: []
order: 4
- name: Cancel downtimes by scope
url: '#cancel-downtimes-by-scope'
identifier: downtimes-cancel-downtimes-by-scope
parent: downtimes
generated: true
params:
versions:
- v1
operationids:
- CancelDowntimesByScope
unstable: []
order: 3
- name: Schedule a downtime
url: '#schedule-a-downtime'
identifier: downtimes-schedule-a-downtime
parent: downtimes
generated: true
params:
versions:
- v1
- v2
operationids:
- CreateDowntime
unstable: []
order: 2
- name: Get all downtimes
url: '#get-all-downtimes'
identifier: downtimes-get-all-downtimes
parent: downtimes
generated: true
params:
versions:
- v1
- v2
operationids:
- ListDowntimes
unstable: []
order: 1
- name: Embeddable Graphs
url: /api/latest/embeddable-graphs/
identifier: embeddable-graphs
generated: true
- name: Revoke embed
url: '#revoke-embed'
identifier: embeddable-graphs-revoke-embed
parent: embeddable-graphs
generated: true
params:
versions:
- v1
operationids:
- RevokeEmbeddableGraph
unstable: []
order: 1
- name: Enable embed
url: '#enable-embed'
identifier: embeddable-graphs-enable-embed
parent: embeddable-graphs
generated: true
params:
versions:
- v1
operationids:
- EnableEmbeddableGraph
unstable: []
order: 2
- name: Get specific embed
url: '#get-specific-embed'
identifier: embeddable-graphs-get-specific-embed
parent: embeddable-graphs
generated: true
params:
versions:
- v1
operationids:
- GetEmbeddableGraph
unstable: []
order: 3
- name: Create embed
url: '#create-embed'
identifier: embeddable-graphs-create-embed
parent: embeddable-graphs
generated: true
params:
versions:
- v1
operationids:
- CreateEmbeddableGraph
unstable: []
order: 4
- name: Get all embeds
url: '#get-all-embeds'
identifier: embeddable-graphs-get-all-embeds
parent: embeddable-graphs
generated: true
params:
versions:
- v1
operationids:
- ListEmbeddableGraphs
unstable: []
order: 5
- name: Events
url: /api/latest/events/
identifier: events
generated: true
- name: Search events
url: '#search-events'
identifier: events-search-events
parent: events
generated: true
params:
versions:
- v2
operationids:
- SearchEvents
unstable: []
order: 2
- name: Get an event
url: '#get-an-event'
identifier: events-get-an-event
parent: events
generated: true
params:
versions:
- v1
- v2
operationids:
- GetEvent
unstable: []
order: 2
- name: Post an event
url: '#post-an-event'
identifier: events-post-an-event
parent: events
generated: true
params:
versions:
- v1
- v2
operationids:
- CreateEvent
unstable: []
order: 1
- name: Get a list of events
url: '#get-a-list-of-events'
identifier: events-get-a-list-of-events
parent: events
generated: true
params:
versions:
- v1
- v2
operationids:
- ListEvents
unstable: []
order: 1
- name: GCP Integration
url: /api/latest/gcp-integration/
identifier: gcp-integration
generated: true
- name: Create a Datadog GCP principal
url: '#create-a-datadog-gcp-principal'
identifier: gcp-integration-create-a-datadog-gcp-principal
parent: gcp-integration
generated: true
params:
versions:
- v2
operationids:
- MakeGCPSTSDelegate
unstable: []
order: 5
- name: List delegate account
url: '#list-delegate-account'
identifier: gcp-integration-list-delegate-account
parent: gcp-integration
generated: true
params:
versions:
- v2
operationids:
- GetGCPSTSDelegate
unstable: []
order: 6
- name: Update STS Service Account
url: '#update-sts-service-account'
identifier: gcp-integration-update-sts-service-account
parent: gcp-integration
generated: true
params:
versions:
- v2
operationids:
- UpdateGCPSTSAccount
unstable: []
order: 4
- name: Delete an STS enabled GCP Account
url: '#delete-an-sts-enabled-gcp-account'
identifier: gcp-integration-delete-an-sts-enabled-gcp-account
parent: gcp-integration
generated: true
params:
versions:
- v2
operationids:
- DeleteGCPSTSAccount
unstable: []
order: 3
- name: Create a new entry for your service account
url: '#create-a-new-entry-for-your-service-account'
identifier: gcp-integration-create-a-new-entry-for-your-service-account
parent: gcp-integration
generated: true
params:
versions:
- v2
operationids:
- CreateGCPSTSAccount
unstable: []
order: 2
- name: List all GCP STS-enabled service accounts
url: '#list-all-gcp-sts-enabled-service-accounts'
identifier: gcp-integration-list-all-gcp-sts-enabled-service-accounts
parent: gcp-integration
generated: true
params:
versions:
- v2
operationids:
- ListGCPSTSAccounts
unstable: []
order: 1
- name: Update a GCP integration
url: '#update-a-gcp-integration'
identifier: gcp-integration-update-a-gcp-integration
parent: gcp-integration
generated: true
params:
versions:
- v1
operationids:
- UpdateGCPIntegration
unstable: []
order: 4
- name: Create a GCP integration
url: '#create-a-gcp-integration'
identifier: gcp-integration-create-a-gcp-integration
parent: gcp-integration
generated: true
params:
versions:
- v1
operationids:
- CreateGCPIntegration