接口描述
本接口用于查询Configmap列表。
URL
URL:POST /configmap/v1/page
请求参数
名称 | 类型 | 是否必须 | 默认值 | 备注 |
---|---|---|---|---|
pageSize | number | 非必须 | 10条 | 每页个数 |
pageIndex | number | 非必须 | 1 | 页码 |
query | string | 非必须 | 模糊查询 |
响应参数
名称 | 类型 | 是否必须 | 描述 |
---|---|---|---|
requestId | string | 非必须 | 请求id |
status | object<Status> | 非必须 | 状态 |
page | object<Page> | 非必须 | 页面信息 |
data | object <Data> | 非必须 | 数据 |
Status
名称 | 类型 | 描述 |
---|---|---|
code | string | 状态码 |
message | string | 信息 |
Page
名称 | 类型 | 备注 |
---|---|---|
pageIndex | number | 页码 |
pageSize | number | 每页个数 |
total | number | 总数 |
Data
名称 | 类型 | 描述 |
---|---|---|
appName | string | 配置字典名称 |
key | string | 配置字典的key |
createAt | string | 创建时间 |
updateAt | string | 更新时间 |
operator | string | 操作人 |
describe | string | 描述 |
related | boolean |
请求示例
POST /api/esk/configmap/v1/page HTTP/1.1
Accept-Encoding: gzip, deflate
Accept: */*
Connection: keep-alive
Content-Length: 33
Content-Type: application/json
x-alogic-now: ***********
x-alogic-app: ************
x-alogic-signature: *********
x-alogic-ac: app
{"pageIndex": 1, "pageSize": 999}
响应示例
HTTP/1.1 200 OK
Server: nginx/1.17.8
Date: Mon, 27 Jun 2022 08:30:18 GMT
Content-Type: application/json; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
Vary: Accept-Encoding
Strict-Transport-Security: max-age=15724800; includeSubDomains
Content-Encoding: gzip
{"requestId":"casml6m3j2aqnsd6l3ng","status":{"code":"success","message":""},"page":{"pageIndex":1,"pageSize":999,"total":2},"data":[{"id":"0","idInt":0,"appName":"configmap-auto","namespace":"esk-18","key":"test","createAt":"2022-06-27 16:30:18","updateAt":"2022-06-27 16:30:18","operator":"","describe":"","related":false},{"id":"0","idInt":0,"appName":"test","namespace":"esk-18","key":"test","createAt":"2022-06-21 22:50:23","updateAt":"2022-06-21 22:50:23","operator":"","describe":"","related":true}]}