You need to enable JavaScript to run this app.
导航
公共错误码
最近更新时间:2024.07.02 21:03:11首次发布时间:2024.07.02 21:03:11
HTTP 状态码错误码错误信息说明

400

InvalidParameter.{parameter}

The specified parameter %s is invalid.

表示参数不合法,包括:参数类型错误、长度不合法、枚举值不合法、不满足正则规则等。 示例:InvalidParameter.Name

400MissingParameter.{parameter}The required parameter %s is missing.表示参数缺失,例如未传入必填参数。 示例:MissingParameter.WorkspaceId
400OperationDenied.{parameter}Operation is denied because %s.表示某些 action 被拒绝执行。例如流水线运行已经到达终态,无法再进行 cancel 操作。

401

Unauthorized.{parameter}

The request is refused because it lack authorization for %s

表示认证错误,代表服务无法对请求进行认证,例如:签名不匹配、签名缺失、找不到 AK 等 。

403

AccessDenied

You are not authorized to perform this action.

请求未通过 IAM 权限验证,建议先检查用户配置的 IAM 策略后重试。

403

Deleted.{parameter}

The request is refused because %s is deleted

资源已经被删除,无法继续完成请求。

404

NotFound.{parameter}

The specified {parameter} is not found

指定资源不存在,请确认后,更换目标资源名称并重试。

409

AlreadyExists.{parameter}

Fail to create resource because the field %s already exist.

资源已存在,请更换目标资源名称并重试。

500InternalErrorThe request has failed due to an unknown error.请求处理过程中出现了未知错误,例如:后端服务超时、出现网络波动等。