forked from google/go-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi_operations.yaml
6522 lines (6522 loc) · 353 KB
/
openapi_operations.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
operations:
- name: POST /hub
documentation_url: https://docs.github.com/webhooks/about-webhooks-for-repositories#pubsubhubbub
- name: GET /organizations/{organization_id}
- name: GET /orgs/{org}/actions/required_workflows
documentation_url: https://docs.github.com/actions/using-workflows/required-workflows
- name: POST /orgs/{org}/actions/required_workflows
documentation_url: https://docs.github.com/actions/using-workflows/required-workflows
- name: DELETE /orgs/{org}/actions/required_workflows/{workflow_id}
documentation_url: https://docs.github.com/actions/using-workflows/required-workflows
- name: GET /orgs/{org}/actions/required_workflows/{workflow_id}
documentation_url: https://docs.github.com/actions/using-workflows/required-workflows
- name: PATCH /orgs/{org}/actions/required_workflows/{workflow_id}
documentation_url: https://docs.github.com/actions/using-workflows/required-workflows
- name: GET /orgs/{org}/actions/required_workflows/{workflow_id}/repositories
documentation_url: https://docs.github.com/actions/using-workflows/required-workflows
- name: PUT /orgs/{org}/actions/required_workflows/{workflow_id}/repositories
documentation_url: https://docs.github.com/actions/using-workflows/required-workflows
- name: DELETE /orgs/{org}/actions/required_workflows/{workflow_id}/repositories/{repository_id}
documentation_url: https://docs.github.com/actions/using-workflows/required-workflows
- name: PUT /orgs/{org}/actions/required_workflows/{workflow_id}/repositories/{repository_id}
documentation_url: https://docs.github.com/actions/using-workflows/required-workflows
- name: GET /repos/{owner}/{repo}/actions/required_workflows
documentation_url: https://docs.github.com/actions/using-workflows/required-workflows
- name: GET /repos/{owner}/{repo}/import/issues
documentation_url: https://gist.github.com/jonmagic/5282384165e0f86ef105#check-status-of-multiple-issues
- name: POST /repos/{owner}/{repo}/import/issues
documentation_url: https://gist.github.com/jonmagic/5282384165e0f86ef105#start-an-issue-import
- name: GET /repos/{owner}/{repo}/import/issues/{issue_number}
documentation_url: https://gist.github.com/jonmagic/5282384165e0f86ef105#import-status-request
- name: GET /repositories/{repository_id}
- name: GET /repositories/{repository_id}/installation
- name: GET /user/{user_id}
operation_overrides:
- name: GET /meta
documentation_url: https://docs.github.com/rest/meta/meta#get-github-meta-information
- name: DELETE /repos/{owner}/{repo}/pages
documentation_url: https://docs.github.com/rest/pages/pages#delete-a-github-pages-site
- name: GET /repos/{owner}/{repo}/pages
documentation_url: https://docs.github.com/rest/pages/pages#get-a-github-pages-site
- name: POST /repos/{owner}/{repo}/pages
documentation_url: https://docs.github.com/rest/pages/pages#create-a-github-pages-site
- name: PUT /repos/{owner}/{repo}/pages
documentation_url: https://docs.github.com/rest/pages/pages#update-information-about-a-github-pages-site
- name: GET /repos/{owner}/{repo}/pages/builds
documentation_url: https://docs.github.com/rest/pages/pages#list-github-pages-builds
- name: POST /repos/{owner}/{repo}/pages/builds
documentation_url: https://docs.github.com/rest/pages/pages#request-a-github-pages-build
- name: GET /repos/{owner}/{repo}/pages/builds/{build_id}
documentation_url: https://docs.github.com/rest/pages/pages#get-github-pages-build
openapi_commit: b65cdcaa8a1453dd394cb898b35696a2130f4504
openapi_operations:
- name: GET /
documentation_url: https://docs.github.com/rest/meta/meta#github-api-root
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /admin/hooks
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/global-webhooks#list-global-webhooks
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /admin/hooks
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/global-webhooks#create-a-global-webhook
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /admin/hooks/{hook_id}
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/global-webhooks#delete-a-global-webhook
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /admin/hooks/{hook_id}
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/global-webhooks#get-a-global-webhook
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: PATCH /admin/hooks/{hook_id}
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/global-webhooks#update-a-global-webhook
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /admin/hooks/{hook_id}/pings
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/global-webhooks#ping-a-global-webhook
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /admin/keys
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/users#list-public-keys
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /admin/keys/{key_ids}
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/users#delete-a-public-key
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: PATCH /admin/ldap/teams/{team_id}/mapping
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/ldap#update-ldap-mapping-for-a-team
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /admin/ldap/teams/{team_id}/sync
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/ldap#sync-ldap-mapping-for-a-team
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: PATCH /admin/ldap/users/{username}/mapping
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/ldap#update-ldap-mapping-for-a-user
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /admin/ldap/users/{username}/sync
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/ldap#sync-ldap-mapping-for-a-user
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /admin/organizations
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/orgs#create-an-organization
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: PATCH /admin/organizations/{org}
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/orgs#update-an-organization-name
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /admin/pre-receive-environments
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/pre-receive-environments#list-pre-receive-environments
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /admin/pre-receive-environments
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/pre-receive-environments#create-a-pre-receive-environment
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /admin/pre-receive-environments/{pre_receive_environment_id}
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/pre-receive-environments#delete-a-pre-receive-environment
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /admin/pre-receive-environments/{pre_receive_environment_id}
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/pre-receive-environments#get-a-pre-receive-environment
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: PATCH /admin/pre-receive-environments/{pre_receive_environment_id}
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/pre-receive-environments#update-a-pre-receive-environment
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /admin/pre-receive-environments/{pre_receive_environment_id}/downloads
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/pre-receive-environments#start-a-pre-receive-environment-download
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /admin/pre-receive-environments/{pre_receive_environment_id}/downloads/latest
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/pre-receive-environments#get-the-download-status-for-a-pre-receive-environment
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /admin/pre-receive-hooks
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/pre-receive-hooks#list-pre-receive-hooks
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /admin/pre-receive-hooks
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/pre-receive-hooks#create-a-pre-receive-hook
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /admin/pre-receive-hooks/{pre_receive_hook_id}
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/pre-receive-hooks#delete-a-pre-receive-hook
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /admin/pre-receive-hooks/{pre_receive_hook_id}
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/pre-receive-hooks#get-a-pre-receive-hook
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: PATCH /admin/pre-receive-hooks/{pre_receive_hook_id}
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/pre-receive-hooks#update-a-pre-receive-hook
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /admin/tokens
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/users#list-personal-access-tokens
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /admin/tokens/{token_id}
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/users#delete-a-personal-access-token
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /admin/users
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/users#create-a-user
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /admin/users/{username}
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/users#delete-a-user
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: PATCH /admin/users/{username}
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/users#update-the-username-for-a-user
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /admin/users/{username}/authorizations
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/users#delete-an-impersonation-oauth-token
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /admin/users/{username}/authorizations
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/users#create-an-impersonation-oauth-token
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /advisories
documentation_url: https://docs.github.com/rest/security-advisories/global-advisories#list-global-security-advisories
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /advisories/{ghsa_id}
documentation_url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /app
documentation_url: https://docs.github.com/rest/apps/apps#get-the-authenticated-app
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /app-manifests/{code}/conversions
documentation_url: https://docs.github.com/rest/apps/apps#create-a-github-app-from-a-manifest
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /app/hook/config
documentation_url: https://docs.github.com/rest/apps/webhooks#get-a-webhook-configuration-for-an-app
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: PATCH /app/hook/config
documentation_url: https://docs.github.com/rest/apps/webhooks#update-a-webhook-configuration-for-an-app
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /app/hook/deliveries
documentation_url: https://docs.github.com/rest/apps/webhooks#list-deliveries-for-an-app-webhook
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /app/hook/deliveries/{delivery_id}
documentation_url: https://docs.github.com/rest/apps/webhooks#get-a-delivery-for-an-app-webhook
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /app/hook/deliveries/{delivery_id}/attempts
documentation_url: https://docs.github.com/rest/apps/webhooks#redeliver-a-delivery-for-an-app-webhook
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /app/installation-requests
documentation_url: https://docs.github.com/rest/apps/apps#list-installation-requests-for-the-authenticated-app
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /app/installations
documentation_url: https://docs.github.com/rest/apps/apps#list-installations-for-the-authenticated-app
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /app/installations/{installation_id}
documentation_url: https://docs.github.com/rest/apps/apps#delete-an-installation-for-the-authenticated-app
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /app/installations/{installation_id}
documentation_url: https://docs.github.com/rest/apps/apps#get-an-installation-for-the-authenticated-app
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /app/installations/{installation_id}/access_tokens
documentation_url: https://docs.github.com/rest/apps/apps#create-an-installation-access-token-for-an-app
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /app/installations/{installation_id}/suspended
documentation_url: https://docs.github.com/rest/apps/apps#unsuspend-an-app-installation
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: PUT /app/installations/{installation_id}/suspended
documentation_url: https://docs.github.com/rest/apps/apps#suspend-an-app-installation
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /applications/grants
documentation_url: https://docs.github.com/[email protected]/rest/oauth-authorizations/oauth-authorizations#list-your-grants
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /applications/grants/{grant_id}
documentation_url: https://docs.github.com/[email protected]/rest/oauth-authorizations/oauth-authorizations#delete-a-grant
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /applications/grants/{grant_id}
documentation_url: https://docs.github.com/[email protected]/rest/oauth-authorizations/oauth-authorizations#get-a-single-grant
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /applications/{client_id}/grant
documentation_url: https://docs.github.com/rest/apps/oauth-applications#delete-an-app-authorization
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /applications/{client_id}/grants/{access_token}
documentation_url: https://docs.github.com/[email protected]/rest/reference/apps#revoke-a-grant-for-an-application
openapi_files:
- descriptions/ghes-3.3/ghes-3.3.json
- name: DELETE /applications/{client_id}/token
documentation_url: https://docs.github.com/rest/apps/oauth-applications#delete-an-app-token
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: PATCH /applications/{client_id}/token
documentation_url: https://docs.github.com/rest/apps/oauth-applications#reset-a-token
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /applications/{client_id}/token
documentation_url: https://docs.github.com/rest/apps/oauth-applications#check-a-token
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /applications/{client_id}/token/scoped
documentation_url: https://docs.github.com/rest/apps/apps#create-a-scoped-access-token
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /applications/{client_id}/tokens/{access_token}
documentation_url: https://docs.github.com/[email protected]/rest/reference/apps#revoke-an-authorization-for-an-application
openapi_files:
- descriptions/ghes-3.3/ghes-3.3.json
- name: GET /applications/{client_id}/tokens/{access_token}
documentation_url: https://docs.github.com/[email protected]/rest/reference/apps#check-an-authorization
openapi_files:
- descriptions/ghes-3.3/ghes-3.3.json
- name: POST /applications/{client_id}/tokens/{access_token}
documentation_url: https://docs.github.com/[email protected]/rest/reference/apps#reset-an-authorization
openapi_files:
- descriptions/ghes-3.3/ghes-3.3.json
- name: GET /apps/{app_slug}
documentation_url: https://docs.github.com/rest/apps/apps#get-an-app
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /assignments/{assignment_id}
documentation_url: https://docs.github.com/rest/classroom/classroom#get-an-assignment
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- name: GET /assignments/{assignment_id}/accepted_assignments
documentation_url: https://docs.github.com/rest/classroom/classroom#list-accepted-assignments-for-an-assignment
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- name: GET /assignments/{assignment_id}/grades
documentation_url: https://docs.github.com/rest/classroom/classroom#get-assignment-grades
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- name: GET /authorizations
documentation_url: https://docs.github.com/[email protected]/rest/oauth-authorizations/oauth-authorizations#list-your-authorizations
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /authorizations
documentation_url: https://docs.github.com/[email protected]/rest/oauth-authorizations/oauth-authorizations#create-a-new-authorization
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: PUT /authorizations/clients/{client_id}
documentation_url: https://docs.github.com/[email protected]/rest/oauth-authorizations/oauth-authorizations#get-or-create-an-authorization-for-a-specific-app
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: PUT /authorizations/clients/{client_id}/{fingerprint}
documentation_url: https://docs.github.com/[email protected]/rest/oauth-authorizations/oauth-authorizations#get-or-create-an-authorization-for-a-specific-app-and-fingerprint
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /authorizations/{authorization_id}
documentation_url: https://docs.github.com/[email protected]/rest/oauth-authorizations/oauth-authorizations#delete-an-authorization
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /authorizations/{authorization_id}
documentation_url: https://docs.github.com/[email protected]/rest/oauth-authorizations/oauth-authorizations#get-a-single-authorization
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: PATCH /authorizations/{authorization_id}
documentation_url: https://docs.github.com/[email protected]/rest/oauth-authorizations/oauth-authorizations#update-an-existing-authorization
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /classrooms
documentation_url: https://docs.github.com/rest/classroom/classroom#list-classrooms
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- name: GET /classrooms/{classroom_id}
documentation_url: https://docs.github.com/rest/classroom/classroom#get-a-classroom
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- name: GET /classrooms/{classroom_id}/assignments
documentation_url: https://docs.github.com/rest/classroom/classroom#list-assignments-for-a-classroom
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- name: GET /codes_of_conduct
documentation_url: https://docs.github.com/rest/codes-of-conduct/codes-of-conduct#get-all-codes-of-conduct
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /codes_of_conduct/{key}
documentation_url: https://docs.github.com/rest/codes-of-conduct/codes-of-conduct#get-a-code-of-conduct
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /emojis
documentation_url: https://docs.github.com/rest/emojis/emojis#get-emojis
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprise-installation/{enterprise_or_org}/server-statistics
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/admin-stats#get-github-enterprise-server-statistics
openapi_files:
- descriptions/ghec/ghec.json
- name: DELETE /enterprise/announcement
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/announcement#remove-the-global-announcement-banner
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprise/announcement
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/announcement#get-the-global-announcement-banner
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: PATCH /enterprise/announcement
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/announcement#set-the-global-announcement-banner
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprise/settings/license
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/license#get-license-information
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprise/stats/all
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/admin-stats#get-all-statistics
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprise/stats/comments
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/admin-stats#get-comment-statistics
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprise/stats/gists
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/admin-stats#get-gist-statistics
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprise/stats/hooks
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/admin-stats#get-hooks-statistics
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprise/stats/issues
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/admin-stats#get-issue-statistics
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprise/stats/milestones
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/admin-stats#get-milestone-statistics
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprise/stats/orgs
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/admin-stats#get-organization-statistics
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprise/stats/pages
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/admin-stats#get-pages-statistics
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprise/stats/pulls
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/admin-stats#get-pull-request-statistics
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprise/stats/repos
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/admin-stats#get-repository-statistics
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprise/stats/security-products
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/admin-stats#get-security-products-statistics
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprise/stats/users
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/admin-stats#get-users-statistics
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprises/{enterprise}/actions/cache/usage
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprises/{enterprise}/actions/cache/usage-policy
documentation_url: https://docs.github.com/[email protected]/rest/actions/cache#get-github-actions-cache-usage-policy-for-an-enterprise
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: PATCH /enterprises/{enterprise}/actions/cache/usage-policy
documentation_url: https://docs.github.com/[email protected]/rest/actions/cache#set-github-actions-cache-usage-policy-for-an-enterprise
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: PUT /enterprises/{enterprise}/actions/oidc/customization/issuer
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#set-the-github-actions-oidc-custom-issuer-policy-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- name: GET /enterprises/{enterprise}/actions/permissions
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-github-actions-permissions-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: PUT /enterprises/{enterprise}/actions/permissions
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-github-actions-permissions-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprises/{enterprise}/actions/permissions/organizations
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#list-selected-organizations-enabled-for-github-actions-in-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: PUT /enterprises/{enterprise}/actions/permissions/organizations
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-selected-organizations-enabled-for-github-actions-in-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /enterprises/{enterprise}/actions/permissions/organizations/{org_id}
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#disable-a-selected-organization-for-github-actions-in-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: PUT /enterprises/{enterprise}/actions/permissions/organizations/{org_id}
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#enable-a-selected-organization-for-github-actions-in-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprises/{enterprise}/actions/permissions/selected-actions
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: PUT /enterprises/{enterprise}/actions/permissions/selected-actions
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprises/{enterprise}/actions/permissions/workflow
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: PUT /enterprises/{enterprise}/actions/permissions/workflow
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-default-workflow-permissions-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprises/{enterprise}/actions/runner-groups
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-self-hosted-runner-groups-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /enterprises/{enterprise}/actions/runner-groups
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#create-a-self-hosted-runner-group-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: PATCH /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/organizations
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-organization-access-to-a-self-hosted-runner-group-in-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: PUT /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/organizations
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-organization-access-for-a-self-hosted-runner-group-in-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/organizations/{org_id}
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-organization-access-to-a-self-hosted-runner-group-in-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: PUT /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/organizations/{org_id}
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-organization-access-to-a-self-hosted-runner-group-in-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/runners
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: PUT /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/runners
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/runners/{runner_id}
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: PUT /enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/runners/{runner_id}
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprises/{enterprise}/actions/runners
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-self-hosted-runners-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprises/{enterprise}/actions/runners/downloads
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-runner-applications-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /enterprises/{enterprise}/actions/runners/generate-jitconfig
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /enterprises/{enterprise}/actions/runners/registration-token
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-registration-token-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /enterprises/{enterprise}/actions/runners/remove-token
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-remove-token-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /enterprises/{enterprise}/actions/runners/{runner_id}
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprises/{enterprise}/actions/runners/{runner_id}
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /enterprises/{enterprise}/actions/runners/{runner_id}/labels
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprises/{enterprise}/actions/runners/{runner_id}/labels
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /enterprises/{enterprise}/actions/runners/{runner_id}/labels
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: PUT /enterprises/{enterprise}/actions/runners/{runner_id}/labels
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /enterprises/{enterprise}/actions/runners/{runner_id}/labels/{name}
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /enterprises/{enterprise}/announcement
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/announcement-banners/enterprises#remove-announcement-banner-from-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- name: GET /enterprises/{enterprise}/announcement
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/announcement-banners/enterprises#get-announcement-banner-for-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- name: PATCH /enterprises/{enterprise}/announcement
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/announcement-banners/enterprises#set-announcement-banner-for-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- name: GET /enterprises/{enterprise}/audit-log
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/audit-log#get-the-audit-log-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprises/{enterprise}/code-scanning/alerts
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprises/{enterprise}/code_security_and_analysis
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/code-security-and-analysis#get-code-security-and-analysis-features-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: PATCH /enterprises/{enterprise}/code_security_and_analysis
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/code-security-and-analysis#update-code-security-and-analysis-features-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprises/{enterprise}/consumed-licenses
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/license#list-enterprise-consumed-licenses
openapi_files:
- descriptions/ghec/ghec.json
- name: GET /enterprises/{enterprise}/dependabot/alerts
documentation_url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprises/{enterprise}/license-sync-status
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/license#get-a-license-sync-status
openapi_files:
- descriptions/ghec/ghec.json
- name: GET /enterprises/{enterprise}/secret-scanning/alerts
documentation_url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprises/{enterprise}/settings/billing/actions
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-github-actions-billing-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- name: GET /enterprises/{enterprise}/settings/billing/advanced-security
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-github-advanced-security-active-committers-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /enterprises/{enterprise}/settings/billing/packages
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-github-packages-billing-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- name: GET /enterprises/{enterprise}/settings/billing/shared-storage
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-shared-storage-billing-for-an-enterprise
openapi_files:
- descriptions/ghec/ghec.json
- name: POST /enterprises/{enterprise}/{security_product}/{enablement}
documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/code-security-and-analysis#enable-or-disable-a-security-feature
openapi_files:
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /events
documentation_url: https://docs.github.com/rest/activity/events#list-public-events
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /feeds
documentation_url: https://docs.github.com/rest/activity/feeds#get-feeds
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /gists
documentation_url: https://docs.github.com/rest/gists/gists#list-gists-for-the-authenticated-user
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /gists
documentation_url: https://docs.github.com/rest/gists/gists#create-a-gist
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /gists/public
documentation_url: https://docs.github.com/rest/gists/gists#list-public-gists
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /gists/starred
documentation_url: https://docs.github.com/rest/gists/gists#list-starred-gists
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /gists/{gist_id}
documentation_url: https://docs.github.com/rest/gists/gists#delete-a-gist
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /gists/{gist_id}
documentation_url: https://docs.github.com/rest/gists/gists#get-a-gist
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: PATCH /gists/{gist_id}
documentation_url: https://docs.github.com/rest/gists/gists#update-a-gist
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /gists/{gist_id}/comments
documentation_url: https://docs.github.com/rest/gists/comments#list-gist-comments
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /gists/{gist_id}/comments
documentation_url: https://docs.github.com/rest/gists/comments#create-a-gist-comment
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /gists/{gist_id}/comments/{comment_id}
documentation_url: https://docs.github.com/rest/gists/comments#delete-a-gist-comment
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /gists/{gist_id}/comments/{comment_id}
documentation_url: https://docs.github.com/rest/gists/comments#get-a-gist-comment
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: PATCH /gists/{gist_id}/comments/{comment_id}
documentation_url: https://docs.github.com/rest/gists/comments#update-a-gist-comment
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /gists/{gist_id}/commits
documentation_url: https://docs.github.com/rest/gists/gists#list-gist-commits
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /gists/{gist_id}/forks
documentation_url: https://docs.github.com/rest/gists/gists#list-gist-forks
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /gists/{gist_id}/forks
documentation_url: https://docs.github.com/rest/gists/gists#fork-a-gist
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /gists/{gist_id}/star
documentation_url: https://docs.github.com/rest/gists/gists#unstar-a-gist
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /gists/{gist_id}/star
documentation_url: https://docs.github.com/rest/gists/gists#check-if-a-gist-is-starred
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: PUT /gists/{gist_id}/star
documentation_url: https://docs.github.com/rest/gists/gists#star-a-gist
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /gists/{gist_id}/{sha}
documentation_url: https://docs.github.com/rest/gists/gists#get-a-gist-revision
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /gitignore/templates
documentation_url: https://docs.github.com/rest/gitignore/gitignore#get-all-gitignore-templates
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /gitignore/templates/{name}
documentation_url: https://docs.github.com/rest/gitignore/gitignore#get-a-gitignore-template
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /installation/repositories
documentation_url: https://docs.github.com/rest/apps/installations#list-repositories-accessible-to-the-app-installation
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /installation/token
documentation_url: https://docs.github.com/rest/apps/installations#revoke-an-installation-access-token
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /issues
documentation_url: https://docs.github.com/rest/issues/issues#list-issues-assigned-to-the-authenticated-user
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /licenses
documentation_url: https://docs.github.com/rest/licenses/licenses#get-all-commonly-used-licenses
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /licenses/{license}
documentation_url: https://docs.github.com/rest/licenses/licenses#get-a-license
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: DELETE /manage/v1/access/ssh
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/manage-ghes#delete-ssh-key
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /manage/v1/access/ssh
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/manage-ghes#get-ssh-keys
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /manage/v1/access/ssh
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/manage-ghes#set-ssh-key
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /manage/v1/checks/system-requirements
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/manage-ghes#get-system-requirements-check-results-on-configured-nodes
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /manage/v1/config/init
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/manage-ghes#initialize-instance-configuration-with-license-upload
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /manage/v1/config/license
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/manage-ghes#get-the-enterprise-license-information
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: PUT /manage/v1/config/license
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/manage-ghes#upload-an-enterprise-license
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /manage/v1/config/license/check
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/manage-ghes#check-a-license
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /manage/v1/config/nodes
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/manage-ghes#get-ghes-node-metadata-for-all-nodes
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /manage/v1/config/settings
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/manage-ghes#get-settings
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: PUT /manage/v1/config/settings
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/manage-ghes#set-settings
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /manage/v1/maintenance
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/manage-ghes#get-the-status-of-maintenance-mode
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /manage/v1/maintenance
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/manage-ghes#set-the-status-of-maintenance-mode
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /manage/v1/replication/status
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/manage-ghes#get-the-status-of-services-running-on-all-replica-nodes
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: GET /manage/v1/version
documentation_url: https://docs.github.com/[email protected]/rest/enterprise-admin/manage-ghes#get-all-ghes-release-versions-for-all-nodes
openapi_files:
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /markdown
documentation_url: https://docs.github.com/rest/markdown/markdown#render-a-markdown-document
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json
- name: POST /markdown/raw
documentation_url: https://docs.github.com/rest/markdown/markdown#render-a-markdown-document-in-raw-mode
openapi_files:
- descriptions/api.github.com/api.github.com.json
- descriptions/ghec/ghec.json
- descriptions/ghes-3.12/ghes-3.12.json