华为云计算 云知识 查询租户配额ListQuotas
查询租户配额ListQuotas

 

功能介绍

查询租户配额

调试

您可以在API Explorer中调试该接口,支持自动认证鉴权。API Explorer可以自动生成SDK代码示例,并提供SDK代码示例调试功能。

URI

GET /v2/{project_id}/fgs/quotas

表1 路径参数

参数

是否必选

参数类型

描述

project_id

String

租户项目 ID,获取方式请参见获取项目ID

请求参数

表2 请求Header参数

参数

是否必选

参数类型

描述

X-Auth-Token

String

用户Token。

通过调用 IAM 服务获取用户Token接口获取(响应消息头中X-Subject-Token的值)。

响应参数

状态码: 200

表3 响应Body参数

参数

参数类型

描述

quotas

ListQuotasResult object

配额信息

表4 ListQuotasResult

参数

参数类型

描述

resources

Array of Resources objects

配额列表

表5 Resources

参数

参数类型

描述

quota

Integer

函数配额限制。

used

Integer

已使用的配额。

type

String

“资源类型”

枚举值:

  • fgs_func_scale_down_timeout

  • fgs_func_occurs

  • fgs_func_pat_idle_time

  • fgs_func_num

  • fgs_func_code_size

  • fgs_workflow_num

unit

String

资源的计数单位。fgs_func_code_size,单位为MB,其他场景无单位

状态码: 400

表6 响应Body参数

参数

参数类型

描述

error_code

String

错误码

error_msg

String

错误信息

状态码: 401

表7 响应Body参数

参数

参数类型

描述

error_code

String

错误码

error_msg

String

错误信息

状态码: 403

表8 响应Body参数

参数

参数类型

描述

error_code

String

错误码

error_msg

String

错误信息

状态码: 500

表9 响应Body参数

参数

参数类型

描述

error_code

String

错误码

error_msg

String

错误信息

请求示例

查询租户配额。

GET /v2/{project_id}/fgs/quotas

响应示例

状态码: 200

查询成功

{
  "quotas" : {
    "resources" : [ {
      "quota" : 60,
      "used" : 3,
      "type" : "fgs_func_scale_down_timeout"
    }, {
      "quota" : 100,
      "used" : 22,
      "type" : "fgs_func_occurs"
    }, {
      "quota" : 100,
      "used" : 22,
      "type" : "fgs_func_pat_idle_time"
    }, {
      "quota" : 100,
      "used" : 22,
      "type" : "fgs_func_num"
    }, {
      "quota" : 10240,
      "used" : 22,
      "type" : "fgs_func_code_size",
      "unit" : "MB"
    }, {
      "quota" : 512,
      "used" : 22,
      "type" : "fgs_workflow_num"
    } ]
  }
}

状态码

状态码

描述

200

查询成功

400

Bad Request 请求错误。

401

Unauthorized 鉴权失败。

403

Forbidden 没有操作权限。

500

Internal Server Error 服务内部错误。

错误码

请参见错误码

上一篇:云迁移业务应用评估的几个维度介绍 下一篇:MySQL与PostgreSQL的对比