@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
package/generated/ghes-3.6.json
CHANGED
|
@@ -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": {
|
|
@@ -13516,6 +13516,122 @@
|
|
|
13516
13516
|
"x-octokit": {}
|
|
13517
13517
|
}
|
|
13518
13518
|
},
|
|
13519
|
+
"/orgs/{org}/external-group/{group_id}": {
|
|
13520
|
+
"get": {
|
|
13521
|
+
"summary": "Get an external group",
|
|
13522
|
+
"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.",
|
|
13523
|
+
"tags": [
|
|
13524
|
+
"teams"
|
|
13525
|
+
],
|
|
13526
|
+
"operationId": "teams/external-idp-group-info-for-org",
|
|
13527
|
+
"externalDocs": {
|
|
13528
|
+
"description": "API method documentation",
|
|
13529
|
+
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/teams#external-idp-group-info-for-an-organization"
|
|
13530
|
+
},
|
|
13531
|
+
"parameters": [
|
|
13532
|
+
{
|
|
13533
|
+
"$ref": "#/components/parameters/org"
|
|
13534
|
+
},
|
|
13535
|
+
{
|
|
13536
|
+
"$ref": "#/components/parameters/group-id"
|
|
13537
|
+
}
|
|
13538
|
+
],
|
|
13539
|
+
"responses": {
|
|
13540
|
+
"200": {
|
|
13541
|
+
"description": "Response",
|
|
13542
|
+
"content": {
|
|
13543
|
+
"application/json": {
|
|
13544
|
+
"schema": {
|
|
13545
|
+
"$ref": "#/components/schemas/external-group"
|
|
13546
|
+
},
|
|
13547
|
+
"examples": {
|
|
13548
|
+
"default": {
|
|
13549
|
+
"$ref": "#/components/examples/external-group"
|
|
13550
|
+
}
|
|
13551
|
+
}
|
|
13552
|
+
}
|
|
13553
|
+
}
|
|
13554
|
+
}
|
|
13555
|
+
},
|
|
13556
|
+
"x-github": {
|
|
13557
|
+
"githubCloudOnly": true,
|
|
13558
|
+
"enabledForGitHubApps": true,
|
|
13559
|
+
"category": "teams",
|
|
13560
|
+
"subcategory": "external-groups"
|
|
13561
|
+
},
|
|
13562
|
+
"x-octokit": {}
|
|
13563
|
+
}
|
|
13564
|
+
},
|
|
13565
|
+
"/orgs/{org}/external-groups": {
|
|
13566
|
+
"get": {
|
|
13567
|
+
"summary": "List external groups in an organization",
|
|
13568
|
+
"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.",
|
|
13569
|
+
"tags": [
|
|
13570
|
+
"teams"
|
|
13571
|
+
],
|
|
13572
|
+
"operationId": "teams/list-external-idp-groups-for-org",
|
|
13573
|
+
"externalDocs": {
|
|
13574
|
+
"description": "API method documentation",
|
|
13575
|
+
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/teams#list-external-idp-groups-for-an-organization"
|
|
13576
|
+
},
|
|
13577
|
+
"parameters": [
|
|
13578
|
+
{
|
|
13579
|
+
"$ref": "#/components/parameters/org"
|
|
13580
|
+
},
|
|
13581
|
+
{
|
|
13582
|
+
"$ref": "#/components/parameters/per-page"
|
|
13583
|
+
},
|
|
13584
|
+
{
|
|
13585
|
+
"name": "page",
|
|
13586
|
+
"description": "Page token",
|
|
13587
|
+
"in": "query",
|
|
13588
|
+
"schema": {
|
|
13589
|
+
"type": "integer"
|
|
13590
|
+
}
|
|
13591
|
+
},
|
|
13592
|
+
{
|
|
13593
|
+
"name": "display_name",
|
|
13594
|
+
"description": "Limits the list to groups containing the text in the group name",
|
|
13595
|
+
"in": "query",
|
|
13596
|
+
"schema": {
|
|
13597
|
+
"type": "string"
|
|
13598
|
+
}
|
|
13599
|
+
}
|
|
13600
|
+
],
|
|
13601
|
+
"responses": {
|
|
13602
|
+
"200": {
|
|
13603
|
+
"description": "Response",
|
|
13604
|
+
"content": {
|
|
13605
|
+
"application/json": {
|
|
13606
|
+
"schema": {
|
|
13607
|
+
"$ref": "#/components/schemas/external-groups"
|
|
13608
|
+
},
|
|
13609
|
+
"examples": {
|
|
13610
|
+
"default": {
|
|
13611
|
+
"$ref": "#/components/examples/external-groups"
|
|
13612
|
+
}
|
|
13613
|
+
}
|
|
13614
|
+
}
|
|
13615
|
+
},
|
|
13616
|
+
"headers": {
|
|
13617
|
+
"Link": {
|
|
13618
|
+
"example": "<https://api.github.com/resource?per_page=2&page=url-encoded-next-page-token>; rel=\"next\"",
|
|
13619
|
+
"schema": {
|
|
13620
|
+
"type": "string"
|
|
13621
|
+
}
|
|
13622
|
+
}
|
|
13623
|
+
}
|
|
13624
|
+
}
|
|
13625
|
+
},
|
|
13626
|
+
"x-github": {
|
|
13627
|
+
"githubCloudOnly": true,
|
|
13628
|
+
"enabledForGitHubApps": true,
|
|
13629
|
+
"category": "teams",
|
|
13630
|
+
"subcategory": "external-groups"
|
|
13631
|
+
},
|
|
13632
|
+
"x-octokit": {}
|
|
13633
|
+
}
|
|
13634
|
+
},
|
|
13519
13635
|
"/orgs/{org}/hooks": {
|
|
13520
13636
|
"get": {
|
|
13521
13637
|
"summary": "List organization webhooks",
|
|
@@ -17774,6 +17890,155 @@
|
|
|
17774
17890
|
"x-octokit": {}
|
|
17775
17891
|
}
|
|
17776
17892
|
},
|
|
17893
|
+
"/orgs/{org}/teams/{team_slug}/external-groups": {
|
|
17894
|
+
"get": {
|
|
17895
|
+
"summary": "List a connection between an external group and a team",
|
|
17896
|
+
"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.",
|
|
17897
|
+
"tags": [
|
|
17898
|
+
"teams"
|
|
17899
|
+
],
|
|
17900
|
+
"operationId": "teams/list-linked-external-idp-groups-to-team-for-org",
|
|
17901
|
+
"externalDocs": {
|
|
17902
|
+
"description": "API method documentation",
|
|
17903
|
+
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/teams#list-external-idp-group-team-connection"
|
|
17904
|
+
},
|
|
17905
|
+
"parameters": [
|
|
17906
|
+
{
|
|
17907
|
+
"$ref": "#/components/parameters/org"
|
|
17908
|
+
},
|
|
17909
|
+
{
|
|
17910
|
+
"$ref": "#/components/parameters/team-slug"
|
|
17911
|
+
}
|
|
17912
|
+
],
|
|
17913
|
+
"responses": {
|
|
17914
|
+
"200": {
|
|
17915
|
+
"description": "Response",
|
|
17916
|
+
"content": {
|
|
17917
|
+
"application/json": {
|
|
17918
|
+
"schema": {
|
|
17919
|
+
"$ref": "#/components/schemas/external-groups"
|
|
17920
|
+
},
|
|
17921
|
+
"examples": {
|
|
17922
|
+
"default": {
|
|
17923
|
+
"$ref": "#/components/examples/external-groups"
|
|
17924
|
+
}
|
|
17925
|
+
}
|
|
17926
|
+
}
|
|
17927
|
+
}
|
|
17928
|
+
}
|
|
17929
|
+
},
|
|
17930
|
+
"x-github": {
|
|
17931
|
+
"githubCloudOnly": true,
|
|
17932
|
+
"enabledForGitHubApps": true,
|
|
17933
|
+
"category": "teams",
|
|
17934
|
+
"subcategory": "external-groups"
|
|
17935
|
+
},
|
|
17936
|
+
"x-octokit": {}
|
|
17937
|
+
},
|
|
17938
|
+
"patch": {
|
|
17939
|
+
"summary": "Update the connection between an external group and a team",
|
|
17940
|
+
"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.",
|
|
17941
|
+
"tags": [
|
|
17942
|
+
"teams"
|
|
17943
|
+
],
|
|
17944
|
+
"operationId": "teams/link-external-idp-group-to-team-for-org",
|
|
17945
|
+
"externalDocs": {
|
|
17946
|
+
"description": "API method documentation",
|
|
17947
|
+
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/teams#link-external-idp-group-team-connection"
|
|
17948
|
+
},
|
|
17949
|
+
"parameters": [
|
|
17950
|
+
{
|
|
17951
|
+
"$ref": "#/components/parameters/org"
|
|
17952
|
+
},
|
|
17953
|
+
{
|
|
17954
|
+
"$ref": "#/components/parameters/team-slug"
|
|
17955
|
+
}
|
|
17956
|
+
],
|
|
17957
|
+
"requestBody": {
|
|
17958
|
+
"required": true,
|
|
17959
|
+
"content": {
|
|
17960
|
+
"application/json": {
|
|
17961
|
+
"schema": {
|
|
17962
|
+
"type": "object",
|
|
17963
|
+
"properties": {
|
|
17964
|
+
"group_id": {
|
|
17965
|
+
"type": "integer",
|
|
17966
|
+
"description": "External Group Id",
|
|
17967
|
+
"example": 1
|
|
17968
|
+
}
|
|
17969
|
+
},
|
|
17970
|
+
"required": [
|
|
17971
|
+
"group_id"
|
|
17972
|
+
]
|
|
17973
|
+
},
|
|
17974
|
+
"examples": {
|
|
17975
|
+
"default": {
|
|
17976
|
+
"value": {
|
|
17977
|
+
"group_id": 123
|
|
17978
|
+
}
|
|
17979
|
+
}
|
|
17980
|
+
}
|
|
17981
|
+
}
|
|
17982
|
+
}
|
|
17983
|
+
},
|
|
17984
|
+
"responses": {
|
|
17985
|
+
"200": {
|
|
17986
|
+
"description": "Response",
|
|
17987
|
+
"content": {
|
|
17988
|
+
"application/json": {
|
|
17989
|
+
"schema": {
|
|
17990
|
+
"$ref": "#/components/schemas/external-group"
|
|
17991
|
+
},
|
|
17992
|
+
"examples": {
|
|
17993
|
+
"default": {
|
|
17994
|
+
"$ref": "#/components/examples/external-group"
|
|
17995
|
+
}
|
|
17996
|
+
}
|
|
17997
|
+
}
|
|
17998
|
+
}
|
|
17999
|
+
}
|
|
18000
|
+
},
|
|
18001
|
+
"x-github": {
|
|
18002
|
+
"githubCloudOnly": true,
|
|
18003
|
+
"enabledForGitHubApps": false,
|
|
18004
|
+
"category": "teams",
|
|
18005
|
+
"subcategory": "external-groups"
|
|
18006
|
+
},
|
|
18007
|
+
"x-octokit": {}
|
|
18008
|
+
},
|
|
18009
|
+
"delete": {
|
|
18010
|
+
"summary": "Remove the connection between an external group and a team",
|
|
18011
|
+
"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.",
|
|
18012
|
+
"tags": [
|
|
18013
|
+
"teams"
|
|
18014
|
+
],
|
|
18015
|
+
"operationId": "teams/unlink-external-idp-group-from-team-for-org",
|
|
18016
|
+
"externalDocs": {
|
|
18017
|
+
"description": "API method documentation",
|
|
18018
|
+
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/teams#unlink-external-idp-group-team-connection"
|
|
18019
|
+
},
|
|
18020
|
+
"parameters": [
|
|
18021
|
+
{
|
|
18022
|
+
"$ref": "#/components/parameters/org"
|
|
18023
|
+
},
|
|
18024
|
+
{
|
|
18025
|
+
"$ref": "#/components/parameters/team-slug"
|
|
18026
|
+
}
|
|
18027
|
+
],
|
|
18028
|
+
"responses": {
|
|
18029
|
+
"204": {
|
|
18030
|
+
"description": "Response"
|
|
18031
|
+
}
|
|
18032
|
+
},
|
|
18033
|
+
"x-github": {
|
|
18034
|
+
"githubCloudOnly": true,
|
|
18035
|
+
"enabledForGitHubApps": false,
|
|
18036
|
+
"category": "teams",
|
|
18037
|
+
"subcategory": "external-groups"
|
|
18038
|
+
},
|
|
18039
|
+
"x-octokit": {}
|
|
18040
|
+
}
|
|
18041
|
+
},
|
|
17777
18042
|
"/orgs/{org}/teams/{team_slug}/members": {
|
|
17778
18043
|
"get": {
|
|
17779
18044
|
"summary": "List team members",
|
|
@@ -22171,7 +22436,13 @@
|
|
|
22171
22436
|
"category": "actions",
|
|
22172
22437
|
"subcategory": "workflow-runs"
|
|
22173
22438
|
},
|
|
22174
|
-
"x-octokit": {
|
|
22439
|
+
"x-octokit": {
|
|
22440
|
+
"diff": {
|
|
22441
|
+
"api.github.com": {
|
|
22442
|
+
"type": "changed"
|
|
22443
|
+
}
|
|
22444
|
+
}
|
|
22445
|
+
}
|
|
22175
22446
|
},
|
|
22176
22447
|
"delete": {
|
|
22177
22448
|
"summary": "Delete a workflow run",
|
|
@@ -22388,7 +22659,13 @@
|
|
|
22388
22659
|
"category": "actions",
|
|
22389
22660
|
"subcategory": "workflow-runs"
|
|
22390
22661
|
},
|
|
22391
|
-
"x-octokit": {
|
|
22662
|
+
"x-octokit": {
|
|
22663
|
+
"diff": {
|
|
22664
|
+
"api.github.com": {
|
|
22665
|
+
"type": "changed"
|
|
22666
|
+
}
|
|
22667
|
+
}
|
|
22668
|
+
}
|
|
22392
22669
|
}
|
|
22393
22670
|
},
|
|
22394
22671
|
"/repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs": {
|
|
@@ -30588,7 +30865,7 @@
|
|
|
30588
30865
|
},
|
|
30589
30866
|
"put": {
|
|
30590
30867
|
"summary": "Create or update file contents",
|
|
30591
|
-
"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.",
|
|
30868
|
+
"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.",
|
|
30592
30869
|
"tags": [
|
|
30593
30870
|
"repos"
|
|
30594
30871
|
],
|
|
@@ -30767,7 +31044,7 @@
|
|
|
30767
31044
|
},
|
|
30768
31045
|
"delete": {
|
|
30769
31046
|
"summary": "Delete a file",
|
|
30770
|
-
"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.",
|
|
31047
|
+
"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.",
|
|
30771
31048
|
"tags": [
|
|
30772
31049
|
"repos"
|
|
30773
31050
|
],
|
|
@@ -54620,50 +54897,6 @@
|
|
|
54620
54897
|
}
|
|
54621
54898
|
}
|
|
54622
54899
|
},
|
|
54623
|
-
"/orgs/{org}/external-group/{group_id}": {
|
|
54624
|
-
"get": {
|
|
54625
|
-
"summary": "Get an external group",
|
|
54626
|
-
"description": "This endpoint does not exist in GitHub Enterprise Server 3.6. It was added in api.github.com",
|
|
54627
|
-
"tags": [
|
|
54628
|
-
"teams"
|
|
54629
|
-
],
|
|
54630
|
-
"operationId": "teams/external-idp-group-info-for-org",
|
|
54631
|
-
"externalDocs": {
|
|
54632
|
-
"description": "API method documentation",
|
|
54633
|
-
"url": "https://docs.github.com/rest/reference/teams#external-idp-group-info-for-an-organization"
|
|
54634
|
-
},
|
|
54635
|
-
"x-octokit": {
|
|
54636
|
-
"api.github.com": "removed"
|
|
54637
|
-
},
|
|
54638
|
-
"responses": {
|
|
54639
|
-
"501": {
|
|
54640
|
-
"description": "Not Implemented"
|
|
54641
|
-
}
|
|
54642
|
-
}
|
|
54643
|
-
}
|
|
54644
|
-
},
|
|
54645
|
-
"/orgs/{org}/external-groups": {
|
|
54646
|
-
"get": {
|
|
54647
|
-
"summary": "List external groups in an organization",
|
|
54648
|
-
"description": "This endpoint does not exist in GitHub Enterprise Server 3.6. It was added in api.github.com",
|
|
54649
|
-
"tags": [
|
|
54650
|
-
"teams"
|
|
54651
|
-
],
|
|
54652
|
-
"operationId": "teams/list-external-idp-groups-for-org",
|
|
54653
|
-
"externalDocs": {
|
|
54654
|
-
"description": "API method documentation",
|
|
54655
|
-
"url": "https://docs.github.com/rest/reference/teams#list-external-idp-groups-for-an-organization"
|
|
54656
|
-
},
|
|
54657
|
-
"x-octokit": {
|
|
54658
|
-
"api.github.com": "removed"
|
|
54659
|
-
},
|
|
54660
|
-
"responses": {
|
|
54661
|
-
"501": {
|
|
54662
|
-
"description": "Not Implemented"
|
|
54663
|
-
}
|
|
54664
|
-
}
|
|
54665
|
-
}
|
|
54666
|
-
},
|
|
54667
54900
|
"/orgs/{org}/failed_invitations": {
|
|
54668
54901
|
"get": {
|
|
54669
54902
|
"summary": "List failed organization invitations",
|
|
@@ -55310,68 +55543,6 @@
|
|
|
55310
55543
|
}
|
|
55311
55544
|
}
|
|
55312
55545
|
},
|
|
55313
|
-
"/orgs/{org}/teams/{team_slug}/external-groups": {
|
|
55314
|
-
"get": {
|
|
55315
|
-
"summary": "List a connection between an external group and a team",
|
|
55316
|
-
"description": "This endpoint does not exist in GitHub Enterprise Server 3.6. It was added in api.github.com",
|
|
55317
|
-
"tags": [
|
|
55318
|
-
"teams"
|
|
55319
|
-
],
|
|
55320
|
-
"operationId": "teams/list-linked-external-idp-groups-to-team-for-org",
|
|
55321
|
-
"externalDocs": {
|
|
55322
|
-
"description": "API method documentation",
|
|
55323
|
-
"url": "https://docs.github.com/rest/reference/teams#list-external-idp-group-team-connection"
|
|
55324
|
-
},
|
|
55325
|
-
"x-octokit": {
|
|
55326
|
-
"api.github.com": "removed"
|
|
55327
|
-
},
|
|
55328
|
-
"responses": {
|
|
55329
|
-
"501": {
|
|
55330
|
-
"description": "Not Implemented"
|
|
55331
|
-
}
|
|
55332
|
-
}
|
|
55333
|
-
},
|
|
55334
|
-
"delete": {
|
|
55335
|
-
"summary": "Remove the connection between an external group and a team",
|
|
55336
|
-
"description": "This endpoint does not exist in GitHub Enterprise Server 3.6. It was added in api.github.com",
|
|
55337
|
-
"tags": [
|
|
55338
|
-
"teams"
|
|
55339
|
-
],
|
|
55340
|
-
"operationId": "teams/unlink-external-idp-group-from-team-for-org",
|
|
55341
|
-
"externalDocs": {
|
|
55342
|
-
"description": "API method documentation",
|
|
55343
|
-
"url": "https://docs.github.com/rest/reference/teams#unlink-external-idp-group-team-connection"
|
|
55344
|
-
},
|
|
55345
|
-
"x-octokit": {
|
|
55346
|
-
"api.github.com": "removed"
|
|
55347
|
-
},
|
|
55348
|
-
"responses": {
|
|
55349
|
-
"501": {
|
|
55350
|
-
"description": "Not Implemented"
|
|
55351
|
-
}
|
|
55352
|
-
}
|
|
55353
|
-
},
|
|
55354
|
-
"patch": {
|
|
55355
|
-
"summary": "Update the connection between an external group and a team",
|
|
55356
|
-
"description": "This endpoint does not exist in GitHub Enterprise Server 3.6. It was added in api.github.com",
|
|
55357
|
-
"tags": [
|
|
55358
|
-
"teams"
|
|
55359
|
-
],
|
|
55360
|
-
"operationId": "teams/link-external-idp-group-to-team-for-org",
|
|
55361
|
-
"externalDocs": {
|
|
55362
|
-
"description": "API method documentation",
|
|
55363
|
-
"url": "https://docs.github.com/rest/reference/teams#link-external-idp-group-team-connection"
|
|
55364
|
-
},
|
|
55365
|
-
"x-octokit": {
|
|
55366
|
-
"api.github.com": "removed"
|
|
55367
|
-
},
|
|
55368
|
-
"responses": {
|
|
55369
|
-
"501": {
|
|
55370
|
-
"description": "Not Implemented"
|
|
55371
|
-
}
|
|
55372
|
-
}
|
|
55373
|
-
}
|
|
55374
|
-
},
|
|
55375
55546
|
"/orgs/{org}/teams/{team_slug}/invitations": {
|
|
55376
55547
|
"get": {
|
|
55377
55548
|
"summary": "List pending team invitations",
|
|
@@ -55672,6 +55843,50 @@
|
|
|
55672
55843
|
}
|
|
55673
55844
|
}
|
|
55674
55845
|
},
|
|
55846
|
+
"/repos/{owner}/{repo}/code-scanning/codeql/databases": {
|
|
55847
|
+
"get": {
|
|
55848
|
+
"summary": "List CodeQL databases for a repository",
|
|
55849
|
+
"description": "This endpoint does not exist in GitHub Enterprise Server 3.6. It was added in api.github.com",
|
|
55850
|
+
"tags": [
|
|
55851
|
+
"code-scanning"
|
|
55852
|
+
],
|
|
55853
|
+
"operationId": "code-scanning/list-codeql-databases",
|
|
55854
|
+
"externalDocs": {
|
|
55855
|
+
"description": "API method documentation",
|
|
55856
|
+
"url": "https://docs.github.com/rest/reference/code-scanning#list-codeql-databases"
|
|
55857
|
+
},
|
|
55858
|
+
"x-octokit": {
|
|
55859
|
+
"api.github.com": "removed"
|
|
55860
|
+
},
|
|
55861
|
+
"responses": {
|
|
55862
|
+
"501": {
|
|
55863
|
+
"description": "Not Implemented"
|
|
55864
|
+
}
|
|
55865
|
+
}
|
|
55866
|
+
}
|
|
55867
|
+
},
|
|
55868
|
+
"/repos/{owner}/{repo}/code-scanning/codeql/databases/{language}": {
|
|
55869
|
+
"get": {
|
|
55870
|
+
"summary": "Get a CodeQL database for a repository",
|
|
55871
|
+
"description": "This endpoint does not exist in GitHub Enterprise Server 3.6. It was added in api.github.com",
|
|
55872
|
+
"tags": [
|
|
55873
|
+
"code-scanning"
|
|
55874
|
+
],
|
|
55875
|
+
"operationId": "code-scanning/get-codeql-database",
|
|
55876
|
+
"externalDocs": {
|
|
55877
|
+
"description": "API method documentation",
|
|
55878
|
+
"url": "https://docs.github.com/rest/reference/code-scanning#get-codeql-database"
|
|
55879
|
+
},
|
|
55880
|
+
"x-octokit": {
|
|
55881
|
+
"api.github.com": "removed"
|
|
55882
|
+
},
|
|
55883
|
+
"responses": {
|
|
55884
|
+
"501": {
|
|
55885
|
+
"description": "Not Implemented"
|
|
55886
|
+
}
|
|
55887
|
+
}
|
|
55888
|
+
}
|
|
55889
|
+
},
|
|
55675
55890
|
"/repos/{owner}/{repo}/codespaces": {
|
|
55676
55891
|
"get": {
|
|
55677
55892
|
"summary": "List codespaces in a repository for the authenticated user",
|
|
@@ -66646,6 +66861,164 @@
|
|
|
66646
66861
|
"key"
|
|
66647
66862
|
]
|
|
66648
66863
|
},
|
|
66864
|
+
"external-group": {
|
|
66865
|
+
"title": "ExternalGroup",
|
|
66866
|
+
"description": "Information about an external group's usage and its members",
|
|
66867
|
+
"type": "object",
|
|
66868
|
+
"required": [
|
|
66869
|
+
"group_id",
|
|
66870
|
+
"group_name",
|
|
66871
|
+
"teams",
|
|
66872
|
+
"members"
|
|
66873
|
+
],
|
|
66874
|
+
"properties": {
|
|
66875
|
+
"group_id": {
|
|
66876
|
+
"description": "The internal ID of the group",
|
|
66877
|
+
"example": 1,
|
|
66878
|
+
"type": "integer"
|
|
66879
|
+
},
|
|
66880
|
+
"group_name": {
|
|
66881
|
+
"description": "The display name for the group",
|
|
66882
|
+
"example": "group-azuread-test",
|
|
66883
|
+
"type": "string"
|
|
66884
|
+
},
|
|
66885
|
+
"updated_at": {
|
|
66886
|
+
"description": "The date when the group was last updated_at",
|
|
66887
|
+
"example": "2021-01-03 22:27:15:000 -700",
|
|
66888
|
+
"type": "string"
|
|
66889
|
+
},
|
|
66890
|
+
"teams": {
|
|
66891
|
+
"description": "An array of teams linked to this group",
|
|
66892
|
+
"example": [
|
|
66893
|
+
{
|
|
66894
|
+
"team_id": 1,
|
|
66895
|
+
"team_name": "team-test"
|
|
66896
|
+
},
|
|
66897
|
+
{
|
|
66898
|
+
"team_id": 2,
|
|
66899
|
+
"team_name": "team-test2"
|
|
66900
|
+
}
|
|
66901
|
+
],
|
|
66902
|
+
"type": "array",
|
|
66903
|
+
"items": {
|
|
66904
|
+
"type": "object",
|
|
66905
|
+
"required": [
|
|
66906
|
+
"team_id",
|
|
66907
|
+
"team_name"
|
|
66908
|
+
],
|
|
66909
|
+
"properties": {
|
|
66910
|
+
"team_id": {
|
|
66911
|
+
"description": "The id for a team",
|
|
66912
|
+
"example": 1,
|
|
66913
|
+
"type": "integer"
|
|
66914
|
+
},
|
|
66915
|
+
"team_name": {
|
|
66916
|
+
"description": "The name of the team",
|
|
66917
|
+
"example": "team-test",
|
|
66918
|
+
"type": "string"
|
|
66919
|
+
}
|
|
66920
|
+
}
|
|
66921
|
+
}
|
|
66922
|
+
},
|
|
66923
|
+
"members": {
|
|
66924
|
+
"description": "An array of external members linked to this group",
|
|
66925
|
+
"example": [
|
|
66926
|
+
{
|
|
66927
|
+
"member_id": 1,
|
|
66928
|
+
"member_login": "mona-lisa_eocsaxrs",
|
|
66929
|
+
"member_name": "Mona Lisa",
|
|
66930
|
+
"member_email": "mona_lisa@github.com"
|
|
66931
|
+
},
|
|
66932
|
+
{
|
|
66933
|
+
"member_id": 2,
|
|
66934
|
+
"member_login": "octo-lisa_eocsaxrs",
|
|
66935
|
+
"member_name": "Octo Lisa",
|
|
66936
|
+
"member_email": "octo_lisa@github.com"
|
|
66937
|
+
}
|
|
66938
|
+
],
|
|
66939
|
+
"type": "array",
|
|
66940
|
+
"items": {
|
|
66941
|
+
"type": "object",
|
|
66942
|
+
"required": [
|
|
66943
|
+
"member_id",
|
|
66944
|
+
"member_login",
|
|
66945
|
+
"member_name",
|
|
66946
|
+
"member_email"
|
|
66947
|
+
],
|
|
66948
|
+
"properties": {
|
|
66949
|
+
"member_id": {
|
|
66950
|
+
"description": "The internal user ID of the identity",
|
|
66951
|
+
"example": 1,
|
|
66952
|
+
"type": "integer"
|
|
66953
|
+
},
|
|
66954
|
+
"member_login": {
|
|
66955
|
+
"description": "The handle/login for the user",
|
|
66956
|
+
"example": "mona-lisa_eocsaxrs",
|
|
66957
|
+
"type": "string"
|
|
66958
|
+
},
|
|
66959
|
+
"member_name": {
|
|
66960
|
+
"description": "The user display name/profile name",
|
|
66961
|
+
"example": "Mona Lisa",
|
|
66962
|
+
"type": "string"
|
|
66963
|
+
},
|
|
66964
|
+
"member_email": {
|
|
66965
|
+
"description": "An email attached to a user",
|
|
66966
|
+
"example": "mona_lisa@github.com",
|
|
66967
|
+
"type": "string"
|
|
66968
|
+
}
|
|
66969
|
+
}
|
|
66970
|
+
}
|
|
66971
|
+
}
|
|
66972
|
+
}
|
|
66973
|
+
},
|
|
66974
|
+
"external-groups": {
|
|
66975
|
+
"title": "ExternalGroups",
|
|
66976
|
+
"description": "A list of external groups available to be connected to a team",
|
|
66977
|
+
"type": "object",
|
|
66978
|
+
"properties": {
|
|
66979
|
+
"groups": {
|
|
66980
|
+
"description": "An array of external groups available to be mapped to a team",
|
|
66981
|
+
"example": [
|
|
66982
|
+
{
|
|
66983
|
+
"group_id": 1,
|
|
66984
|
+
"group_name": "group-azuread-test",
|
|
66985
|
+
"updated_at": "2021-01-03 22:27:15:000 -700"
|
|
66986
|
+
},
|
|
66987
|
+
{
|
|
66988
|
+
"group_id": 2,
|
|
66989
|
+
"group_name": "group-azuread-test2",
|
|
66990
|
+
"updated_at": "2021-06-03 22:27:15:000 -700"
|
|
66991
|
+
}
|
|
66992
|
+
],
|
|
66993
|
+
"type": "array",
|
|
66994
|
+
"items": {
|
|
66995
|
+
"type": "object",
|
|
66996
|
+
"required": [
|
|
66997
|
+
"group_id",
|
|
66998
|
+
"group_name",
|
|
66999
|
+
"updated_at"
|
|
67000
|
+
],
|
|
67001
|
+
"properties": {
|
|
67002
|
+
"group_id": {
|
|
67003
|
+
"description": "The internal ID of the group",
|
|
67004
|
+
"example": 1,
|
|
67005
|
+
"type": "integer"
|
|
67006
|
+
},
|
|
67007
|
+
"group_name": {
|
|
67008
|
+
"description": "The display name of the group",
|
|
67009
|
+
"example": "group-azuread-test",
|
|
67010
|
+
"type": "string"
|
|
67011
|
+
},
|
|
67012
|
+
"updated_at": {
|
|
67013
|
+
"description": "The time of the last update for this group",
|
|
67014
|
+
"example": "2019-06-03 22:27:15:000 -700",
|
|
67015
|
+
"type": "string"
|
|
67016
|
+
}
|
|
67017
|
+
}
|
|
67018
|
+
}
|
|
67019
|
+
}
|
|
67020
|
+
}
|
|
67021
|
+
},
|
|
66649
67022
|
"org-hook": {
|
|
66650
67023
|
"title": "Org Hook",
|
|
66651
67024
|
"description": "Org Hook",
|
|
@@ -69950,6 +70323,7 @@
|
|
|
69950
70323
|
"node_id",
|
|
69951
70324
|
"head_branch",
|
|
69952
70325
|
"run_number",
|
|
70326
|
+
"display_title",
|
|
69953
70327
|
"event",
|
|
69954
70328
|
"status",
|
|
69955
70329
|
"conclusion",
|
|
@@ -89014,6 +89388,53 @@
|
|
|
89014
89388
|
}
|
|
89015
89389
|
]
|
|
89016
89390
|
},
|
|
89391
|
+
"external-group": {
|
|
89392
|
+
"value": {
|
|
89393
|
+
"group_id": "123",
|
|
89394
|
+
"group_name": "Octocat admins",
|
|
89395
|
+
"updated_at": "2021-01-24T11:31:04-06:00",
|
|
89396
|
+
"teams": [
|
|
89397
|
+
{
|
|
89398
|
+
"team_id": 1,
|
|
89399
|
+
"team_name": "team-test"
|
|
89400
|
+
},
|
|
89401
|
+
{
|
|
89402
|
+
"team_id": 2,
|
|
89403
|
+
"team_name": "team-test2"
|
|
89404
|
+
}
|
|
89405
|
+
],
|
|
89406
|
+
"members": [
|
|
89407
|
+
{
|
|
89408
|
+
"member_id": 1,
|
|
89409
|
+
"member_login": "mona-lisa_eocsaxrs",
|
|
89410
|
+
"member_name": "Mona Lisa",
|
|
89411
|
+
"member_email": "mona_lisa@github.com"
|
|
89412
|
+
},
|
|
89413
|
+
{
|
|
89414
|
+
"member_id": 2,
|
|
89415
|
+
"member_login": "octo-lisa_eocsaxrs",
|
|
89416
|
+
"member_name": "Octo Lisa",
|
|
89417
|
+
"member_email": "octo_lisa@github.com"
|
|
89418
|
+
}
|
|
89419
|
+
]
|
|
89420
|
+
}
|
|
89421
|
+
},
|
|
89422
|
+
"external-groups": {
|
|
89423
|
+
"value": {
|
|
89424
|
+
"groups": [
|
|
89425
|
+
{
|
|
89426
|
+
"group_id": "123",
|
|
89427
|
+
"group_name": "Octocat admins",
|
|
89428
|
+
"updated_at": "2021-01-24T11:31:04-06:00"
|
|
89429
|
+
},
|
|
89430
|
+
{
|
|
89431
|
+
"group_id": "456",
|
|
89432
|
+
"group_name": "Octocat docs members",
|
|
89433
|
+
"updated_at": "2021-03-24T11:31:04-06:00"
|
|
89434
|
+
}
|
|
89435
|
+
]
|
|
89436
|
+
}
|
|
89437
|
+
},
|
|
89017
89438
|
"org-hook-items": {
|
|
89018
89439
|
"value": [
|
|
89019
89440
|
{
|
|
@@ -92542,7 +92963,6 @@
|
|
|
92542
92963
|
"run_number": 562,
|
|
92543
92964
|
"event": "push",
|
|
92544
92965
|
"status": "queued",
|
|
92545
|
-
"conclusion": null,
|
|
92546
92966
|
"workflow_id": 159038,
|
|
92547
92967
|
"url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642",
|
|
92548
92968
|
"html_url": "https://github.com/octo-org/octo-repo/actions/runs/30433642",
|
|
@@ -106194,6 +106614,15 @@
|
|
|
106194
106614
|
"$ref": "#/components/schemas/code-scanning-analysis-tool-guid"
|
|
106195
106615
|
}
|
|
106196
106616
|
},
|
|
106617
|
+
"group-id": {
|
|
106618
|
+
"name": "group_id",
|
|
106619
|
+
"description": "The unique identifier of the group.",
|
|
106620
|
+
"in": "path",
|
|
106621
|
+
"required": true,
|
|
106622
|
+
"schema": {
|
|
106623
|
+
"type": "integer"
|
|
106624
|
+
}
|
|
106625
|
+
},
|
|
106197
106626
|
"migration-id": {
|
|
106198
106627
|
"name": "migration_id",
|
|
106199
106628
|
"description": "The unique identifier of the migration.",
|
|
@@ -106957,7 +107386,7 @@
|
|
|
106957
107386
|
}
|
|
106958
107387
|
},
|
|
106959
107388
|
"code_scanning_forbidden_write": {
|
|
106960
|
-
"description": "Response if the repository is archived or if
|
|
107389
|
+
"description": "Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository",
|
|
106961
107390
|
"content": {
|
|
106962
107391
|
"application/json": {
|
|
106963
107392
|
"schema": {
|