Skip to content

Commit a03e88c

Browse files
authored
Update openapi (#3526)
1 parent bcfcb89 commit a03e88c

12 files changed

+1190
-1124
lines changed

github/admin.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ func (m Enterprise) String() string {
8282

8383
// UpdateUserLDAPMapping updates the mapping between a GitHub user and an LDAP user.
8484
//
85-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/ldap#update-ldap-mapping-for-a-user
85+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/ldap#update-ldap-mapping-for-a-user
8686
//
8787
//meta:operation PATCH /admin/ldap/users/{username}/mapping
8888
func (s *AdminService) UpdateUserLDAPMapping(ctx context.Context, user string, mapping *UserLDAPMapping) (*UserLDAPMapping, *Response, error) {
@@ -103,7 +103,7 @@ func (s *AdminService) UpdateUserLDAPMapping(ctx context.Context, user string, m
103103

104104
// UpdateTeamLDAPMapping updates the mapping between a GitHub team and an LDAP group.
105105
//
106-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/ldap#update-ldap-mapping-for-a-team
106+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/ldap#update-ldap-mapping-for-a-team
107107
//
108108
//meta:operation PATCH /admin/ldap/teams/{team_id}/mapping
109109
func (s *AdminService) UpdateTeamLDAPMapping(ctx context.Context, team int64, mapping *TeamLDAPMapping) (*TeamLDAPMapping, *Response, error) {

github/admin_orgs.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ type createOrgRequest struct {
2222
// Note that only a subset of the org fields are used and org must
2323
// not be nil.
2424
//
25-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/orgs#create-an-organization
25+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/orgs#create-an-organization
2626
//
2727
//meta:operation POST /admin/organizations
2828
func (s *AdminService) CreateOrg(ctx context.Context, org *Organization, admin string) (*Organization, *Response, error) {
@@ -61,7 +61,7 @@ type RenameOrgResponse struct {
6161

6262
// RenameOrg renames an organization in GitHub Enterprise.
6363
//
64-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/orgs#update-an-organization-name
64+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/orgs#update-an-organization-name
6565
//
6666
//meta:operation PATCH /admin/organizations/{org}
6767
func (s *AdminService) RenameOrg(ctx context.Context, org *Organization, newName string) (*RenameOrgResponse, *Response, error) {
@@ -70,7 +70,7 @@ func (s *AdminService) RenameOrg(ctx context.Context, org *Organization, newName
7070

7171
// RenameOrgByName renames an organization in GitHub Enterprise using its current name.
7272
//
73-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/orgs#update-an-organization-name
73+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/orgs#update-an-organization-name
7474
//
7575
//meta:operation PATCH /admin/organizations/{org}
7676
func (s *AdminService) RenameOrgByName(ctx context.Context, org, newName string) (*RenameOrgResponse, *Response, error) {

github/admin_stats.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ func (s RepoStats) String() string {
152152
// Please note that this is only available to site administrators,
153153
// otherwise it will error with a 404 not found (instead of 401 or 403).
154154
//
155-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/admin-stats#get-all-statistics
155+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/admin-stats#get-all-statistics
156156
//
157157
//meta:operation GET /enterprise/stats/all
158158
func (s *AdminService) GetAdminStats(ctx context.Context) (*AdminStats, *Response, error) {

github/admin_users.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ type CreateUserRequest struct {
2020

2121
// CreateUser creates a new user in GitHub Enterprise.
2222
//
23-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/users#create-a-user
23+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/users#create-a-user
2424
//
2525
//meta:operation POST /admin/users
2626
func (s *AdminService) CreateUser(ctx context.Context, userReq CreateUserRequest) (*User, *Response, error) {
@@ -42,7 +42,7 @@ func (s *AdminService) CreateUser(ctx context.Context, userReq CreateUserRequest
4242

4343
// DeleteUser deletes a user in GitHub Enterprise.
4444
//
45-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/users#delete-a-user
45+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/users#delete-a-user
4646
//
4747
//meta:operation DELETE /admin/users/{username}
4848
func (s *AdminService) DeleteUser(ctx context.Context, username string) (*Response, error) {
@@ -95,7 +95,7 @@ type UserAuthorization struct {
9595

9696
// CreateUserImpersonation creates an impersonation OAuth token.
9797
//
98-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/users#create-an-impersonation-oauth-token
98+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/users#create-an-impersonation-oauth-token
9999
//
100100
//meta:operation POST /admin/users/{username}/authorizations
101101
func (s *AdminService) CreateUserImpersonation(ctx context.Context, username string, opts *ImpersonateUserOptions) (*UserAuthorization, *Response, error) {
@@ -117,7 +117,7 @@ func (s *AdminService) CreateUserImpersonation(ctx context.Context, username str
117117

118118
// DeleteUserImpersonation deletes an impersonation OAuth token.
119119
//
120-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/users#delete-an-impersonation-oauth-token
120+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/users#delete-an-impersonation-oauth-token
121121
//
122122
//meta:operation DELETE /admin/users/{username}/authorizations
123123
func (s *AdminService) DeleteUserImpersonation(ctx context.Context, username string) (*Response, error) {

github/authorizations.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ func (s *AuthorizationsService) DeleteGrant(ctx context.Context, clientID, acces
257257
// you can e.g. create or delete a user's public SSH key. NOTE: creating a
258258
// new token automatically revokes an existing one.
259259
//
260-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/users#create-an-impersonation-oauth-token
260+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/users#create-an-impersonation-oauth-token
261261
//
262262
//meta:operation POST /admin/users/{username}/authorizations
263263
func (s *AuthorizationsService) CreateImpersonation(ctx context.Context, username string, authReq *AuthorizationRequest) (*Authorization, *Response, error) {
@@ -279,7 +279,7 @@ func (s *AuthorizationsService) CreateImpersonation(ctx context.Context, usernam
279279
//
280280
// NOTE: there can be only one at a time.
281281
//
282-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/users#delete-an-impersonation-oauth-token
282+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/users#delete-an-impersonation-oauth-token
283283
//
284284
//meta:operation DELETE /admin/users/{username}/authorizations
285285
func (s *AuthorizationsService) DeleteImpersonation(ctx context.Context, username string) (*Response, error) {

github/enterprise_manage_ghes.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ type ReleaseVersion struct {
7474

7575
// CheckSystemRequirements checks if GHES system nodes meet the system requirements.
7676
//
77-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/manage-ghes#get-the-system-requirement-check-results-for-configured-cluster-nodes
77+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/manage-ghes#get-the-system-requirement-check-results-for-configured-cluster-nodes
7878
//
7979
//meta:operation GET /manage/v1/checks/system-requirements
8080
func (s *EnterpriseService) CheckSystemRequirements(ctx context.Context) (*SystemRequirements, *Response, error) {
@@ -95,7 +95,7 @@ func (s *EnterpriseService) CheckSystemRequirements(ctx context.Context) (*Syste
9595

9696
// ClusterStatus gets the status of all services running on each cluster node.
9797
//
98-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/manage-ghes#get-the-status-of-services-running-on-all-cluster-nodes
98+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/manage-ghes#get-the-status-of-services-running-on-all-cluster-nodes
9999
//
100100
//meta:operation GET /manage/v1/cluster/status
101101
func (s *EnterpriseService) ClusterStatus(ctx context.Context) (*ClusterStatus, *Response, error) {
@@ -116,7 +116,7 @@ func (s *EnterpriseService) ClusterStatus(ctx context.Context) (*ClusterStatus,
116116

117117
// ReplicationStatus gets the status of all services running on each replica node.
118118
//
119-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/manage-ghes#get-the-status-of-services-running-on-all-replica-nodes
119+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/manage-ghes#get-the-status-of-services-running-on-all-replica-nodes
120120
//
121121
//meta:operation GET /manage/v1/replication/status
122122
func (s *EnterpriseService) ReplicationStatus(ctx context.Context, opts *NodeQueryOptions) (*ClusterStatus, *Response, error) {
@@ -140,7 +140,7 @@ func (s *EnterpriseService) ReplicationStatus(ctx context.Context, opts *NodeQue
140140

141141
// GetNodeReleaseVersions gets the version information deployed to each node.
142142
//
143-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/manage-ghes#get-all-ghes-release-versions-for-all-nodes
143+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/manage-ghes#get-all-ghes-release-versions-for-all-nodes
144144
//
145145
//meta:operation GET /manage/v1/version
146146
func (s *EnterpriseService) GetNodeReleaseVersions(ctx context.Context, opts *NodeQueryOptions) ([]*NodeReleaseVersion, *Response, error) {

github/enterprise_manage_ghes_config.go

+10-10
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ type NodeDetails struct {
305305

306306
// ConfigApplyEvents gets events from the command ghe-config-apply.
307307
//
308-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/manage-ghes#list-events-from-ghe-config-apply
308+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/manage-ghes#list-events-from-ghe-config-apply
309309
//
310310
//meta:operation GET /manage/v1/config/apply/events
311311
func (s *EnterpriseService) ConfigApplyEvents(ctx context.Context, opts *ConfigApplyEventsOptions) (*ConfigApplyEvents, *Response, error) {
@@ -330,7 +330,7 @@ func (s *EnterpriseService) ConfigApplyEvents(ctx context.Context, opts *ConfigA
330330
// InitialConfig initializes the GitHub Enterprise instance with a license and password.
331331
// After initializing the instance, you need to run an apply to apply the configuration.
332332
//
333-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/manage-ghes#initialize-instance-configuration-with-license-and-password
333+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/manage-ghes#initialize-instance-configuration-with-license-and-password
334334
//
335335
//meta:operation POST /manage/v1/config/init
336336
func (s *EnterpriseService) InitialConfig(ctx context.Context, license, password string) (*Response, error) {
@@ -351,7 +351,7 @@ func (s *EnterpriseService) InitialConfig(ctx context.Context, license, password
351351

352352
// License gets the current license information for the GitHub Enterprise instance.
353353
//
354-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/manage-ghes#get-the-enterprise-license-information
354+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/manage-ghes#get-the-enterprise-license-information
355355
//
356356
//meta:operation GET /manage/v1/config/license
357357
func (s *EnterpriseService) License(ctx context.Context) ([]*LicenseStatus, *Response, error) {
@@ -372,7 +372,7 @@ func (s *EnterpriseService) License(ctx context.Context) ([]*LicenseStatus, *Res
372372

373373
// UploadLicense uploads a new license to the GitHub Enterprise instance.
374374
//
375-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/manage-ghes#upload-an-enterprise-license
375+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/manage-ghes#upload-an-enterprise-license
376376
//
377377
//meta:operation PUT /manage/v1/config/license
378378
func (s *EnterpriseService) UploadLicense(ctx context.Context, license string) (*Response, error) {
@@ -390,7 +390,7 @@ func (s *EnterpriseService) UploadLicense(ctx context.Context, license string) (
390390

391391
// LicenseStatus gets the current license status for the GitHub Enterprise instance.
392392
//
393-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/manage-ghes#check-a-license
393+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/manage-ghes#check-a-license
394394
//
395395
//meta:operation GET /manage/v1/config/license/check
396396
func (s *EnterpriseService) LicenseStatus(ctx context.Context) ([]*LicenseCheck, *Response, error) {
@@ -412,7 +412,7 @@ func (s *EnterpriseService) LicenseStatus(ctx context.Context) ([]*LicenseCheck,
412412
// NodeMetadata gets the metadata for all nodes in the GitHub Enterprise instance.
413413
// This is required for clustered setups.
414414
//
415-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/manage-ghes#get-ghes-node-metadata-for-all-nodes
415+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/manage-ghes#get-ghes-node-metadata-for-all-nodes
416416
//
417417
//meta:operation GET /manage/v1/config/nodes
418418
func (s *EnterpriseService) NodeMetadata(ctx context.Context, opts *NodeQueryOptions) (*NodeMetadataStatus, *Response, error) {
@@ -436,7 +436,7 @@ func (s *EnterpriseService) NodeMetadata(ctx context.Context, opts *NodeQueryOpt
436436

437437
// Settings gets the current configuration settings for the GitHub Enterprise instance.
438438
//
439-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/manage-ghes#get-the-ghes-settings
439+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/manage-ghes#get-the-ghes-settings
440440
//
441441
//meta:operation GET /manage/v1/config/settings
442442
func (s *EnterpriseService) Settings(ctx context.Context) (*ConfigSettings, *Response, error) {
@@ -457,7 +457,7 @@ func (s *EnterpriseService) Settings(ctx context.Context) (*ConfigSettings, *Res
457457

458458
// UpdateSettings updates the configuration settings for the GitHub Enterprise instance.
459459
//
460-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/manage-ghes#set-settings
460+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/manage-ghes#set-settings
461461
//
462462
//meta:operation PUT /manage/v1/config/settings
463463
func (s *EnterpriseService) UpdateSettings(ctx context.Context, opts *ConfigSettings) (*Response, error) {
@@ -476,7 +476,7 @@ func (s *EnterpriseService) UpdateSettings(ctx context.Context, opts *ConfigSett
476476

477477
// ConfigApply triggers a configuration apply run on the GitHub Enterprise instance.
478478
//
479-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/manage-ghes#trigger-a-ghe-config-apply-run
479+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/manage-ghes#trigger-a-ghe-config-apply-run
480480
//
481481
//meta:operation POST /manage/v1/config/apply
482482
func (s *EnterpriseService) ConfigApply(ctx context.Context, opts *ConfigApplyOptions) (*ConfigApplyOptions, *Response, error) {
@@ -497,7 +497,7 @@ func (s *EnterpriseService) ConfigApply(ctx context.Context, opts *ConfigApplyOp
497497
// ConfigApplyStatus gets the status of a ghe-config-apply run on the GitHub Enterprise instance.
498498
// You can request lat one or specific id one.
499499
//
500-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/manage-ghes#get-the-status-of-a-ghe-config-apply-run
500+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/manage-ghes#get-the-status-of-a-ghe-config-apply-run
501501
//
502502
//meta:operation GET /manage/v1/config/apply
503503
func (s *EnterpriseService) ConfigApplyStatus(ctx context.Context, opts *ConfigApplyOptions) (*ConfigApplyStatus, *Response, error) {

github/enterprise_manage_ghes_maintenance.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ type MaintenanceOptions struct {
4646

4747
// GetMaintenanceStatus gets the status of maintenance mode for all nodes.
4848
//
49-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/manage-ghes#get-the-status-of-maintenance-mode
49+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/manage-ghes#get-the-status-of-maintenance-mode
5050
//
5151
//meta:operation GET /manage/v1/maintenance
5252
func (s *EnterpriseService) GetMaintenanceStatus(ctx context.Context, opts *NodeQueryOptions) ([]*MaintenanceStatus, *Response, error) {
@@ -71,7 +71,7 @@ func (s *EnterpriseService) GetMaintenanceStatus(ctx context.Context, opts *Node
7171
// CreateMaintenance sets the maintenance mode for the instance.
7272
// With the enable parameter we can control to put instance into maintenance mode or not. With false we can disable the maintenance mode.
7373
//
74-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/manage-ghes#set-the-status-of-maintenance-mode
74+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/manage-ghes#set-the-status-of-maintenance-mode
7575
//
7676
//meta:operation POST /manage/v1/maintenance
7777
func (s *EnterpriseService) CreateMaintenance(ctx context.Context, enable bool, opts *MaintenanceOptions) ([]*MaintenanceOperationStatus, *Response, error) {

github/enterprise_manage_ghes_ssh.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ type ClusterSSHKey struct {
3131

3232
// DeleteSSHKey deletes the SSH key from the instance.
3333
//
34-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/manage-ghes#delete-a-ssh-key
34+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/manage-ghes#delete-a-ssh-key
3535
//
3636
//meta:operation DELETE /manage/v1/access/ssh
3737
func (s *EnterpriseService) DeleteSSHKey(ctx context.Context, key string) ([]*SSHKeyStatus, *Response, error) {
@@ -55,7 +55,7 @@ func (s *EnterpriseService) DeleteSSHKey(ctx context.Context, key string) ([]*SS
5555

5656
// GetSSHKey gets the SSH keys configured for the instance.
5757
//
58-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/manage-ghes#get-the-configured-ssh-keys
58+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/manage-ghes#get-the-configured-ssh-keys
5959
//
6060
//meta:operation GET /manage/v1/access/ssh
6161
func (s *EnterpriseService) GetSSHKey(ctx context.Context) ([]*ClusterSSHKey, *Response, error) {
@@ -76,7 +76,7 @@ func (s *EnterpriseService) GetSSHKey(ctx context.Context) ([]*ClusterSSHKey, *R
7676

7777
// CreateSSHKey adds a new SSH key to the instance.
7878
//
79-
// GitHub API docs: https://docs.github.com/enterprise-server@3.15/rest/enterprise-admin/manage-ghes#set-a-new-ssh-key
79+
// GitHub API docs: https://docs.github.com/enterprise-server@3.16/rest/enterprise-admin/manage-ghes#set-a-new-ssh-key
8080
//
8181
//meta:operation POST /manage/v1/access/ssh
8282
func (s *EnterpriseService) CreateSSHKey(ctx context.Context, key string) ([]*SSHKeyStatus, *Response, error) {

0 commit comments

Comments
 (0)