CodeScanningService covers ListCodeQLDatabases and GetCodeQLDatabase, but the delete counterpart is missing:
https://docs.github.com/rest/code-scanning/code-scanning?apiVersion=2022-11-28#delete-a-codeql-database
The endpoint is DELETE /repos/{owner}/{repo}/code-scanning/codeql/databases/{language}. It returns 204 with no body, so it has the same shape as the existing no-content deletes such as RepositoriesService.DeleteHook.
It is already listed in openapi_operations.yaml, so no metadata update is needed.
I plan to send a PR for this.
CodeScanningServicecoversListCodeQLDatabasesandGetCodeQLDatabase, but the delete counterpart is missing:https://docs.github.com/rest/code-scanning/code-scanning?apiVersion=2022-11-28#delete-a-codeql-database
The endpoint is
DELETE /repos/{owner}/{repo}/code-scanning/codeql/databases/{language}. It returns 204 with no body, so it has the same shape as the existing no-content deletes such asRepositoriesService.DeleteHook.It is already listed in
openapi_operations.yaml, so no metadata update is needed.I plan to send a PR for this.