查询应用配置列表
接口功能
根据应用类型查询应用配置列表。
接口格式
操作类型:GET
URL:https://{ip}:{port}/icscertmgnt/v1/subject/application/query
请求参数
参数 |
是否必选 |
说明 |
取值要求 |
|---|---|---|---|
applicationType |
必选 |
配置类型,从接口获取。 |
三方应用类型["minio","wfe"]。 |
使用样例
请求样例:
GET https://<ip>:<port>/icscertmgnt/v1/subject/application/query?applicationType=minio
响应样例:
{
"status": "00000000",
"msg": "query application config list success !"
"data": [
{
"applicationConfigId": "1234-4567-8901-2345",
"applicationConfigName": "xxx",
"applicationType": "",
"endpoint": "xxx",
"httpsEnable":"disable"
"accesskey": "xxxx",
"secretkey": "xxxx"
"certId": "uuid"
"notAfterTime": "123456789"
}
]
}
响应状态码:200
输出说明
参数 |
类型 |
说明 |
|---|---|---|
status |
string |
状态码。 |
msg |
string |
状态描述。 |
data |
dict list |
应用配置列表,secretkey是加密后的字符串。 |
data.applicationConfigId |
uuid |
应用唯一标识码。 |
data.applicationConfigName |
string |
应用名称。 |
data.applicationType |
string |
当前返回类型仅支持minio、wfe。 |
data.endpoint |
string |
访问地址。 |
data.httpsEnable |
string |
https开关使能。 |
data.accesskey |
string |
用户名,没有则不显示。 |
data.secretkey |
string |
密码,没有则不显示。 |
data.certId |
uuid |
证书唯一标识码,没有则不显示。 |
data.notAfterTime |
string |
过期时间戳字符串。 |
父主题: 证书配置管理服务