1 Star 0 Fork 0

Bluishoul/python-gitee-ent-api

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
Apache-2.0

gitee-api

No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)

This Python package is automatically generated by the Swagger Codegen project:

  • API version: 0.1.306
  • Package version: 1.0.0
  • Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen

Requirements.

Python 2.7 and 3.4+

Installation & Usage

pip install

If the python package is hosted on Github, you can install directly from Github

pip install git+https://gitee.com/bluishoul/python-gitee-ent-api.git

(you may need to run pip with root permission: sudo pip install git+https://gitee.com/bluishoul/python-gitee-ent-api.git)

Then import the package:

import gitee_api 

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import gitee_api

Getting Started

Please follow the installation procedure and then run the following:

from __future__ import print_function
import time
import gitee_api
from gitee_api.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = gitee_api.AdminLogsStatisticApi(gitee_api.ApiClient(configuration))
enterprise_id = 56 # int | 企业id (https://gitee.com/api/v8/swagger#/getList 的返回值的 id)
access_token = 'access_token_example' # str | 用户授权码 (optional)
member = 'member_example' # str | 成员username (optional)
start_date = 'start_date_example' # str | 查询的起始时间。(格式:yyyy-mm-dd) (optional)
end_date = 'end_date_example' # str | 查询的结束时间。(格式:yyyy-mm-dd) (optional)
page = 1 # int | 当前的页码 (optional) (default to 1)
per_page = 56 # int | 每页的数量,最大为 100 (optional)

try:
    # 企业部署公钥管理日志
    api_response = api_instance.get_enterprise_id_log_statistics_deploy_key_logs(enterprise_id, access_token=access_token, member=member, start_date=start_date, end_date=end_date, page=page, per_page=per_page)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AdminLogsStatisticApi->get_enterprise_id_log_statistics_deploy_key_logs: %s\n" % e)

# create an instance of the API class
api_instance = gitee_api.AdminLogsStatisticApi(gitee_api.ApiClient(configuration))
enterprise_id = 56 # int | 企业id (https://gitee.com/api/v8/swagger#/getList 的返回值的 id)
access_token = 'access_token_example' # str | 用户授权码 (optional)
member = 'member_example' # str | 成员username (optional)
start_date = 'start_date_example' # str | 查询的起始时间。(格式:yyyy-mm-dd) (optional)
end_date = 'end_date_example' # str | 查询的结束时间。(格式:yyyy-mm-dd) (optional)
page = 1 # int | 当前的页码 (optional) (default to 1)
per_page = 56 # int | 每页的数量,最大为 100 (optional)

try:
    # 企业文档管理日志
    api_response = api_instance.get_enterprise_id_log_statistics_doc_node_logs(enterprise_id, access_token=access_token, member=member, start_date=start_date, end_date=end_date, page=page, per_page=per_page)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AdminLogsStatisticApi->get_enterprise_id_log_statistics_doc_node_logs: %s\n" % e)

# create an instance of the API class
api_instance = gitee_api.AdminLogsStatisticApi(gitee_api.ApiClient(configuration))
enterprise_id = 56 # int | 企业id (https://gitee.com/api/v8/swagger#/getList 的返回值的 id)
access_token = 'access_token_example' # str | 用户授权码 (optional)
member = 'member_example' # str | 成员username (optional)
start_date = 'start_date_example' # str | 查询的起始时间。(格式:yyyy-mm-dd) (optional)
end_date = 'end_date_example' # str | 查询的结束时间。(格式:yyyy-mm-dd) (optional)
page = 1 # int | 当前的页码 (optional) (default to 1)
per_page = 56 # int | 每页的数量,最大为 100 (optional)

try:
    # 企业角色管理日志
    api_response = api_instance.get_enterprise_id_log_statistics_enterprise_role_logs(enterprise_id, access_token=access_token, member=member, start_date=start_date, end_date=end_date, page=page, per_page=per_page)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AdminLogsStatisticApi->get_enterprise_id_log_statistics_enterprise_role_logs: %s\n" % e)

# create an instance of the API class
api_instance = gitee_api.AdminLogsStatisticApi(gitee_api.ApiClient(configuration))
enterprise_id = 56 # int | 企业id (https://gitee.com/api/v8/swagger#/getList 的返回值的 id)
access_token = 'access_token_example' # str | 用户授权码 (optional)
group_name = 'group_name_example' # str | 团队名称 (optional)
member = 'member_example' # str | 成员username (optional)
start_date = 'start_date_example' # str | 查询的起始时间。(格式:yyyy-mm-dd) (optional)
end_date = 'end_date_example' # str | 查询的结束时间。(格式:yyyy-mm-dd) (optional)
page = 1 # int | 当前的页码 (optional) (default to 1)
per_page = 56 # int | 每页的数量,最大为 100 (optional)

try:
    # 团队管理日志
    api_response = api_instance.get_enterprise_id_log_statistics_groups_log(enterprise_id, access_token=access_token, group_name=group_name, member=member, start_date=start_date, end_date=end_date, page=page, per_page=per_page)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AdminLogsStatisticApi->get_enterprise_id_log_statistics_groups_log: %s\n" % e)

# create an instance of the API class
api_instance = gitee_api.AdminLogsStatisticApi(gitee_api.ApiClient(configuration))
enterprise_id = 56 # int | 企业id (https://gitee.com/api/v8/swagger#/getList 的返回值的 id)
access_token = 'access_token_example' # str | 用户授权码 (optional)
member = 'member_example' # str | 成员username (optional)
start_date = 'start_date_example' # str | 查询的起始时间。(格式:yyyy-mm-dd) (optional)
end_date = 'end_date_example' # str | 查询的结束时间。(格式:yyyy-mm-dd) (optional)
page = 1 # int | 当前的页码 (optional) (default to 1)
per_page = 56 # int | 每页的数量,最大为 100 (optional)

try:
    # 成员管理日志
    api_response = api_instance.get_enterprise_id_log_statistics_members_log(enterprise_id, access_token=access_token, member=member, start_date=start_date, end_date=end_date, page=page, per_page=per_page)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AdminLogsStatisticApi->get_enterprise_id_log_statistics_members_log: %s\n" % e)

# create an instance of the API class
api_instance = gitee_api.AdminLogsStatisticApi(gitee_api.ApiClient(configuration))
enterprise_id = 56 # int | 企业id (https://gitee.com/api/v8/swagger#/getList 的返回值的 id)
access_token = 'access_token_example' # str | 用户授权码 (optional)
member = 'member_example' # str | 成员username (optional)
program_name = 'program_name_example' # str | 项目名称 (optional)
start_date = 'start_date_example' # str | 查询的起始时间。(格式:yyyy-mm-dd) (optional)
end_date = 'end_date_example' # str | 查询的结束时间。(格式:yyyy-mm-dd) (optional)
page = 1 # int | 当前的页码 (optional) (default to 1)
per_page = 56 # int | 每页的数量,最大为 100 (optional)

try:
    # 项目管理日志
    api_response = api_instance.get_enterprise_id_log_statistics_programs_log(enterprise_id, access_token=access_token, member=member, program_name=program_name, start_date=start_date, end_date=end_date, page=page, per_page=per_page)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AdminLogsStatisticApi->get_enterprise_id_log_statistics_programs_log: %s\n" % e)

# create an instance of the API class
api_instance = gitee_api.AdminLogsStatisticApi(gitee_api.ApiClient(configuration))
enterprise_id = 56 # int | 企业id (https://gitee.com/api/v8/swagger#/getList 的返回值的 id)
access_token = 'access_token_example' # str | 用户授权码 (optional)
group_path = 'group_path_example' # str | 团队path (optional)
project_name = 'project_name_example' # str | 仓库path_with_namespace: namespace.path/project.path (optional)
member = 'member_example' # str | 成员username (optional)
start_date = 'start_date_example' # str | 查询的起始时间。(格式:yyyy-mm-dd) (optional)
end_date = 'end_date_example' # str | 查询的结束时间。(格式:yyyy-mm-dd) (optional)
page = 1 # int | 当前的页码 (optional) (default to 1)
per_page = 56 # int | 每页的数量,最大为 100 (optional)

try:
    # 仓库代码日志
    api_response = api_instance.get_enterprise_id_log_statistics_projects_access_log(enterprise_id, access_token=access_token, group_path=group_path, project_name=project_name, member=member, start_date=start_date, end_date=end_date, page=page, per_page=per_page)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AdminLogsStatisticApi->get_enterprise_id_log_statistics_projects_access_log: %s\n" % e)

# create an instance of the API class
api_instance = gitee_api.AdminLogsStatisticApi(gitee_api.ApiClient(configuration))
enterprise_id = 56 # int | 企业id (https://gitee.com/api/v8/swagger#/getList 的返回值的 id)
access_token = 'access_token_example' # str | 用户授权码 (optional)
project_name = 'project_name_example' # str | 仓库path_with_namespace: namespace.path/project.path (optional)
member = 'member_example' # str | 成员username (optional)
start_date = 'start_date_example' # str | 查询的起始时间。(格式:yyyy-mm-dd) (optional)
end_date = 'end_date_example' # str | 查询的结束时间。(格式:yyyy-mm-dd) (optional)
page = 1 # int | 当前的页码 (optional) (default to 1)
per_page = 56 # int | 每页的数量,最大为 100 (optional)

try:
    # 仓库管理日志
    api_response = api_instance.get_enterprise_id_log_statistics_projects_log(enterprise_id, access_token=access_token, project_name=project_name, member=member, start_date=start_date, end_date=end_date, page=page, per_page=per_page)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AdminLogsStatisticApi->get_enterprise_id_log_statistics_projects_log: %s\n" % e)

# create an instance of the API class
api_instance = gitee_api.AdminLogsStatisticApi(gitee_api.ApiClient(configuration))
enterprise_id = 56 # int | 企业id (https://gitee.com/api/v8/swagger#/getList 的返回值的 id)
access_token = 'access_token_example' # str | 用户授权码 (optional)
member = 'member_example' # str | 成员username (optional)
start_date = 'start_date_example' # str | 查询的起始时间。(格式:yyyy-mm-dd) (optional)
end_date = 'end_date_example' # str | 查询的结束时间。(格式:yyyy-mm-dd) (optional)
page = 1 # int | 当前的页码 (optional) (default to 1)
per_page = 56 # int | 每页的数量,最大为 100 (optional)

try:
    # 安全与告警管理日志
    api_response = api_instance.get_enterprise_id_log_statistics_security_setting_log(enterprise_id, access_token=access_token, member=member, start_date=start_date, end_date=end_date, page=page, per_page=per_page)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AdminLogsStatisticApi->get_enterprise_id_log_statistics_security_setting_log: %s\n" % e)

Documentation for API Endpoints

All URIs are relative to //https://api.gitee.comenterprises

Class Method HTTP request Description
AdminLogsStatisticApi get_enterprise_id_log_statistics_deploy_key_logs GET /{enterprise_id}/log_statistics/deploy_key_logs 企业部署公钥管理日志
AdminLogsStatisticApi get_enterprise_id_log_statistics_doc_node_logs GET /{enterprise_id}/log_statistics/doc_node_logs 企业文档管理日志
AdminLogsStatisticApi get_enterprise_id_log_statistics_enterprise_role_logs GET /{enterprise_id}/log_statistics/enterprise_role_logs 企业角色管理日志
AdminLogsStatisticApi get_enterprise_id_log_statistics_groups_log GET /{enterprise_id}/log_statistics/groups_log 团队管理日志
AdminLogsStatisticApi get_enterprise_id_log_statistics_members_log GET /{enterprise_id}/log_statistics/members_log 成员管理日志
AdminLogsStatisticApi get_enterprise_id_log_statistics_programs_log GET /{enterprise_id}/log_statistics/programs_log 项目管理日志
AdminLogsStatisticApi get_enterprise_id_log_statistics_projects_access_log GET /{enterprise_id}/log_statistics/projects_access_log 仓库代码日志
AdminLogsStatisticApi get_enterprise_id_log_statistics_projects_log GET /{enterprise_id}/log_statistics/projects_log 仓库管理日志
AdminLogsStatisticApi get_enterprise_id_log_statistics_security_setting_log GET /{enterprise_id}/log_statistics/security_setting_log 安全与告警管理日志
CustomizeIssueApi get_enterprise_id_customize_list GET /{enterprise_id}/customize/list 获取管理界面的字段列表
DeployKeyApi delete_enterprise_id_deploy_keys_deploy_key_id_projects DELETE /{enterprise_id}/deploy_keys/{deploy_key_id}/projects 部署公钥移除仓库
DeployKeyApi get_enterprise_id_deploy_keys GET /{enterprise_id}/deploy_keys 查看企业部署公钥
DeployKeyApi get_enterprise_id_deploy_keys_deploy_key_id_projects GET /{enterprise_id}/deploy_keys/{deploy_key_id}/projects 查看公钥部署的仓库
DeployKeyApi post_enterprise_id_deploy_keys POST /{enterprise_id}/deploy_keys 添加部署公钥
DeployKeyApi post_enterprise_id_deploy_keys_deploy_key_id_projects POST /{enterprise_id}/deploy_keys/{deploy_key_id}/projects 部署公钥添加仓库
DeployKeyApi put_enterprise_id_deploy_keys_deploy_key_id PUT /{enterprise_id}/deploy_keys/{deploy_key_id} 修改部署公钥
DocNodesApi delete_enterprise_id_doc_nodes_batch_delete DELETE /{enterprise_id}/doc_nodes/batch_delete 批量彻底删除文件节点
DocNodesApi delete_enterprise_id_doc_nodes_doc_node_id DELETE /{enterprise_id}/doc_nodes/{doc_node_id} 彻底删除文件节点
DocNodesApi delete_enterprise_id_doc_nodes_doc_node_id_file_versions DELETE /{enterprise_id}/doc_nodes/{doc_node_id}/file_versions 删除历史版本
DocNodesApi get_enterprise_id_doc_nodes_check_attach_file_name GET /{enterprise_id}/doc_nodes/check_attach_file_name 检测附件是否重名
DocNodesApi get_enterprise_id_doc_nodes_collection GET /{enterprise_id}/doc_nodes/collection 获取授权用户收藏的文件节点(仅顶层)
DocNodesApi get_enterprise_id_doc_nodes_directories GET /{enterprise_id}/doc_nodes/directories 获取文件夹
DocNodesApi get_enterprise_id_doc_nodes_doc_node_id GET /{enterprise_id}/doc_nodes/{doc_node_id} 查看文件节点详情
DocNodesApi get_enterprise_id_doc_nodes_doc_node_id_auth GET /{enterprise_id}/doc_nodes/{doc_node_id}/auth 查看文件节点的权限
DocNodesApi get_enterprise_id_doc_nodes_doc_node_id_file_versions GET /{enterprise_id}/doc_nodes/{doc_node_id}/file_versions 查看历史版本
DocNodesApi get_enterprise_id_doc_nodes_doc_node_id_operate_auths GET /{enterprise_id}/doc_nodes/{doc_node_id}/operate_auths 获取文件节点的权限
DocNodesApi get_enterprise_id_doc_nodes_level GET /{enterprise_id}/doc_nodes/level 获取文件节点列表(层级)
DocNodesApi get_enterprise_id_doc_nodes_programs GET /{enterprise_id}/doc_nodes/programs 获取与文档有关的项目
DocNodesApi get_enterprise_id_doc_nodes_recent GET /{enterprise_id}/doc_nodes/recent 获取最近编辑的文件
DocNodesApi get_enterprise_id_doc_nodes_recent_doc GET /{enterprise_id}/doc_nodes/recent_doc 获取最近编辑的文档
DocNodesApi get_enterprise_id_doc_nodes_recycle GET /{enterprise_id}/doc_nodes/recycle 获取回收站的内容列表
DocNodesApi get_enterprise_id_doc_nodes_tile GET /{enterprise_id}/doc_nodes/tile 获取文件节点列表(平铺)
DocNodesApi post_enterprise_id_doc_nodes_attach_file POST /{enterprise_id}/doc_nodes/attach_file 上传附件
DocNodesApi post_enterprise_id_doc_nodes_batch_recycle POST /{enterprise_id}/doc_nodes/batch_recycle 批量移除到回收站
DocNodesApi post_enterprise_id_doc_nodes_cover_attach_file POST /{enterprise_id}/doc_nodes/cover_attach_file 上传附件(覆盖)
DocNodesApi post_enterprise_id_doc_nodes_create POST /{enterprise_id}/doc_nodes/create 新建文档
DocNodesApi post_enterprise_id_doc_nodes_create_wiki POST /{enterprise_id}/doc_nodes/create_wiki 新建 Wiki
DocNodesApi post_enterprise_id_doc_nodes_directory POST /{enterprise_id}/doc_nodes/directory 创建文件夹
DocNodesApi post_enterprise_id_doc_nodes_doc_node_id_backup POST /{enterprise_id}/doc_nodes/{doc_node_id}/backup 备份文档
DocNodesApi post_enterprise_id_doc_nodes_doc_node_id_recycle POST /{enterprise_id}/doc_nodes/{doc_node_id}/recycle 移动到回收站
DocNodesApi put_enterprise_id_doc_nodes_batch_auth PUT /{enterprise_id}/doc_nodes/batch_auth 批量更新文件节点的权限
DocNodesApi put_enterprise_id_doc_nodes_batch_collection PUT /{enterprise_id}/doc_nodes/batch_collection 批量收藏/取消收藏文件节点
DocNodesApi put_enterprise_id_doc_nodes_batch_move PUT /{enterprise_id}/doc_nodes/batch_move 批量移动文件节点
DocNodesApi put_enterprise_id_doc_nodes_doc_node_id PUT /{enterprise_id}/doc_nodes/{doc_node_id} 更新文件节点
DocNodesApi put_enterprise_id_doc_nodes_doc_node_id_auth PUT /{enterprise_id}/doc_nodes/{doc_node_id}/auth 更新文件节点的权限
DocNodesApi put_enterprise_id_doc_nodes_doc_node_id_collection PUT /{enterprise_id}/doc_nodes/{doc_node_id}/collection 收藏/取消收藏文件节点
DocNodesApi put_enterprise_id_doc_nodes_doc_node_id_is_top PUT /{enterprise_id}/doc_nodes/{doc_node_id}/is_top 置顶节点
DocNodesApi put_enterprise_id_doc_nodes_doc_node_id_move PUT /{enterprise_id}/doc_nodes/{doc_node_id}/move 移动文件节点
DocsApi delete_enterprise_id_docs_doc_id_files_file_id DELETE /{enterprise_id}/docs/{doc_id}/files/{file_id} 删除文件
DocsApi get_enterprise_id_docs_doc_id_backup_progress GET /{enterprise_id}/docs/{doc_id}/backup_progress 获取文档备份进度
DocsApi get_enterprise_id_docs_doc_id_commit GET /{enterprise_id}/docs/{doc_id}/commit 获取版本历史详情
DocsApi get_enterprise_id_docs_doc_id_files GET /{enterprise_id}/docs/{doc_id}/files 获取文档下的文件列表
DocsApi get_enterprise_id_docs_doc_id_files_file_id GET /{enterprise_id}/docs/{doc_id}/files/{file_id} 获取文件详情
DocsApi get_enterprise_id_docs_doc_id_files_file_id_versions GET /{enterprise_id}/docs/{doc_id}/files/{file_id}/versions 获取文件的历史版本列表
DocsApi get_enterprise_id_docs_doc_id_versions GET /{enterprise_id}/docs/{doc_id}/versions 获取文档历史版本
DocsApi post_enterprise_id_docs_doc_id_create_file POST /{enterprise_id}/docs/{doc_id}/create_file 创建文件
DocsApi post_enterprise_id_docs_doc_id_create_folder POST /{enterprise_id}/docs/{doc_id}/create_folder 创建文件夹
DocsApi put_enterprise_id_docs_doc_id_files_file_id PUT /{enterprise_id}/docs/{doc_id}/files/{file_id} 更新文件
DocsApi put_enterprise_id_docs_doc_id_files_file_id_move PUT /{enterprise_id}/docs/{doc_id}/files/{file_id}/move 移动文件
DocsApi put_enterprise_id_docs_doc_id_files_file_id_rename PUT /{enterprise_id}/docs/{doc_id}/files/{file_id}/rename 更改文件夹名称
EnterpriseRolesApi delete_enterprise_id_enterprise_roles_enterprise_role_id DELETE /{enterprise_id}/enterprise_roles/{enterprise_role_id} 删除角色
EnterpriseRolesApi get_enterprise_id_enterprise_roles GET /{enterprise_id}/enterprise_roles 获取企业角色列表
EnterpriseRolesApi get_enterprise_id_enterprise_roles_enterprise_role_id GET /{enterprise_id}/enterprise_roles/{enterprise_role_id} 获取企业角色详情
EnterpriseRolesApi post_enterprise_id_enterprise_roles POST /{enterprise_id}/enterprise_roles 新增企业角色
EnterpriseRolesApi put_enterprise_id_enterprise_roles_enterprise_role_id PUT /{enterprise_id}/enterprise_roles/{enterprise_role_id} 更新企业角色
EnterprisesApi get_enterprise_id GET /{enterprise_id} 获取企业基础信息
EnterprisesApi get_enterprise_id_auths GET /{enterprise_id}/auths 获取授权用户在企业拥有的权限
EnterprisesApi get_enterprise_id_navigates GET /{enterprise_id}/navigates 企业导航栏设置
EnterprisesApi get_enterprise_id_quota GET /{enterprise_id}/quota 获取当前企业的配额信息
EnterprisesApi get_list GET /list 获取授权用户的企业列表
EnterprisesApi put_enterprise_id PUT /{enterprise_id} 更新企业基础信息
EnterprisesApi put_enterprise_id_navigates PUT /{enterprise_id}/navigates 更新企业导航栏设置
EnterprisesApi put_enterprise_id_notices PUT /{enterprise_id}/notices 更新企业公告内容
GitDataApi delete_enterprise_id_projects_project_id_releases_release_id DELETE /{enterprise_id}/projects/{project_id}/releases/{release_id} 删除发行版
GitDataApi get_enterprise_id_projects GET /{enterprise_id}/projects 获取授权用户参与的仓库列表
GitDataApi get_enterprise_id_projects_for_pull_request GET /{enterprise_id}/projects/for_pull_request 获取当前用户有权限提pr的仓库
GitDataApi get_enterprise_id_projects_project_id_can_pull GET /{enterprise_id}/projects/{project_id}/can_pull 获取可创建 Pull Request 的仓库
GitDataApi get_enterprise_id_projects_project_id_check_releases GET /{enterprise_id}/projects/{project_id}/check_releases 检查发行版是否存在
GitDataApi get_enterprise_id_projects_project_id_contributors GET /{enterprise_id}/projects/{project_id}/contributors 获取仓库贡献者列表
GitDataApi get_enterprise_id_projects_project_id_events GET /{enterprise_id}/projects/{project_id}/events 获取仓库动态
GitDataApi get_enterprise_id_projects_project_id_issues GET /{enterprise_id}/projects/{project_id}/issues 获取仓库的任务列表
GitDataApi get_enterprise_id_projects_project_id_operate_auths GET /{enterprise_id}/projects/{project_id}/operate_auths 获取仓库的操作权限
GitDataApi get_enterprise_id_projects_project_id_programs GET /{enterprise_id}/projects/{project_id}/programs 获取仓库的关联项目列表
GitDataApi get_enterprise_id_projects_project_id_pull_requests GET /{enterprise_id}/projects/{project_id}/pull_requests 获取仓库的 Pull Request 列表
GitDataApi get_enterprise_id_projects_project_id_releases GET /{enterprise_id}/projects/{project_id}/releases 查看发行版列表
GitDataApi get_enterprise_id_projects_project_id_releases_tag_version GET /{enterprise_id}/projects/{project_id}/releases/{tag_version} 查看发行版详情
GitDataApi get_enterprise_id_projects_project_id_settings GET /{enterprise_id}/projects/{project_id}/settings 获取仓库基本设置
GitDataApi get_enterprise_id_projects_project_id_users GET /{enterprise_id}/projects/{project_id}/users 获取仓库的成员列表
GitDataApi post_enterprise_id_projects POST /{enterprise_id}/projects 新建仓库
GitDataApi post_enterprise_id_projects_check_project_can_import POST /{enterprise_id}/projects/check_project_can_import 新建仓库-导入仓库参数是否有效
GitDataApi post_enterprise_id_projects_check_project_name POST /{enterprise_id}/projects/check_project_name 新建仓库-仓库名/路径是否已经存在
GitDataApi post_enterprise_id_projects_project_id_releases POST /{enterprise_id}/projects/{project_id}/releases 新建发行版
GitDataApi post_enterprise_id_projects_transfer_code POST /{enterprise_id}/projects/transfer_code 获取仓库转入-转移码
GitDataApi put_enterprise_id_projects_project_id PUT /{enterprise_id}/projects/{project_id} 更新仓库设置
GitDataApi put_enterprise_id_projects_project_id_releases_release_id PUT /{enterprise_id}/projects/{project_id}/releases/{release_id} 编辑发行版
GroupsApi delete_enterprise_id_groups_group_id DELETE /{enterprise_id}/groups/{group_id} 删除企业团队
GroupsApi delete_enterprise_id_groups_group_id_members DELETE /{enterprise_id}/groups/{group_id}/members 移除团队成员
GroupsApi get_enterprise_id_groups GET /{enterprise_id}/groups 获取企业团队列表
GroupsApi get_enterprise_id_groups_group_id GET /{enterprise_id}/groups/{group_id} 获取团队详情
GroupsApi get_enterprise_id_groups_group_id_members GET /{enterprise_id}/groups/{group_id}/members 获取企业团队下的成员列表
GroupsApi get_enterprise_id_groups_group_id_projects GET /{enterprise_id}/groups/{group_id}/projects 企业团队下仓库列表
GroupsApi post_enterprise_id_groups POST /{enterprise_id}/groups 新建企业团队
GroupsApi put_enterprise_id_groups_group_id PUT /{enterprise_id}/groups/{group_id} 更新企业团队
IssueStatesApi delete_enterprise_id_issue_states_issue_state_id DELETE /{enterprise_id}/issue_states/{issue_state_id} 删除任务状态
IssueStatesApi get_enterprise_id_issue_states GET /{enterprise_id}/issue_states 获取任务状态列表
IssueStatesApi get_enterprise_id_issue_states_issue_state_id GET /{enterprise_id}/issue_states/{issue_state_id} 任务状态详情
IssueStatesApi post_enterprise_id_issue_states POST /{enterprise_id}/issue_states 新增任务状态
IssueStatesApi put_enterprise_id_issue_states_issue_state_id PUT /{enterprise_id}/issue_states/{issue_state_id} 更新任务状态
IssueTypesApi delete_enterprise_id_issue_types_issue_type_id DELETE /{enterprise_id}/issue_types/{issue_type_id} 删除任务类型
IssueTypesApi get_enterprise_id_issue_types GET /{enterprise_id}/issue_types 获取任务类型列表
IssueTypesApi get_enterprise_id_issue_types_issue_type_id GET /{enterprise_id}/issue_types/{issue_type_id} 任务类型详情(状态管理)
IssueTypesApi get_enterprise_id_issue_types_issue_type_id_issue_state_id_issues GET /{enterprise_id}/issue_types/{issue_type_id}/{issue_state_id}/issues 指定任务类型,任务状态下任务列表
IssueTypesApi get_enterprise_id_issue_types_issue_type_id_issue_state_refs GET /{enterprise_id}/issue_types/{issue_type_id}/issue_state_refs 获取单个任务类型下的任务状态引用
IssueTypesApi get_enterprise_id_issue_types_issue_type_id_issue_states GET /{enterprise_id}/issue_types/{issue_type_id}/issue_states 获取单个任务类型下的任务状态列表
IssueTypesApi get_enterprise_id_issue_types_issue_type_id_workflow GET /{enterprise_id}/issue_types/{issue_type_id}/workflow 获取任务状态的流转关系
IssueTypesApi post_enterprise_id_issue_types POST /{enterprise_id}/issue_types 新增任务类型
IssueTypesApi put_enterprise_id_issue_types_change_serial PUT /{enterprise_id}/issue_types/change_serial 更新任务类型排序
IssueTypesApi put_enterprise_id_issue_types_issue_type_id PUT /{enterprise_id}/issue_types/{issue_type_id} 更新任务类型
IssueTypesApi put_enterprise_id_issue_types_issue_type_id_workflow PUT /{enterprise_id}/issue_types/{issue_type_id}/workflow 变更任务状态流转关系
IssuesApi delete_enterprise_id_issues_issue_id DELETE /{enterprise_id}/issues/{issue_id} 删除任务
IssuesApi delete_enterprise_id_issues_issue_id_attach_files_attach_file_id DELETE /{enterprise_id}/issues/{issue_id}/attach_files/{attach_file_id} 删除任务附件
IssuesApi delete_enterprise_id_issues_issue_id_link_pull_request_pull_request_id DELETE /{enterprise_id}/issues/{issue_id}/link_pull_request/{pull_request_id} 解除任务与 Pull Request 的关联
IssuesApi delete_enterprise_id_issues_issue_id_notes_note_id DELETE /{enterprise_id}/issues/{issue_id}/notes/{note_id} 删除某任务下评论
IssuesApi delete_enterprise_id_issues_issue_id_related_issue_link_issue_id DELETE /{enterprise_id}/issues/{issue_id}/related_issue/{link_issue_id} 移除任务的关联关系
IssuesApi delete_enterprise_id_issues_issue_id_star DELETE /{enterprise_id}/issues/{issue_id}/star 取消星标任务
IssuesApi get_enterprise_id_issues GET /{enterprise_id}/issues 获取任务列表
IssuesApi get_enterprise_id_issues_board_members GET /{enterprise_id}/issues/board_members 获取成员看板的成员列表
IssuesApi get_enterprise_id_issues_issue_id GET /{enterprise_id}/issues/{issue_id} 获取任务详情
IssuesApi get_enterprise_id_issues_issue_id_attach_files GET /{enterprise_id}/issues/{issue_id}/attach_files 获取任务附件
IssuesApi get_enterprise_id_issues_issue_id_auths GET /{enterprise_id}/issues/{issue_id}/auths 获取授权用户对任务的权限
IssuesApi get_enterprise_id_issues_issue_id_issue_states GET /{enterprise_id}/issues/{issue_id}/issue_states 获取当前任务可流转的下一状态
IssuesApi get_enterprise_id_issues_issue_id_link_issues GET /{enterprise_id}/issues/{issue_id}/link_issues 获取任务的关联任务
IssuesApi get_enterprise_id_issues_issue_id_link_pull_request GET /{enterprise_id}/issues/{issue_id}/link_pull_request 获取任务关联的 Pull Request
IssuesApi get_enterprise_id_issues_issue_id_notes GET /{enterprise_id}/issues/{issue_id}/notes 获取任务下的评论列表
IssuesApi get_enterprise_id_issues_issue_id_operate_logs GET /{enterprise_id}/issues/{issue_id}/operate_logs 获取任务的操作日志列表
IssuesApi get_enterprise_id_issues_issue_stats GET /{enterprise_id}/issues/issue_stats 获取企业下用户任务相关数量数据
IssuesApi get_enterprise_id_issues_link_issues GET /{enterprise_id}/issues/link_issues 可选的关联任务集
IssuesApi get_enterprise_id_issues_member_select GET /{enterprise_id}/issues/member_select 获取任务指派的成员列表
IssuesApi post_enterprise_id_issues POST /{enterprise_id}/issues 新建任务
IssuesApi post_enterprise_id_issues_filter POST /{enterprise_id}/issues/filter 获取任务列表-筛选器查询
IssuesApi post_enterprise_id_issues_issue_id_link_pull_request_pull_request_id POST /{enterprise_id}/issues/{issue_id}/link_pull_request/{pull_request_id} 任务关联 Pull Request
IssuesApi post_enterprise_id_issues_issue_id_notes POST /{enterprise_id}/issues/{issue_id}/notes 评论任务
IssuesApi post_enterprise_id_issues_issue_id_reaction POST /{enterprise_id}/issues/{issue_id}/reaction 新增任务表态
IssuesApi post_enterprise_id_issues_issue_id_related_issue POST /{enterprise_id}/issues/{issue_id}/related_issue 为指定任务添加关联任务
IssuesApi post_enterprise_id_issues_issue_id_star POST /{enterprise_id}/issues/{issue_id}/star 星标任务
IssuesApi put_enterprise_id_issues_issue_id PUT /{enterprise_id}/issues/{issue_id} 更新任务
IssuesApi put_enterprise_id_issues_issue_id_notes_note_id PUT /{enterprise_id}/issues/{issue_id}/notes/{note_id} 修改任务下的评论
IssuesApi put_enterprise_id_issues_issue_id_related_issue_link_issue_id PUT /{enterprise_id}/issues/{issue_id}/related_issue/{link_issue_id} 更新任务的关联关系
KooderApi get_enterprise_id_kooder_code GET /{enterprise_id}/kooder/code code 查询
KooderApi get_enterprise_id_kooder_docs GET /{enterprise_id}/kooder/docs 知识库查询
KooderApi get_enterprise_id_kooder_issue GET /{enterprise_id}/kooder/issue issue查询
KooderApi get_enterprise_id_kooder_project GET /{enterprise_id}/kooder/project 仓库查询
LabelsApi delete_enterprise_id_labels_label_id DELETE /{enterprise_id}/labels/{label_id} 删除标签
LabelsApi get_enterprise_id_labels GET /{enterprise_id}/labels 获取标签列表
LabelsApi post_enterprise_id_labels POST /{enterprise_id}/labels 新增标签
LabelsApi put_enterprise_id_labels_change_serial PUT /{enterprise_id}/labels/change_serial 更新标签排序
LabelsApi put_enterprise_id_labels_label_id PUT /{enterprise_id}/labels/{label_id} 更新标签
MemberApplicationsApi get_enterprise_id_member_applications GET /{enterprise_id}/member_applications 企业/仓库/团队的成员加入申请列表
MemberApplicationsApi post_enterprise_id_member_applications_bulk_operate POST /{enterprise_id}/member_applications/bulk_operate 批量处理申请记录
MemberApplicationsApi post_enterprise_id_member_applications_set_force_verify POST /{enterprise_id}/member_applications/set_force_verify 强制审核开关
MemberApplicationsApi put_enterprise_id_member_applications_member_application_id PUT /{enterprise_id}/member_applications/{member_application_id} 处理申请记录
MembersApi delete_enterprise_id_members DELETE /{enterprise_id}/members 成员批量移出企业
MembersApi delete_enterprise_id_members_user_id DELETE /{enterprise_id}/members/{user_id} 把成员移出企业
MembersApi delete_enterprise_id_members_user_id_groups_group_id DELETE /{enterprise_id}/members/{user_id}/groups/{group_id} 把成员移出团队
MembersApi delete_enterprise_id_members_user_id_projects_project_id DELETE /{enterprise_id}/members/{user_id}/projects/{project_id} 把成员移出仓库
MembersApi delete_enterprise_id_outside_members DELETE /{enterprise_id}/outside-members 企业外的成员-从企业组织或仓库中移除(单个/批量)
MembersApi get_enterprise_id_members GET /{enterprise_id}/members 获取企业成员列表
MembersApi get_enterprise_id_members_by_email GET /{enterprise_id}/members/by_email 通过邮箱获取成员详情
MembersApi get_enterprise_id_members_user_id GET /{enterprise_id}/members/{user_id} 获取企业成员详情
MembersApi get_enterprise_id_members_user_id_events GET /{enterprise_id}/members/{user_id}/events 企业成员动态
MembersApi get_enterprise_id_members_user_id_fork_projects GET /{enterprise_id}/members/{user_id}/fork_projects 获取成员fork的企业仓库列表
MembersApi get_enterprise_id_members_user_id_groups GET /{enterprise_id}/members/{user_id}/groups 获取成员加入的团队列表
MembersApi get_enterprise_id_members_user_id_programs GET /{enterprise_id}/members/{user_id}/programs 获取成员加入的项目列表
MembersApi get_enterprise_id_members_user_id_projects GET /{enterprise_id}/members/{user_id}/projects 获取成员加入的仓库列表
MembersApi post_enterprise_id_members_email_invitation POST /{enterprise_id}/members/email_invitation 添加成员到企业-邮件邀请
MembersApi post_enterprise_id_members_user_id_reset_password_email POST /{enterprise_id}/members/{user_id}/reset_password_email 发送密码重置邮件
MembersApi put_enterprise_id_members_user_id PUT /{enterprise_id}/members/{user_id} 更新企业成员信息
MembersApi put_enterprise_id_members_user_id_block PUT /{enterprise_id}/members/{user_id}/block 锁定/解除锁定用户
MembersApi put_enterprise_id_members_user_id_member_groups PUT /{enterprise_id}/members/{user_id}/member_groups 给成员添加/移出团队
MembersApi put_enterprise_id_members_user_id_member_programs PUT /{enterprise_id}/members/{user_id}/member_programs 给成员添加/移出项目
MembersApi put_enterprise_id_members_user_id_member_projects PUT /{enterprise_id}/members/{user_id}/member_projects 给成员添加/移出仓库
MilestonesApi delete_enterprise_id_milestones_milestone_id DELETE /{enterprise_id}/milestones/{milestone_id} 删除里程碑
MilestonesApi get_enterprise_id_milestones GET /{enterprise_id}/milestones 获取里程碑列表
MilestonesApi get_enterprise_id_milestones_milestone_id GET /{enterprise_id}/milestones/{milestone_id} 获取里程碑信息
MilestonesApi get_enterprise_id_milestones_milestone_id_participants GET /{enterprise_id}/milestones/{milestone_id}/participants 里程碑参与人列表
MilestonesApi post_enterprise_id_milestones POST /{enterprise_id}/milestones 新建里程碑
MilestonesApi put_enterprise_id_milestones_milestone_id PUT /{enterprise_id}/milestones/{milestone_id} 编辑里程碑
ProgramsApi delete_enterprise_id_programs_program_id DELETE /{enterprise_id}/programs/{program_id} 删除项目
ProgramsApi delete_enterprise_id_programs_program_id_groups_group_id DELETE /{enterprise_id}/programs/{program_id}/groups/{group_id} 移出项目下的团队
ProgramsApi delete_enterprise_id_programs_program_id_members_member_user_id DELETE /{enterprise_id}/programs/{program_id}/members/{member_user_id} 移出项目下成员
ProgramsApi delete_enterprise_id_programs_program_id_projects_project_id DELETE /{enterprise_id}/programs/{program_id}/projects/{project_id} 移出项目下仓库
ProgramsApi get_enterprise_id_programs GET /{enterprise_id}/programs 获取项目列表
ProgramsApi get_enterprise_id_programs_program_id GET /{enterprise_id}/programs/{program_id} 获取项目详情
ProgramsApi get_enterprise_id_programs_program_id_events GET /{enterprise_id}/programs/{program_id}/events 获取项目下动态列表
ProgramsApi get_enterprise_id_programs_program_id_groups GET /{enterprise_id}/programs/{program_id}/groups 获取项目下的团队
ProgramsApi get_enterprise_id_programs_program_id_issues GET /{enterprise_id}/programs/{program_id}/issues 获取项目下的任务列表
ProgramsApi get_enterprise_id_programs_program_id_members GET /{enterprise_id}/programs/{program_id}/members 获取项目下的成员列表
ProgramsApi get_enterprise_id_programs_program_id_operate_auths GET /{enterprise_id}/programs/{program_id}/operate_auths 获取项目的操作权限
ProgramsApi get_enterprise_id_programs_program_id_projects GET /{enterprise_id}/programs/{program_id}/projects 获取项目下的仓库列表
ProgramsApi get_enterprise_id_programs_program_id_pull_requests GET /{enterprise_id}/programs/{program_id}/pull_requests 获取项目下的 Pull Request
ProgramsApi get_enterprise_id_programs_unset GET /{enterprise_id}/programs/unset 获取未立项项目
ProgramsApi post_enterprise_id_programs POST /{enterprise_id}/programs 新建项目
ProgramsApi post_enterprise_id_programs_program_id_members POST /{enterprise_id}/programs/{program_id}/members 添加企业成员或团队进项目
ProgramsApi post_enterprise_id_programs_program_id_projects POST /{enterprise_id}/programs/{program_id}/projects 项目关联仓库
ProgramsApi put_enterprise_id_programs_program_id PUT /{enterprise_id}/programs/{program_id} 更新项目
ProjectAdminApi get_enterprise_id_projects_project_id_availabel_keys GET /{enterprise_id}/projects/{project_id}/availabel_keys 可部署公钥
ProjectAdminApi get_enterprise_id_projects_project_id_deploy_keys GET /{enterprise_id}/projects/{project_id}/deploy_keys 已启用公钥
ProjectAdminApi get_enterprise_id_projects_project_id_deploy_keys_deploy_key_id GET /{enterprise_id}/projects/{project_id}/deploy_keys/{deploy_key_id} 公钥详情
ProjectAdminApi get_enterprise_id_projects_project_id_pr_assigner GET /{enterprise_id}/projects/{project_id}/pr_assigner 查看代码审查设置
ProjectAdminApi post_enterprise_id_projects_project_id_deploy_keys POST /{enterprise_id}/projects/{project_id}/deploy_keys 添加部署公钥
ProjectAdminApi post_enterprise_id_projects_project_id_initialiaze_readme POST /{enterprise_id}/projects/{project_id}/initialiaze_readme 初始化README
ProjectAdminApi put_enterprise_id_projects_project_id_deploy_keys_deploy_key_id PUT /{enterprise_id}/projects/{project_id}/deploy_keys/{deploy_key_id} 启用/停用公钥
ProjectAdminApi put_enterprise_id_projects_project_id_pr_assigner PUT /{enterprise_id}/projects/{project_id}/pr_assigner 指派审查、测试人员
ProjectAdminApi put_enterprise_id_projects_project_id_status PUT /{enterprise_id}/projects/{project_id}/status 仓库归档(状态管理)
ProjectBranchApi delete_enterprise_id_projects_project_id_branches_batch_destroy DELETE /{enterprise_id}/projects/{project_id}/branches/batch_destroy 批量删除分支
ProjectBranchApi delete_enterprise_id_projects_project_id_branches_name DELETE /{enterprise_id}/projects/{project_id}/branches/{name} 删除分支
ProjectBranchApi get_enterprise_id_projects_project_id_branches GET /{enterprise_id}/projects/{project_id}/branches 获取仓库的分支列表
ProjectBranchApi post_enterprise_id_projects_project_id_branches POST /{enterprise_id}/projects/{project_id}/branches 添加分支
ProjectBranchApi put_enterprise_id_projects_project_id_branches_name PUT /{enterprise_id}/projects/{project_id}/branches/{name} 编辑分支状态
ProjectBranchApi put_enterprise_id_projects_project_id_branches_name_set_default PUT /{enterprise_id}/projects/{project_id}/branches/{name}/set_default 设为默认分支
ProjectCommitsApi get_enterprise_id_projects_project_id_commit_commit_id GET /{enterprise_id}/projects/{project_id}/commit/{commit_id} commit详情
ProjectCommitsApi get_enterprise_id_projects_project_id_commit_commit_id_branches GET /{enterprise_id}/projects/{project_id}/commit/{commit_id}/branches 获取commit的分支和tag
ProjectCommitsApi get_enterprise_id_projects_project_id_commit_commit_id_diff_for_path GET /{enterprise_id}/projects/{project_id}/commit/{commit_id}/diff_for_path 获取 commit 详情中差异较大的文件内容
ProjectCommitsApi get_enterprise_id_projects_project_id_commit_commit_id_notes GET /{enterprise_id}/projects/{project_id}/commit/{commit_id}/notes Commit 评论列表
ProjectCommitsApi get_enterprise_id_projects_project_id_commits_ref GET /{enterprise_id}/projects/{project_id}/commits/{ref} commits列表
ProjectCommitsApi get_enterprise_id_projects_project_id_compare_from___to GET /{enterprise_id}/projects/{project_id}/compare/{from}...{to} 对比commit
ProjectCommitsApi post_enterprise_id_projects_project_id_commit_commit_id_notes POST /{enterprise_id}/projects/{project_id}/commit/{commit_id}/notes 评论 Commit
ProjectEnvApi delete_enterprise_id_projects_project_id_env_variables_env_variable_id DELETE /{enterprise_id}/projects/{project_id}/env_variables/{env_variable_id} 删除环境变量
ProjectEnvApi get_enterprise_id_projects_project_id_env_variables GET /{enterprise_id}/projects/{project_id}/env_variables 环境变量列表
ProjectEnvApi post_enterprise_id_projects_project_id_env_variables POST /{enterprise_id}/projects/{project_id}/env_variables 新建环境变量
ProjectEnvApi put_enterprise_id_projects_project_id_env_variables_env_variable_id PUT /{enterprise_id}/projects/{project_id}/env_variables/{env_variable_id} 修改环境变量
ProjectMembersApi delete_enterprise_id_projects_project_id_members_apply_apply_id DELETE /{enterprise_id}/projects/{project_id}/members/apply/{apply_id} 删除仓库成员申请
ProjectMembersApi delete_enterprise_id_projects_project_id_members_member_id DELETE /{enterprise_id}/projects/{project_id}/members/{member_id} 移除仓库成员
ProjectMembersApi get_enterprise_id_projects_project_id_members GET /{enterprise_id}/projects/{project_id}/members 仓库成员
ProjectMembersApi get_enterprise_id_projects_project_id_members_apply_list GET /{enterprise_id}/projects/{project_id}/members/apply_list 仓库成员申请列表
ProjectMembersApi get_enterprise_id_projects_project_id_members_overview GET /{enterprise_id}/projects/{project_id}/members/overview 成员概览
ProjectMembersApi get_enterprise_id_projects_project_id_members_roles GET /{enterprise_id}/projects/{project_id}/members/roles 获取仓库角色
ProjectMembersApi post_enterprise_id_projects_project_id_members POST /{enterprise_id}/projects/{project_id}/members 添加仓库成员
ProjectMembersApi put_enterprise_id_projects_project_id_members_member_id PUT /{enterprise_id}/projects/{project_id}/members/{member_id} 修改仓库成员权限
ProjectTagsApi delete_enterprise_id_projects_project_id_tags_destroy DELETE /{enterprise_id}/projects/{project_id}/tags/destroy 删除标签
ProjectTagsApi get_enterprise_id_projects_project_id_tags GET /{enterprise_id}/projects/{project_id}/tags 获取仓库的标签列表
ProjectTagsApi post_enterprise_id_projects_project_id_tags POST /{enterprise_id}/projects/{project_id}/tags 新建标签
PullRequestsApi delete_enterprise_id_projects_project_id_pull_requests_pull_request_id_link_issues_link_issue_id DELETE /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id}/link_issues/{link_issue_id} PR 取消 关联任务
PullRequestsApi delete_enterprise_id_projects_project_id_pull_requests_pull_request_id_reactions_current_user_reaction_id DELETE /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id}/reactions/{current_user_reaction_id} 取消PR表态
PullRequestsApi get_enterprise_id_projects_project_id_pull_requests_new_commits GET /{enterprise_id}/projects/{project_id}/pull_requests/new/commits 获取分支对比的 Commit 列表信息
PullRequestsApi get_enterprise_id_projects_project_id_pull_requests_new_files GET /{enterprise_id}/projects/{project_id}/pull_requests/new/files 获取分支对比的文件改动列表
PullRequestsApi get_enterprise_id_projects_project_id_pull_requests_pull_request_id GET /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id} 获取 Pull Request 详情
PullRequestsApi get_enterprise_id_projects_project_id_pull_requests_pull_request_id_auths GET /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id}/auths 获取授权用户对 PR 的权限
PullRequestsApi get_enterprise_id_projects_project_id_pull_requests_pull_request_id_commits GET /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id}/commits 获取某Pull Request的所有Commit信息
PullRequestsApi get_enterprise_id_projects_project_id_pull_requests_pull_request_id_commits_commit_id_files GET /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id}/commits/{commit_id}/files 获取 Commit 下的 diffs
PullRequestsApi get_enterprise_id_projects_project_id_pull_requests_pull_request_id_diff_for_path GET /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id}/diff_for_path 获取 PullRequest 中差异较大的文件内容
PullRequestsApi get_enterprise_id_projects_project_id_pull_requests_pull_request_id_diff_position_context GET /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id}/diff_position_context 获取 Pull Request 评论引用的代码片段
PullRequestsApi get_enterprise_id_projects_project_id_pull_requests_pull_request_id_files GET /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id}/files Pull Request Commit 文件列表。最多显示100条diff
PullRequestsApi get_enterprise_id_projects_project_id_pull_requests_pull_request_id_link_issues GET /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id}/link_issues PR 关联任务任务列表
PullRequestsApi get_enterprise_id_projects_project_id_pull_requests_pull_request_id_notes GET /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id}/notes 获取 Pull Request 评论列表
PullRequestsApi get_enterprise_id_projects_project_id_pull_requests_pull_request_id_operate_logs GET /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id}/operate_logs 获取 Pull Request 操作日志
PullRequestsApi get_enterprise_id_projects_project_id_pull_requests_pull_request_id_scan_reports GET /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id}/scan_reports 获取 PullRequest 的 GiteeScan 报告
PullRequestsApi get_enterprise_id_pull_requests GET /{enterprise_id}/pull_requests 获取企业下的 Pull Request 列表
PullRequestsApi get_enterprise_id_pull_requests_pull_request_stats GET /{enterprise_id}/pull_requests/pull_request_stats 获取企业下用户 Pull Request 相关数量数据
PullRequestsApi post_enterprise_id_projects_project_id_pull_requests POST /{enterprise_id}/projects/{project_id}/pull_requests 创建 PR
PullRequestsApi post_enterprise_id_projects_project_id_pull_requests_pull_request_id_cherry_pick POST /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id}/cherry_pick 创建 Cherry Pick
PullRequestsApi post_enterprise_id_projects_project_id_pull_requests_pull_request_id_link_issues POST /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id}/link_issues PR 添加 关联任务
PullRequestsApi post_enterprise_id_projects_project_id_pull_requests_pull_request_id_merge POST /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id}/merge 合并 PR
PullRequestsApi post_enterprise_id_projects_project_id_pull_requests_pull_request_id_notes POST /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id}/notes 评论 Pull Request
PullRequestsApi post_enterprise_id_projects_project_id_pull_requests_pull_request_id_reactions POST /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id}/reactions 新增PR表态
PullRequestsApi put_enterprise_id_projects_project_id_pull_requests_pull_request_id PUT /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id} 更新 Pull Request
PullRequestsApi put_enterprise_id_projects_project_id_pull_requests_pull_request_id_assign PUT /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id}/assign PR 审查通过
PullRequestsApi put_enterprise_id_projects_project_id_pull_requests_pull_request_id_test PUT /{enterprise_id}/projects/{project_id}/pull_requests/{pull_request_id}/test PR 测试通过
ReactionApi delete_enterprise_id_reactions_reaction_id DELETE /{enterprise_id}/reactions/{reaction_id} 删除表态
ReactionApi post_enterprise_id_reactions POST /{enterprise_id}/reactions 新增表态
StatisticsApi get_enterprise_id_dashboard_statistics_overview GET /{enterprise_id}/dashboard_statistics/overview 获取企业概览数据
StatisticsApi get_enterprise_id_dashboard_statistics_user_dashboard GET /{enterprise_id}/dashboard_statistics/user_dashboard 获取当前用户的统计信息
StatisticsApi get_enterprise_id_statistics_enterprise_os_project_list GET /{enterprise_id}/statistics/enterprise_os_project_list 获取企业开源仓库详情列表
StatisticsApi get_enterprise_id_statistics_enterprise_program_list GET /{enterprise_id}/statistics/enterprise_program_list 获取企业项目的统计信息
StatisticsApi get_enterprise_id_statistics_enterprise_project_list GET /{enterprise_id}/statistics/enterprise_project_list 获取企业仓库的统计信息
StatisticsApi get_enterprise_id_statistics_user_statistic GET /{enterprise_id}/statistics/user_statistic 获取成员的统计信息
UsersApi get_users GET /users 获取授权用户的资料
WeekReportsApi delete_enterprise_id_week_reports_report_id_comment_comment_id DELETE /{enterprise_id}/week_reports/{report_id}/comment/{comment_id} 删除周报某个评论
WeekReportsApi delete_enterprise_id_week_reports_templates_template_id DELETE /{enterprise_id}/week_reports/templates/{template_id} 删除周报模版
WeekReportsApi get_enterprise_id_week_reports_member_reports GET /{enterprise_id}/week_reports/member_reports 成员周报列表
WeekReportsApi get_enterprise_id_week_reports_my_reports GET /{enterprise_id}/week_reports/my_reports 获取授权用户的周报列表
WeekReportsApi get_enterprise_id_week_reports_not_submit_users GET /{enterprise_id}/week_reports/not_submit_users 获取未提交周报的用户列表
WeekReportsApi get_enterprise_id_week_reports_relate_events GET /{enterprise_id}/week_reports/relate_events 周报可关联动态列表
WeekReportsApi get_enterprise_id_week_reports_relations GET /{enterprise_id}/week_reports/relations 获取周报可关联issue和pull request
WeekReportsApi get_enterprise_id_week_reports_report_id_comments GET /{enterprise_id}/week_reports/{report_id}/comments 某个周报评论列表
WeekReportsApi get_enterprise_id_week_reports_templates GET /{enterprise_id}/week_reports/templates 周报模版列表
WeekReportsApi get_enterprise_id_week_reports_templates_template_id GET /{enterprise_id}/week_reports/templates/{template_id} 查看周报模版详情
WeekReportsApi get_enterprise_id_week_reports_username_year_week_index GET /{enterprise_id}/week_reports/{username}/{year}/{week_index} 获取某人某年某周的周报详情
WeekReportsApi get_enterprise_id_week_reports_year_weeks GET /{enterprise_id}/week_reports/{year}/weeks 获取企业某年存在周报的周
WeekReportsApi get_enterprise_id_week_reports_years GET /{enterprise_id}/week_reports/years 获取企业存在周报的年份
WeekReportsApi post_enterprise_id_week_reports_preview_data POST /{enterprise_id}/week_reports/preview_data 预览周报
WeekReportsApi post_enterprise_id_week_reports_report_id_comment POST /{enterprise_id}/week_reports/{report_id}/comment 评论周报
WeekReportsApi post_enterprise_id_week_reports_templates POST /{enterprise_id}/week_reports/templates 新增周报模版
WeekReportsApi put_enterprise_id_week_reports_templates_template_id PUT /{enterprise_id}/week_reports/templates/{template_id} 编辑周报模版
WeekReportsApi put_enterprise_id_week_reports_username_year_week_index PUT /{enterprise_id}/week_reports/{username}/{year}/{week_index} 新建/编辑周报
WorkflowApi get_enterprise_id_workflow_list GET /{enterprise_id}/workflow/list 获取任务类型的工作流列表

Documentation For Models

Documentation For Authorization

All endpoints do not require authorization.

Author

Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright 2021 Gitee.com Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

简介

Gitee enterprise API (https://gitee.com/api/v8/doc_json?oauth_type=enterprise) generated by swagger-codegen 展开 收起
Python
Apache-2.0
取消

发行版

暂无发行版

贡献者 (1)

全部

近期动态

3年前强推了提交到 main 分支,6013b44...b4db952
3年前强推了提交到 main 分支,fc27b2f...6013b44
3年前推送了新的提交到 main 分支,0fe244f...fc27b2f
3年前推送了新的 main 分支
3年前创建了仓库
加载更多
不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/bluishoul/python-gitee-ent-api.git
git@gitee.com:bluishoul/python-gitee-ent-api.git
bluishoul
python-gitee-ent-api
python-gitee-ent-api
main

搜索帮助