@octokit/openapi 7.12.1 → 7.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/generated/api.github.com.deref.json +739 -6
- package/generated/api.github.com.json +290 -4
- package/generated/ghes-3.2-diff-to-api.github.com.deref.json +1 -1
- package/generated/ghes-3.2-diff-to-api.github.com.json +1 -1
- package/generated/ghes-3.2-diff-to-ghes-3.3.deref.json +5 -2
- package/generated/ghes-3.2-diff-to-ghes-3.3.json +3 -2
- package/generated/ghes-3.2.deref.json +9 -6
- package/generated/ghes-3.2.json +5 -4
- package/generated/ghes-3.3-diff-to-ghes-3.4.deref.json +2 -2
- package/generated/ghes-3.3-diff-to-ghes-3.4.json +2 -2
- package/generated/ghes-3.3.deref.json +9 -6
- package/generated/ghes-3.3.json +5 -4
- package/generated/ghes-3.4-diff-to-ghes-3.5.deref.json +4 -1
- package/generated/ghes-3.4-diff-to-ghes-3.5.json +2 -1
- package/generated/ghes-3.4.deref.json +9 -6
- package/generated/ghes-3.4.json +5 -4
- package/generated/ghes-3.5-anicca-diff-to-ghes-3.6.deref.json +11 -0
- package/generated/ghes-3.5-diff-to-api.github.com.deref.json +1 -1
- package/generated/ghes-3.5-diff-to-api.github.com.json +1 -1
- package/generated/ghes-3.5-diff-to-ghes-3.6.deref.json +6 -2
- package/generated/ghes-3.5-diff-to-ghes-3.6.json +3 -2
- package/generated/ghes-3.5.deref.json +116 -6
- package/generated/ghes-3.5.json +111 -4
- package/generated/ghes-3.6-anicca-diff-to-api.github.com.deref.json +106 -11
- package/generated/ghes-3.6-diff-to-api.github.com.deref.json +8888 -1
- package/generated/ghes-3.6-diff-to-api.github.com.json +376 -1
- package/generated/ghes-3.6.deref.json +779 -116
- package/generated/ghes-3.6.json +542 -113
- package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +6 -0
- package/generated/github.ae-diff-to-api.github.com.deref.json +28 -2
- package/generated/github.ae-diff-to-api.github.com.json +9 -2
- package/generated/github.ae.deref.json +76 -6
- package/generated/github.ae.json +55 -4
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.14.0",
|
|
5
5
|
"title": "GitHub's official OpenAPI spec + Octokit extension",
|
|
6
6
|
"description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs",
|
|
7
7
|
"license": {
|
|
@@ -82393,6 +82393,339 @@
|
|
|
82393
82393
|
"x-octokit": {}
|
|
82394
82394
|
}
|
|
82395
82395
|
},
|
|
82396
|
+
"/orgs/{org}/external-group/{group_id}": {
|
|
82397
|
+
"get": {
|
|
82398
|
+
"summary": "Get an external group",
|
|
82399
|
+
"description": "Displays information about the specific group's usage. Provides a list of the group's external members as well as a list of teams that this group is connected to.\n\nYou can manage team membership with your identity provider using Enterprise Managed Users for GitHub Enterprise Cloud. For more information, see \"[GitHub's products](https://docs.github.com/enterprise-server@3.6/github/getting-started-with-github/githubs-products)\" in the GitHub Help documentation.",
|
|
82400
|
+
"tags": [
|
|
82401
|
+
"teams"
|
|
82402
|
+
],
|
|
82403
|
+
"operationId": "teams/external-idp-group-info-for-org",
|
|
82404
|
+
"externalDocs": {
|
|
82405
|
+
"description": "API method documentation",
|
|
82406
|
+
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/teams#external-idp-group-info-for-an-organization"
|
|
82407
|
+
},
|
|
82408
|
+
"parameters": [
|
|
82409
|
+
{
|
|
82410
|
+
"name": "org",
|
|
82411
|
+
"description": "The organization name. The name is not case sensitive.",
|
|
82412
|
+
"in": "path",
|
|
82413
|
+
"required": true,
|
|
82414
|
+
"schema": {
|
|
82415
|
+
"type": "string"
|
|
82416
|
+
}
|
|
82417
|
+
},
|
|
82418
|
+
{
|
|
82419
|
+
"name": "group_id",
|
|
82420
|
+
"description": "The unique identifier of the group.",
|
|
82421
|
+
"in": "path",
|
|
82422
|
+
"required": true,
|
|
82423
|
+
"schema": {
|
|
82424
|
+
"type": "integer"
|
|
82425
|
+
}
|
|
82426
|
+
}
|
|
82427
|
+
],
|
|
82428
|
+
"responses": {
|
|
82429
|
+
"200": {
|
|
82430
|
+
"description": "Response",
|
|
82431
|
+
"content": {
|
|
82432
|
+
"application/json": {
|
|
82433
|
+
"schema": {
|
|
82434
|
+
"title": "ExternalGroup",
|
|
82435
|
+
"description": "Information about an external group's usage and its members",
|
|
82436
|
+
"type": "object",
|
|
82437
|
+
"required": [
|
|
82438
|
+
"group_id",
|
|
82439
|
+
"group_name",
|
|
82440
|
+
"teams",
|
|
82441
|
+
"members"
|
|
82442
|
+
],
|
|
82443
|
+
"properties": {
|
|
82444
|
+
"group_id": {
|
|
82445
|
+
"description": "The internal ID of the group",
|
|
82446
|
+
"example": 1,
|
|
82447
|
+
"type": "integer"
|
|
82448
|
+
},
|
|
82449
|
+
"group_name": {
|
|
82450
|
+
"description": "The display name for the group",
|
|
82451
|
+
"example": "group-azuread-test",
|
|
82452
|
+
"type": "string"
|
|
82453
|
+
},
|
|
82454
|
+
"updated_at": {
|
|
82455
|
+
"description": "The date when the group was last updated_at",
|
|
82456
|
+
"example": "2021-01-03 22:27:15:000 -700",
|
|
82457
|
+
"type": "string"
|
|
82458
|
+
},
|
|
82459
|
+
"teams": {
|
|
82460
|
+
"description": "An array of teams linked to this group",
|
|
82461
|
+
"example": [
|
|
82462
|
+
{
|
|
82463
|
+
"team_id": 1,
|
|
82464
|
+
"team_name": "team-test"
|
|
82465
|
+
},
|
|
82466
|
+
{
|
|
82467
|
+
"team_id": 2,
|
|
82468
|
+
"team_name": "team-test2"
|
|
82469
|
+
}
|
|
82470
|
+
],
|
|
82471
|
+
"type": "array",
|
|
82472
|
+
"items": {
|
|
82473
|
+
"type": "object",
|
|
82474
|
+
"required": [
|
|
82475
|
+
"team_id",
|
|
82476
|
+
"team_name"
|
|
82477
|
+
],
|
|
82478
|
+
"properties": {
|
|
82479
|
+
"team_id": {
|
|
82480
|
+
"description": "The id for a team",
|
|
82481
|
+
"example": 1,
|
|
82482
|
+
"type": "integer"
|
|
82483
|
+
},
|
|
82484
|
+
"team_name": {
|
|
82485
|
+
"description": "The name of the team",
|
|
82486
|
+
"example": "team-test",
|
|
82487
|
+
"type": "string"
|
|
82488
|
+
}
|
|
82489
|
+
}
|
|
82490
|
+
}
|
|
82491
|
+
},
|
|
82492
|
+
"members": {
|
|
82493
|
+
"description": "An array of external members linked to this group",
|
|
82494
|
+
"example": [
|
|
82495
|
+
{
|
|
82496
|
+
"member_id": 1,
|
|
82497
|
+
"member_login": "mona-lisa_eocsaxrs",
|
|
82498
|
+
"member_name": "Mona Lisa",
|
|
82499
|
+
"member_email": "mona_lisa@github.com"
|
|
82500
|
+
},
|
|
82501
|
+
{
|
|
82502
|
+
"member_id": 2,
|
|
82503
|
+
"member_login": "octo-lisa_eocsaxrs",
|
|
82504
|
+
"member_name": "Octo Lisa",
|
|
82505
|
+
"member_email": "octo_lisa@github.com"
|
|
82506
|
+
}
|
|
82507
|
+
],
|
|
82508
|
+
"type": "array",
|
|
82509
|
+
"items": {
|
|
82510
|
+
"type": "object",
|
|
82511
|
+
"required": [
|
|
82512
|
+
"member_id",
|
|
82513
|
+
"member_login",
|
|
82514
|
+
"member_name",
|
|
82515
|
+
"member_email"
|
|
82516
|
+
],
|
|
82517
|
+
"properties": {
|
|
82518
|
+
"member_id": {
|
|
82519
|
+
"description": "The internal user ID of the identity",
|
|
82520
|
+
"example": 1,
|
|
82521
|
+
"type": "integer"
|
|
82522
|
+
},
|
|
82523
|
+
"member_login": {
|
|
82524
|
+
"description": "The handle/login for the user",
|
|
82525
|
+
"example": "mona-lisa_eocsaxrs",
|
|
82526
|
+
"type": "string"
|
|
82527
|
+
},
|
|
82528
|
+
"member_name": {
|
|
82529
|
+
"description": "The user display name/profile name",
|
|
82530
|
+
"example": "Mona Lisa",
|
|
82531
|
+
"type": "string"
|
|
82532
|
+
},
|
|
82533
|
+
"member_email": {
|
|
82534
|
+
"description": "An email attached to a user",
|
|
82535
|
+
"example": "mona_lisa@github.com",
|
|
82536
|
+
"type": "string"
|
|
82537
|
+
}
|
|
82538
|
+
}
|
|
82539
|
+
}
|
|
82540
|
+
}
|
|
82541
|
+
}
|
|
82542
|
+
},
|
|
82543
|
+
"examples": {
|
|
82544
|
+
"default": {
|
|
82545
|
+
"value": {
|
|
82546
|
+
"group_id": "123",
|
|
82547
|
+
"group_name": "Octocat admins",
|
|
82548
|
+
"updated_at": "2021-01-24T11:31:04-06:00",
|
|
82549
|
+
"teams": [
|
|
82550
|
+
{
|
|
82551
|
+
"team_id": 1,
|
|
82552
|
+
"team_name": "team-test"
|
|
82553
|
+
},
|
|
82554
|
+
{
|
|
82555
|
+
"team_id": 2,
|
|
82556
|
+
"team_name": "team-test2"
|
|
82557
|
+
}
|
|
82558
|
+
],
|
|
82559
|
+
"members": [
|
|
82560
|
+
{
|
|
82561
|
+
"member_id": 1,
|
|
82562
|
+
"member_login": "mona-lisa_eocsaxrs",
|
|
82563
|
+
"member_name": "Mona Lisa",
|
|
82564
|
+
"member_email": "mona_lisa@github.com"
|
|
82565
|
+
},
|
|
82566
|
+
{
|
|
82567
|
+
"member_id": 2,
|
|
82568
|
+
"member_login": "octo-lisa_eocsaxrs",
|
|
82569
|
+
"member_name": "Octo Lisa",
|
|
82570
|
+
"member_email": "octo_lisa@github.com"
|
|
82571
|
+
}
|
|
82572
|
+
]
|
|
82573
|
+
}
|
|
82574
|
+
}
|
|
82575
|
+
}
|
|
82576
|
+
}
|
|
82577
|
+
}
|
|
82578
|
+
}
|
|
82579
|
+
},
|
|
82580
|
+
"x-github": {
|
|
82581
|
+
"githubCloudOnly": true,
|
|
82582
|
+
"enabledForGitHubApps": true,
|
|
82583
|
+
"category": "teams",
|
|
82584
|
+
"subcategory": "external-groups"
|
|
82585
|
+
},
|
|
82586
|
+
"x-octokit": {}
|
|
82587
|
+
}
|
|
82588
|
+
},
|
|
82589
|
+
"/orgs/{org}/external-groups": {
|
|
82590
|
+
"get": {
|
|
82591
|
+
"summary": "List external groups in an organization",
|
|
82592
|
+
"description": "Lists external groups available in an organization. You can query the groups using the `display_name` parameter, only groups with a `group_name` containing the text provided in the `display_name` parameter will be returned. You can also limit your page results using the `per_page` parameter. GitHub Enterprise Server generates a url-encoded `page` token using a cursor value for where the next page begins. For more information on cursor pagination, see \"[Offset and Cursor Pagination explained](https://dev.to/jackmarchant/offset-and-cursor-pagination-explained-b89).\"\n\nYou can manage team membership with your identity provider using Enterprise Managed Users for GitHub Enterprise Cloud. For more information, see \"[GitHub's products](https://docs.github.com/enterprise-server@3.6/github/getting-started-with-github/githubs-products)\" in the GitHub Help documentation.",
|
|
82593
|
+
"tags": [
|
|
82594
|
+
"teams"
|
|
82595
|
+
],
|
|
82596
|
+
"operationId": "teams/list-external-idp-groups-for-org",
|
|
82597
|
+
"externalDocs": {
|
|
82598
|
+
"description": "API method documentation",
|
|
82599
|
+
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/teams#list-external-idp-groups-for-an-organization"
|
|
82600
|
+
},
|
|
82601
|
+
"parameters": [
|
|
82602
|
+
{
|
|
82603
|
+
"name": "org",
|
|
82604
|
+
"description": "The organization name. The name is not case sensitive.",
|
|
82605
|
+
"in": "path",
|
|
82606
|
+
"required": true,
|
|
82607
|
+
"schema": {
|
|
82608
|
+
"type": "string"
|
|
82609
|
+
}
|
|
82610
|
+
},
|
|
82611
|
+
{
|
|
82612
|
+
"name": "per_page",
|
|
82613
|
+
"description": "The number of results per page (max 100).",
|
|
82614
|
+
"in": "query",
|
|
82615
|
+
"schema": {
|
|
82616
|
+
"type": "integer",
|
|
82617
|
+
"default": 30
|
|
82618
|
+
}
|
|
82619
|
+
},
|
|
82620
|
+
{
|
|
82621
|
+
"name": "page",
|
|
82622
|
+
"description": "Page token",
|
|
82623
|
+
"in": "query",
|
|
82624
|
+
"schema": {
|
|
82625
|
+
"type": "integer"
|
|
82626
|
+
}
|
|
82627
|
+
},
|
|
82628
|
+
{
|
|
82629
|
+
"name": "display_name",
|
|
82630
|
+
"description": "Limits the list to groups containing the text in the group name",
|
|
82631
|
+
"in": "query",
|
|
82632
|
+
"schema": {
|
|
82633
|
+
"type": "string"
|
|
82634
|
+
}
|
|
82635
|
+
}
|
|
82636
|
+
],
|
|
82637
|
+
"responses": {
|
|
82638
|
+
"200": {
|
|
82639
|
+
"description": "Response",
|
|
82640
|
+
"content": {
|
|
82641
|
+
"application/json": {
|
|
82642
|
+
"schema": {
|
|
82643
|
+
"title": "ExternalGroups",
|
|
82644
|
+
"description": "A list of external groups available to be connected to a team",
|
|
82645
|
+
"type": "object",
|
|
82646
|
+
"properties": {
|
|
82647
|
+
"groups": {
|
|
82648
|
+
"description": "An array of external groups available to be mapped to a team",
|
|
82649
|
+
"example": [
|
|
82650
|
+
{
|
|
82651
|
+
"group_id": 1,
|
|
82652
|
+
"group_name": "group-azuread-test",
|
|
82653
|
+
"updated_at": "2021-01-03 22:27:15:000 -700"
|
|
82654
|
+
},
|
|
82655
|
+
{
|
|
82656
|
+
"group_id": 2,
|
|
82657
|
+
"group_name": "group-azuread-test2",
|
|
82658
|
+
"updated_at": "2021-06-03 22:27:15:000 -700"
|
|
82659
|
+
}
|
|
82660
|
+
],
|
|
82661
|
+
"type": "array",
|
|
82662
|
+
"items": {
|
|
82663
|
+
"type": "object",
|
|
82664
|
+
"required": [
|
|
82665
|
+
"group_id",
|
|
82666
|
+
"group_name",
|
|
82667
|
+
"updated_at"
|
|
82668
|
+
],
|
|
82669
|
+
"properties": {
|
|
82670
|
+
"group_id": {
|
|
82671
|
+
"description": "The internal ID of the group",
|
|
82672
|
+
"example": 1,
|
|
82673
|
+
"type": "integer"
|
|
82674
|
+
},
|
|
82675
|
+
"group_name": {
|
|
82676
|
+
"description": "The display name of the group",
|
|
82677
|
+
"example": "group-azuread-test",
|
|
82678
|
+
"type": "string"
|
|
82679
|
+
},
|
|
82680
|
+
"updated_at": {
|
|
82681
|
+
"description": "The time of the last update for this group",
|
|
82682
|
+
"example": "2019-06-03 22:27:15:000 -700",
|
|
82683
|
+
"type": "string"
|
|
82684
|
+
}
|
|
82685
|
+
}
|
|
82686
|
+
}
|
|
82687
|
+
}
|
|
82688
|
+
}
|
|
82689
|
+
},
|
|
82690
|
+
"examples": {
|
|
82691
|
+
"default": {
|
|
82692
|
+
"value": {
|
|
82693
|
+
"groups": [
|
|
82694
|
+
{
|
|
82695
|
+
"group_id": "123",
|
|
82696
|
+
"group_name": "Octocat admins",
|
|
82697
|
+
"updated_at": "2021-01-24T11:31:04-06:00"
|
|
82698
|
+
},
|
|
82699
|
+
{
|
|
82700
|
+
"group_id": "456",
|
|
82701
|
+
"group_name": "Octocat docs members",
|
|
82702
|
+
"updated_at": "2021-03-24T11:31:04-06:00"
|
|
82703
|
+
}
|
|
82704
|
+
]
|
|
82705
|
+
}
|
|
82706
|
+
}
|
|
82707
|
+
}
|
|
82708
|
+
}
|
|
82709
|
+
},
|
|
82710
|
+
"headers": {
|
|
82711
|
+
"Link": {
|
|
82712
|
+
"example": "<https://api.github.com/resource?per_page=2&page=url-encoded-next-page-token>; rel=\"next\"",
|
|
82713
|
+
"schema": {
|
|
82714
|
+
"type": "string"
|
|
82715
|
+
}
|
|
82716
|
+
}
|
|
82717
|
+
}
|
|
82718
|
+
}
|
|
82719
|
+
},
|
|
82720
|
+
"x-github": {
|
|
82721
|
+
"githubCloudOnly": true,
|
|
82722
|
+
"enabledForGitHubApps": true,
|
|
82723
|
+
"category": "teams",
|
|
82724
|
+
"subcategory": "external-groups"
|
|
82725
|
+
},
|
|
82726
|
+
"x-octokit": {}
|
|
82727
|
+
}
|
|
82728
|
+
},
|
|
82396
82729
|
"/orgs/{org}/hooks": {
|
|
82397
82730
|
"get": {
|
|
82398
82731
|
"summary": "List organization webhooks",
|
|
@@ -110453,6 +110786,384 @@
|
|
|
110453
110786
|
"x-octokit": {}
|
|
110454
110787
|
}
|
|
110455
110788
|
},
|
|
110789
|
+
"/orgs/{org}/teams/{team_slug}/external-groups": {
|
|
110790
|
+
"get": {
|
|
110791
|
+
"summary": "List a connection between an external group and a team",
|
|
110792
|
+
"description": "Lists a connection between a team and an external group.\n\nYou can manage team membership with your identity provider using Enterprise Managed Users for GitHub Enterprise Cloud. For more information, see \"[GitHub's products](https://docs.github.com/enterprise-server@3.6/github/getting-started-with-github/githubs-products)\" in the GitHub Help documentation.",
|
|
110793
|
+
"tags": [
|
|
110794
|
+
"teams"
|
|
110795
|
+
],
|
|
110796
|
+
"operationId": "teams/list-linked-external-idp-groups-to-team-for-org",
|
|
110797
|
+
"externalDocs": {
|
|
110798
|
+
"description": "API method documentation",
|
|
110799
|
+
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/teams#list-external-idp-group-team-connection"
|
|
110800
|
+
},
|
|
110801
|
+
"parameters": [
|
|
110802
|
+
{
|
|
110803
|
+
"name": "org",
|
|
110804
|
+
"description": "The organization name. The name is not case sensitive.",
|
|
110805
|
+
"in": "path",
|
|
110806
|
+
"required": true,
|
|
110807
|
+
"schema": {
|
|
110808
|
+
"type": "string"
|
|
110809
|
+
}
|
|
110810
|
+
},
|
|
110811
|
+
{
|
|
110812
|
+
"name": "team_slug",
|
|
110813
|
+
"description": "The slug of the team name.",
|
|
110814
|
+
"in": "path",
|
|
110815
|
+
"required": true,
|
|
110816
|
+
"schema": {
|
|
110817
|
+
"type": "string"
|
|
110818
|
+
}
|
|
110819
|
+
}
|
|
110820
|
+
],
|
|
110821
|
+
"responses": {
|
|
110822
|
+
"200": {
|
|
110823
|
+
"description": "Response",
|
|
110824
|
+
"content": {
|
|
110825
|
+
"application/json": {
|
|
110826
|
+
"schema": {
|
|
110827
|
+
"title": "ExternalGroups",
|
|
110828
|
+
"description": "A list of external groups available to be connected to a team",
|
|
110829
|
+
"type": "object",
|
|
110830
|
+
"properties": {
|
|
110831
|
+
"groups": {
|
|
110832
|
+
"description": "An array of external groups available to be mapped to a team",
|
|
110833
|
+
"example": [
|
|
110834
|
+
{
|
|
110835
|
+
"group_id": 1,
|
|
110836
|
+
"group_name": "group-azuread-test",
|
|
110837
|
+
"updated_at": "2021-01-03 22:27:15:000 -700"
|
|
110838
|
+
},
|
|
110839
|
+
{
|
|
110840
|
+
"group_id": 2,
|
|
110841
|
+
"group_name": "group-azuread-test2",
|
|
110842
|
+
"updated_at": "2021-06-03 22:27:15:000 -700"
|
|
110843
|
+
}
|
|
110844
|
+
],
|
|
110845
|
+
"type": "array",
|
|
110846
|
+
"items": {
|
|
110847
|
+
"type": "object",
|
|
110848
|
+
"required": [
|
|
110849
|
+
"group_id",
|
|
110850
|
+
"group_name",
|
|
110851
|
+
"updated_at"
|
|
110852
|
+
],
|
|
110853
|
+
"properties": {
|
|
110854
|
+
"group_id": {
|
|
110855
|
+
"description": "The internal ID of the group",
|
|
110856
|
+
"example": 1,
|
|
110857
|
+
"type": "integer"
|
|
110858
|
+
},
|
|
110859
|
+
"group_name": {
|
|
110860
|
+
"description": "The display name of the group",
|
|
110861
|
+
"example": "group-azuread-test",
|
|
110862
|
+
"type": "string"
|
|
110863
|
+
},
|
|
110864
|
+
"updated_at": {
|
|
110865
|
+
"description": "The time of the last update for this group",
|
|
110866
|
+
"example": "2019-06-03 22:27:15:000 -700",
|
|
110867
|
+
"type": "string"
|
|
110868
|
+
}
|
|
110869
|
+
}
|
|
110870
|
+
}
|
|
110871
|
+
}
|
|
110872
|
+
}
|
|
110873
|
+
},
|
|
110874
|
+
"examples": {
|
|
110875
|
+
"default": {
|
|
110876
|
+
"value": {
|
|
110877
|
+
"groups": [
|
|
110878
|
+
{
|
|
110879
|
+
"group_id": "123",
|
|
110880
|
+
"group_name": "Octocat admins",
|
|
110881
|
+
"updated_at": "2021-01-24T11:31:04-06:00"
|
|
110882
|
+
},
|
|
110883
|
+
{
|
|
110884
|
+
"group_id": "456",
|
|
110885
|
+
"group_name": "Octocat docs members",
|
|
110886
|
+
"updated_at": "2021-03-24T11:31:04-06:00"
|
|
110887
|
+
}
|
|
110888
|
+
]
|
|
110889
|
+
}
|
|
110890
|
+
}
|
|
110891
|
+
}
|
|
110892
|
+
}
|
|
110893
|
+
}
|
|
110894
|
+
}
|
|
110895
|
+
},
|
|
110896
|
+
"x-github": {
|
|
110897
|
+
"githubCloudOnly": true,
|
|
110898
|
+
"enabledForGitHubApps": true,
|
|
110899
|
+
"category": "teams",
|
|
110900
|
+
"subcategory": "external-groups"
|
|
110901
|
+
},
|
|
110902
|
+
"x-octokit": {}
|
|
110903
|
+
},
|
|
110904
|
+
"patch": {
|
|
110905
|
+
"summary": "Update the connection between an external group and a team",
|
|
110906
|
+
"description": "Creates a connection between a team and an external group. Only one external group can be linked to a team.\n\nYou can manage team membership with your identity provider using Enterprise Managed Users for GitHub Enterprise Cloud. For more information, see \"[GitHub's products](https://docs.github.com/enterprise-server@3.6/github/getting-started-with-github/githubs-products)\" in the GitHub Help documentation.",
|
|
110907
|
+
"tags": [
|
|
110908
|
+
"teams"
|
|
110909
|
+
],
|
|
110910
|
+
"operationId": "teams/link-external-idp-group-to-team-for-org",
|
|
110911
|
+
"externalDocs": {
|
|
110912
|
+
"description": "API method documentation",
|
|
110913
|
+
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/teams#link-external-idp-group-team-connection"
|
|
110914
|
+
},
|
|
110915
|
+
"parameters": [
|
|
110916
|
+
{
|
|
110917
|
+
"name": "org",
|
|
110918
|
+
"description": "The organization name. The name is not case sensitive.",
|
|
110919
|
+
"in": "path",
|
|
110920
|
+
"required": true,
|
|
110921
|
+
"schema": {
|
|
110922
|
+
"type": "string"
|
|
110923
|
+
}
|
|
110924
|
+
},
|
|
110925
|
+
{
|
|
110926
|
+
"name": "team_slug",
|
|
110927
|
+
"description": "The slug of the team name.",
|
|
110928
|
+
"in": "path",
|
|
110929
|
+
"required": true,
|
|
110930
|
+
"schema": {
|
|
110931
|
+
"type": "string"
|
|
110932
|
+
}
|
|
110933
|
+
}
|
|
110934
|
+
],
|
|
110935
|
+
"requestBody": {
|
|
110936
|
+
"required": true,
|
|
110937
|
+
"content": {
|
|
110938
|
+
"application/json": {
|
|
110939
|
+
"schema": {
|
|
110940
|
+
"type": "object",
|
|
110941
|
+
"properties": {
|
|
110942
|
+
"group_id": {
|
|
110943
|
+
"type": "integer",
|
|
110944
|
+
"description": "External Group Id",
|
|
110945
|
+
"example": 1
|
|
110946
|
+
}
|
|
110947
|
+
},
|
|
110948
|
+
"required": [
|
|
110949
|
+
"group_id"
|
|
110950
|
+
]
|
|
110951
|
+
},
|
|
110952
|
+
"examples": {
|
|
110953
|
+
"default": {
|
|
110954
|
+
"value": {
|
|
110955
|
+
"group_id": 123
|
|
110956
|
+
}
|
|
110957
|
+
}
|
|
110958
|
+
}
|
|
110959
|
+
}
|
|
110960
|
+
}
|
|
110961
|
+
},
|
|
110962
|
+
"responses": {
|
|
110963
|
+
"200": {
|
|
110964
|
+
"description": "Response",
|
|
110965
|
+
"content": {
|
|
110966
|
+
"application/json": {
|
|
110967
|
+
"schema": {
|
|
110968
|
+
"title": "ExternalGroup",
|
|
110969
|
+
"description": "Information about an external group's usage and its members",
|
|
110970
|
+
"type": "object",
|
|
110971
|
+
"required": [
|
|
110972
|
+
"group_id",
|
|
110973
|
+
"group_name",
|
|
110974
|
+
"teams",
|
|
110975
|
+
"members"
|
|
110976
|
+
],
|
|
110977
|
+
"properties": {
|
|
110978
|
+
"group_id": {
|
|
110979
|
+
"description": "The internal ID of the group",
|
|
110980
|
+
"example": 1,
|
|
110981
|
+
"type": "integer"
|
|
110982
|
+
},
|
|
110983
|
+
"group_name": {
|
|
110984
|
+
"description": "The display name for the group",
|
|
110985
|
+
"example": "group-azuread-test",
|
|
110986
|
+
"type": "string"
|
|
110987
|
+
},
|
|
110988
|
+
"updated_at": {
|
|
110989
|
+
"description": "The date when the group was last updated_at",
|
|
110990
|
+
"example": "2021-01-03 22:27:15:000 -700",
|
|
110991
|
+
"type": "string"
|
|
110992
|
+
},
|
|
110993
|
+
"teams": {
|
|
110994
|
+
"description": "An array of teams linked to this group",
|
|
110995
|
+
"example": [
|
|
110996
|
+
{
|
|
110997
|
+
"team_id": 1,
|
|
110998
|
+
"team_name": "team-test"
|
|
110999
|
+
},
|
|
111000
|
+
{
|
|
111001
|
+
"team_id": 2,
|
|
111002
|
+
"team_name": "team-test2"
|
|
111003
|
+
}
|
|
111004
|
+
],
|
|
111005
|
+
"type": "array",
|
|
111006
|
+
"items": {
|
|
111007
|
+
"type": "object",
|
|
111008
|
+
"required": [
|
|
111009
|
+
"team_id",
|
|
111010
|
+
"team_name"
|
|
111011
|
+
],
|
|
111012
|
+
"properties": {
|
|
111013
|
+
"team_id": {
|
|
111014
|
+
"description": "The id for a team",
|
|
111015
|
+
"example": 1,
|
|
111016
|
+
"type": "integer"
|
|
111017
|
+
},
|
|
111018
|
+
"team_name": {
|
|
111019
|
+
"description": "The name of the team",
|
|
111020
|
+
"example": "team-test",
|
|
111021
|
+
"type": "string"
|
|
111022
|
+
}
|
|
111023
|
+
}
|
|
111024
|
+
}
|
|
111025
|
+
},
|
|
111026
|
+
"members": {
|
|
111027
|
+
"description": "An array of external members linked to this group",
|
|
111028
|
+
"example": [
|
|
111029
|
+
{
|
|
111030
|
+
"member_id": 1,
|
|
111031
|
+
"member_login": "mona-lisa_eocsaxrs",
|
|
111032
|
+
"member_name": "Mona Lisa",
|
|
111033
|
+
"member_email": "mona_lisa@github.com"
|
|
111034
|
+
},
|
|
111035
|
+
{
|
|
111036
|
+
"member_id": 2,
|
|
111037
|
+
"member_login": "octo-lisa_eocsaxrs",
|
|
111038
|
+
"member_name": "Octo Lisa",
|
|
111039
|
+
"member_email": "octo_lisa@github.com"
|
|
111040
|
+
}
|
|
111041
|
+
],
|
|
111042
|
+
"type": "array",
|
|
111043
|
+
"items": {
|
|
111044
|
+
"type": "object",
|
|
111045
|
+
"required": [
|
|
111046
|
+
"member_id",
|
|
111047
|
+
"member_login",
|
|
111048
|
+
"member_name",
|
|
111049
|
+
"member_email"
|
|
111050
|
+
],
|
|
111051
|
+
"properties": {
|
|
111052
|
+
"member_id": {
|
|
111053
|
+
"description": "The internal user ID of the identity",
|
|
111054
|
+
"example": 1,
|
|
111055
|
+
"type": "integer"
|
|
111056
|
+
},
|
|
111057
|
+
"member_login": {
|
|
111058
|
+
"description": "The handle/login for the user",
|
|
111059
|
+
"example": "mona-lisa_eocsaxrs",
|
|
111060
|
+
"type": "string"
|
|
111061
|
+
},
|
|
111062
|
+
"member_name": {
|
|
111063
|
+
"description": "The user display name/profile name",
|
|
111064
|
+
"example": "Mona Lisa",
|
|
111065
|
+
"type": "string"
|
|
111066
|
+
},
|
|
111067
|
+
"member_email": {
|
|
111068
|
+
"description": "An email attached to a user",
|
|
111069
|
+
"example": "mona_lisa@github.com",
|
|
111070
|
+
"type": "string"
|
|
111071
|
+
}
|
|
111072
|
+
}
|
|
111073
|
+
}
|
|
111074
|
+
}
|
|
111075
|
+
}
|
|
111076
|
+
},
|
|
111077
|
+
"examples": {
|
|
111078
|
+
"default": {
|
|
111079
|
+
"value": {
|
|
111080
|
+
"group_id": "123",
|
|
111081
|
+
"group_name": "Octocat admins",
|
|
111082
|
+
"updated_at": "2021-01-24T11:31:04-06:00",
|
|
111083
|
+
"teams": [
|
|
111084
|
+
{
|
|
111085
|
+
"team_id": 1,
|
|
111086
|
+
"team_name": "team-test"
|
|
111087
|
+
},
|
|
111088
|
+
{
|
|
111089
|
+
"team_id": 2,
|
|
111090
|
+
"team_name": "team-test2"
|
|
111091
|
+
}
|
|
111092
|
+
],
|
|
111093
|
+
"members": [
|
|
111094
|
+
{
|
|
111095
|
+
"member_id": 1,
|
|
111096
|
+
"member_login": "mona-lisa_eocsaxrs",
|
|
111097
|
+
"member_name": "Mona Lisa",
|
|
111098
|
+
"member_email": "mona_lisa@github.com"
|
|
111099
|
+
},
|
|
111100
|
+
{
|
|
111101
|
+
"member_id": 2,
|
|
111102
|
+
"member_login": "octo-lisa_eocsaxrs",
|
|
111103
|
+
"member_name": "Octo Lisa",
|
|
111104
|
+
"member_email": "octo_lisa@github.com"
|
|
111105
|
+
}
|
|
111106
|
+
]
|
|
111107
|
+
}
|
|
111108
|
+
}
|
|
111109
|
+
}
|
|
111110
|
+
}
|
|
111111
|
+
}
|
|
111112
|
+
}
|
|
111113
|
+
},
|
|
111114
|
+
"x-github": {
|
|
111115
|
+
"githubCloudOnly": true,
|
|
111116
|
+
"enabledForGitHubApps": false,
|
|
111117
|
+
"category": "teams",
|
|
111118
|
+
"subcategory": "external-groups"
|
|
111119
|
+
},
|
|
111120
|
+
"x-octokit": {}
|
|
111121
|
+
},
|
|
111122
|
+
"delete": {
|
|
111123
|
+
"summary": "Remove the connection between an external group and a team",
|
|
111124
|
+
"description": "Deletes a connection between a team and an external group.\n\nYou can manage team membership with your IdP using Enterprise Managed Users for GitHub Enterprise Cloud. For more information, see [GitHub's products](https://docs.github.com/enterprise-server@3.6/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.",
|
|
111125
|
+
"tags": [
|
|
111126
|
+
"teams"
|
|
111127
|
+
],
|
|
111128
|
+
"operationId": "teams/unlink-external-idp-group-from-team-for-org",
|
|
111129
|
+
"externalDocs": {
|
|
111130
|
+
"description": "API method documentation",
|
|
111131
|
+
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/teams#unlink-external-idp-group-team-connection"
|
|
111132
|
+
},
|
|
111133
|
+
"parameters": [
|
|
111134
|
+
{
|
|
111135
|
+
"name": "org",
|
|
111136
|
+
"description": "The organization name. The name is not case sensitive.",
|
|
111137
|
+
"in": "path",
|
|
111138
|
+
"required": true,
|
|
111139
|
+
"schema": {
|
|
111140
|
+
"type": "string"
|
|
111141
|
+
}
|
|
111142
|
+
},
|
|
111143
|
+
{
|
|
111144
|
+
"name": "team_slug",
|
|
111145
|
+
"description": "The slug of the team name.",
|
|
111146
|
+
"in": "path",
|
|
111147
|
+
"required": true,
|
|
111148
|
+
"schema": {
|
|
111149
|
+
"type": "string"
|
|
111150
|
+
}
|
|
111151
|
+
}
|
|
111152
|
+
],
|
|
111153
|
+
"responses": {
|
|
111154
|
+
"204": {
|
|
111155
|
+
"description": "Response"
|
|
111156
|
+
}
|
|
111157
|
+
},
|
|
111158
|
+
"x-github": {
|
|
111159
|
+
"githubCloudOnly": true,
|
|
111160
|
+
"enabledForGitHubApps": false,
|
|
111161
|
+
"category": "teams",
|
|
111162
|
+
"subcategory": "external-groups"
|
|
111163
|
+
},
|
|
111164
|
+
"x-octokit": {}
|
|
111165
|
+
}
|
|
111166
|
+
},
|
|
110456
111167
|
"/orgs/{org}/teams/{team_slug}/members": {
|
|
110457
111168
|
"get": {
|
|
110458
111169
|
"summary": "List team members",
|
|
@@ -142839,6 +143550,7 @@
|
|
|
142839
143550
|
"node_id",
|
|
142840
143551
|
"head_branch",
|
|
142841
143552
|
"run_number",
|
|
143553
|
+
"display_title",
|
|
142842
143554
|
"event",
|
|
142843
143555
|
"status",
|
|
142844
143556
|
"conclusion",
|
|
@@ -147275,6 +147987,7 @@
|
|
|
147275
147987
|
"node_id",
|
|
147276
147988
|
"head_branch",
|
|
147277
147989
|
"run_number",
|
|
147990
|
+
"display_title",
|
|
147278
147991
|
"event",
|
|
147279
147992
|
"status",
|
|
147280
147993
|
"conclusion",
|
|
@@ -147312,7 +148025,6 @@
|
|
|
147312
148025
|
"run_number": 562,
|
|
147313
148026
|
"event": "push",
|
|
147314
148027
|
"status": "queued",
|
|
147315
|
-
"conclusion": null,
|
|
147316
148028
|
"workflow_id": 159038,
|
|
147317
148029
|
"url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642",
|
|
147318
148030
|
"html_url": "https://github.com/octo-org/octo-repo/actions/runs/30433642",
|
|
@@ -147548,7 +148260,13 @@
|
|
|
147548
148260
|
"category": "actions",
|
|
147549
148261
|
"subcategory": "workflow-runs"
|
|
147550
148262
|
},
|
|
147551
|
-
"x-octokit": {
|
|
148263
|
+
"x-octokit": {
|
|
148264
|
+
"diff": {
|
|
148265
|
+
"api.github.com": {
|
|
148266
|
+
"type": "changed"
|
|
148267
|
+
}
|
|
148268
|
+
}
|
|
148269
|
+
}
|
|
147552
148270
|
},
|
|
147553
148271
|
"delete": {
|
|
147554
148272
|
"summary": "Delete a workflow run",
|
|
@@ -152298,6 +153016,7 @@
|
|
|
152298
153016
|
"node_id",
|
|
152299
153017
|
"head_branch",
|
|
152300
153018
|
"run_number",
|
|
153019
|
+
"display_title",
|
|
152301
153020
|
"event",
|
|
152302
153021
|
"status",
|
|
152303
153022
|
"conclusion",
|
|
@@ -152335,7 +153054,6 @@
|
|
|
152335
153054
|
"run_number": 562,
|
|
152336
153055
|
"event": "push",
|
|
152337
153056
|
"status": "queued",
|
|
152338
|
-
"conclusion": null,
|
|
152339
153057
|
"workflow_id": 159038,
|
|
152340
153058
|
"url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642",
|
|
152341
153059
|
"html_url": "https://github.com/octo-org/octo-repo/actions/runs/30433642",
|
|
@@ -152571,7 +153289,13 @@
|
|
|
152571
153289
|
"category": "actions",
|
|
152572
153290
|
"subcategory": "workflow-runs"
|
|
152573
153291
|
},
|
|
152574
|
-
"x-octokit": {
|
|
153292
|
+
"x-octokit": {
|
|
153293
|
+
"diff": {
|
|
153294
|
+
"api.github.com": {
|
|
153295
|
+
"type": "changed"
|
|
153296
|
+
}
|
|
153297
|
+
}
|
|
153298
|
+
}
|
|
152575
153299
|
}
|
|
152576
153300
|
},
|
|
152577
153301
|
"/repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs": {
|
|
@@ -160410,6 +161134,7 @@
|
|
|
160410
161134
|
"node_id",
|
|
160411
161135
|
"head_branch",
|
|
160412
161136
|
"run_number",
|
|
161137
|
+
"display_title",
|
|
160413
161138
|
"event",
|
|
160414
161139
|
"status",
|
|
160415
161140
|
"conclusion",
|
|
@@ -198208,7 +198933,7 @@
|
|
|
198208
198933
|
}
|
|
198209
198934
|
},
|
|
198210
198935
|
"403": {
|
|
198211
|
-
"description": "Response if the repository is archived or if
|
|
198936
|
+
"description": "Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository",
|
|
198212
198937
|
"content": {
|
|
198213
198938
|
"application/json": {
|
|
198214
198939
|
"schema": {
|
|
@@ -199410,7 +200135,7 @@
|
|
|
199410
200135
|
}
|
|
199411
200136
|
},
|
|
199412
200137
|
"403": {
|
|
199413
|
-
"description": "Response if the repository is archived or if
|
|
200138
|
+
"description": "Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository",
|
|
199414
200139
|
"content": {
|
|
199415
200140
|
"application/json": {
|
|
199416
200141
|
"schema": {
|
|
@@ -199616,7 +200341,7 @@
|
|
|
199616
200341
|
"description": "Bad Request if the sarif field is invalid"
|
|
199617
200342
|
},
|
|
199618
200343
|
"403": {
|
|
199619
|
-
"description": "Response if the repository is archived or if
|
|
200344
|
+
"description": "Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository",
|
|
199620
200345
|
"content": {
|
|
199621
200346
|
"application/json": {
|
|
199622
200347
|
"schema": {
|
|
@@ -221454,7 +222179,7 @@
|
|
|
221454
222179
|
},
|
|
221455
222180
|
"put": {
|
|
221456
222181
|
"summary": "Create or update file contents",
|
|
221457
|
-
"description": "Creates a new file or replaces an existing file in a repository. You must authenticate using an access token with the `workflow` scope to use this endpoint.",
|
|
222182
|
+
"description": "Creates a new file or replaces an existing file in a repository. You must authenticate using an access token with the `workflow` scope to use this endpoint.\n\n**Note:** If you use this endpoint and the \"[Delete a file](https://docs.github.com/enterprise-server@3.6/rest/reference/repos/#delete-file)\" endpoint in parallel, the concurrent requests will conflict and you will receive errors. You must use these endpoints serially instead.",
|
|
221458
222183
|
"tags": [
|
|
221459
222184
|
"repos"
|
|
221460
222185
|
],
|
|
@@ -222159,7 +222884,7 @@
|
|
|
222159
222884
|
},
|
|
222160
222885
|
"delete": {
|
|
222161
222886
|
"summary": "Delete a file",
|
|
222162
|
-
"description": "Deletes a file in a repository.\n\nYou can provide an additional `committer` parameter, which is an object containing information about the committer. Or, you can provide an `author` parameter, which is an object containing information about the author.\n\nThe `author` section is optional and is filled in with the `committer` information if omitted. If the `committer` information is omitted, the authenticated user's information is used.\n\nYou must provide values for both `name` and `email`, whether you choose to use `author` or `committer`. Otherwise, you'll receive a `422` status code.",
|
|
222887
|
+
"description": "Deletes a file in a repository.\n\nYou can provide an additional `committer` parameter, which is an object containing information about the committer. Or, you can provide an `author` parameter, which is an object containing information about the author.\n\nThe `author` section is optional and is filled in with the `committer` information if omitted. If the `committer` information is omitted, the authenticated user's information is used.\n\nYou must provide values for both `name` and `email`, whether you choose to use `author` or `committer`. Otherwise, you'll receive a `422` status code.\n\n**Note:** If you use this endpoint and the \"[Create or update file contents](https://docs.github.com/enterprise-server@3.6/rest/reference/repos/#create-or-update-file-contents)\" endpoint in parallel, the concurrent requests will conflict and you will receive errors. You must use these endpoints serially instead.",
|
|
222163
222888
|
"tags": [
|
|
222164
222889
|
"repos"
|
|
222165
222890
|
],
|
|
@@ -448678,50 +449403,6 @@
|
|
|
448678
449403
|
}
|
|
448679
449404
|
}
|
|
448680
449405
|
},
|
|
448681
|
-
"/orgs/{org}/external-group/{group_id}": {
|
|
448682
|
-
"get": {
|
|
448683
|
-
"summary": "Get an external group",
|
|
448684
|
-
"description": "This endpoint does not exist in GitHub Enterprise Server 3.6. It was added in api.github.com",
|
|
448685
|
-
"tags": [
|
|
448686
|
-
"teams"
|
|
448687
|
-
],
|
|
448688
|
-
"operationId": "teams/external-idp-group-info-for-org",
|
|
448689
|
-
"externalDocs": {
|
|
448690
|
-
"description": "API method documentation",
|
|
448691
|
-
"url": "https://docs.github.com/rest/reference/teams#external-idp-group-info-for-an-organization"
|
|
448692
|
-
},
|
|
448693
|
-
"x-octokit": {
|
|
448694
|
-
"api.github.com": "removed"
|
|
448695
|
-
},
|
|
448696
|
-
"responses": {
|
|
448697
|
-
"501": {
|
|
448698
|
-
"description": "Not Implemented"
|
|
448699
|
-
}
|
|
448700
|
-
}
|
|
448701
|
-
}
|
|
448702
|
-
},
|
|
448703
|
-
"/orgs/{org}/external-groups": {
|
|
448704
|
-
"get": {
|
|
448705
|
-
"summary": "List external groups in an organization",
|
|
448706
|
-
"description": "This endpoint does not exist in GitHub Enterprise Server 3.6. It was added in api.github.com",
|
|
448707
|
-
"tags": [
|
|
448708
|
-
"teams"
|
|
448709
|
-
],
|
|
448710
|
-
"operationId": "teams/list-external-idp-groups-for-org",
|
|
448711
|
-
"externalDocs": {
|
|
448712
|
-
"description": "API method documentation",
|
|
448713
|
-
"url": "https://docs.github.com/rest/reference/teams#list-external-idp-groups-for-an-organization"
|
|
448714
|
-
},
|
|
448715
|
-
"x-octokit": {
|
|
448716
|
-
"api.github.com": "removed"
|
|
448717
|
-
},
|
|
448718
|
-
"responses": {
|
|
448719
|
-
"501": {
|
|
448720
|
-
"description": "Not Implemented"
|
|
448721
|
-
}
|
|
448722
|
-
}
|
|
448723
|
-
}
|
|
448724
|
-
},
|
|
448725
449406
|
"/orgs/{org}/failed_invitations": {
|
|
448726
449407
|
"get": {
|
|
448727
449408
|
"summary": "List failed organization invitations",
|
|
@@ -449368,68 +450049,6 @@
|
|
|
449368
450049
|
}
|
|
449369
450050
|
}
|
|
449370
450051
|
},
|
|
449371
|
-
"/orgs/{org}/teams/{team_slug}/external-groups": {
|
|
449372
|
-
"get": {
|
|
449373
|
-
"summary": "List a connection between an external group and a team",
|
|
449374
|
-
"description": "This endpoint does not exist in GitHub Enterprise Server 3.6. It was added in api.github.com",
|
|
449375
|
-
"tags": [
|
|
449376
|
-
"teams"
|
|
449377
|
-
],
|
|
449378
|
-
"operationId": "teams/list-linked-external-idp-groups-to-team-for-org",
|
|
449379
|
-
"externalDocs": {
|
|
449380
|
-
"description": "API method documentation",
|
|
449381
|
-
"url": "https://docs.github.com/rest/reference/teams#list-external-idp-group-team-connection"
|
|
449382
|
-
},
|
|
449383
|
-
"x-octokit": {
|
|
449384
|
-
"api.github.com": "removed"
|
|
449385
|
-
},
|
|
449386
|
-
"responses": {
|
|
449387
|
-
"501": {
|
|
449388
|
-
"description": "Not Implemented"
|
|
449389
|
-
}
|
|
449390
|
-
}
|
|
449391
|
-
},
|
|
449392
|
-
"delete": {
|
|
449393
|
-
"summary": "Remove the connection between an external group and a team",
|
|
449394
|
-
"description": "This endpoint does not exist in GitHub Enterprise Server 3.6. It was added in api.github.com",
|
|
449395
|
-
"tags": [
|
|
449396
|
-
"teams"
|
|
449397
|
-
],
|
|
449398
|
-
"operationId": "teams/unlink-external-idp-group-from-team-for-org",
|
|
449399
|
-
"externalDocs": {
|
|
449400
|
-
"description": "API method documentation",
|
|
449401
|
-
"url": "https://docs.github.com/rest/reference/teams#unlink-external-idp-group-team-connection"
|
|
449402
|
-
},
|
|
449403
|
-
"x-octokit": {
|
|
449404
|
-
"api.github.com": "removed"
|
|
449405
|
-
},
|
|
449406
|
-
"responses": {
|
|
449407
|
-
"501": {
|
|
449408
|
-
"description": "Not Implemented"
|
|
449409
|
-
}
|
|
449410
|
-
}
|
|
449411
|
-
},
|
|
449412
|
-
"patch": {
|
|
449413
|
-
"summary": "Update the connection between an external group and a team",
|
|
449414
|
-
"description": "This endpoint does not exist in GitHub Enterprise Server 3.6. It was added in api.github.com",
|
|
449415
|
-
"tags": [
|
|
449416
|
-
"teams"
|
|
449417
|
-
],
|
|
449418
|
-
"operationId": "teams/link-external-idp-group-to-team-for-org",
|
|
449419
|
-
"externalDocs": {
|
|
449420
|
-
"description": "API method documentation",
|
|
449421
|
-
"url": "https://docs.github.com/rest/reference/teams#link-external-idp-group-team-connection"
|
|
449422
|
-
},
|
|
449423
|
-
"x-octokit": {
|
|
449424
|
-
"api.github.com": "removed"
|
|
449425
|
-
},
|
|
449426
|
-
"responses": {
|
|
449427
|
-
"501": {
|
|
449428
|
-
"description": "Not Implemented"
|
|
449429
|
-
}
|
|
449430
|
-
}
|
|
449431
|
-
}
|
|
449432
|
-
},
|
|
449433
450052
|
"/orgs/{org}/teams/{team_slug}/invitations": {
|
|
449434
450053
|
"get": {
|
|
449435
450054
|
"summary": "List pending team invitations",
|
|
@@ -449730,6 +450349,50 @@
|
|
|
449730
450349
|
}
|
|
449731
450350
|
}
|
|
449732
450351
|
},
|
|
450352
|
+
"/repos/{owner}/{repo}/code-scanning/codeql/databases": {
|
|
450353
|
+
"get": {
|
|
450354
|
+
"summary": "List CodeQL databases for a repository",
|
|
450355
|
+
"description": "This endpoint does not exist in GitHub Enterprise Server 3.6. It was added in api.github.com",
|
|
450356
|
+
"tags": [
|
|
450357
|
+
"code-scanning"
|
|
450358
|
+
],
|
|
450359
|
+
"operationId": "code-scanning/list-codeql-databases",
|
|
450360
|
+
"externalDocs": {
|
|
450361
|
+
"description": "API method documentation",
|
|
450362
|
+
"url": "https://docs.github.com/rest/reference/code-scanning#list-codeql-databases"
|
|
450363
|
+
},
|
|
450364
|
+
"x-octokit": {
|
|
450365
|
+
"api.github.com": "removed"
|
|
450366
|
+
},
|
|
450367
|
+
"responses": {
|
|
450368
|
+
"501": {
|
|
450369
|
+
"description": "Not Implemented"
|
|
450370
|
+
}
|
|
450371
|
+
}
|
|
450372
|
+
}
|
|
450373
|
+
},
|
|
450374
|
+
"/repos/{owner}/{repo}/code-scanning/codeql/databases/{language}": {
|
|
450375
|
+
"get": {
|
|
450376
|
+
"summary": "Get a CodeQL database for a repository",
|
|
450377
|
+
"description": "This endpoint does not exist in GitHub Enterprise Server 3.6. It was added in api.github.com",
|
|
450378
|
+
"tags": [
|
|
450379
|
+
"code-scanning"
|
|
450380
|
+
],
|
|
450381
|
+
"operationId": "code-scanning/get-codeql-database",
|
|
450382
|
+
"externalDocs": {
|
|
450383
|
+
"description": "API method documentation",
|
|
450384
|
+
"url": "https://docs.github.com/rest/reference/code-scanning#get-codeql-database"
|
|
450385
|
+
},
|
|
450386
|
+
"x-octokit": {
|
|
450387
|
+
"api.github.com": "removed"
|
|
450388
|
+
},
|
|
450389
|
+
"responses": {
|
|
450390
|
+
"501": {
|
|
450391
|
+
"description": "Not Implemented"
|
|
450392
|
+
}
|
|
450393
|
+
}
|
|
450394
|
+
}
|
|
450395
|
+
},
|
|
449733
450396
|
"/repos/{owner}/{repo}/codespaces": {
|
|
449734
450397
|
"get": {
|
|
449735
450398
|
"summary": "List codespaces in a repository for the authenticated user",
|