DescribeVsCertificateList
描述
获取证书列表信息。
请求参数
参数 | 类型 | 是否必须 | 描述 |
---|---|---|---|
Action | String | 是 | 操作接口名,系统规定参数 DescribeVsCertificateList |
DomainName | String | 否 | 域名 |
返回参数
名称 | 类型 | 描述 |
---|---|---|
RequestId | String | RequestId |
CertificateListModel | CertificateListModel类型 | 证书id |
数据类型CertificateListModel
名称 | 类型 | 描述 |
---|---|---|
Count | Integer | 证书个数 |
CertList | Cert | 证书列表信息 |
数据类型Cert
名称 | 类型 | 描述 |
---|---|---|
CertName | String | 证书名称 |
CertId | Long | 证书id |
Fingerprint | String | 证书指纹。 |
Common | String | 证书中的CN属性,一般是一个域名。 |
Issuer | String | 证书发行商 |
LastTime | Long | 时间 |
请求示例:
http://vs.aliyuncs.com?Action=DescribeVsCertificateList&CertName=xxx&<公共请求参数>
返回示例:
JSON格式
{
"CertificateListModel": {
"Count": 2,
"CertList": {
"Cert": [
{
"CertName": "证书1",
"Issuer": "xxx",
"LastTime": 1512388610,
"CertId": xxx,
"Common": "test",
"Fingerprint": "xxx"
},
{
"CertName": "证书2",
"Issuer": "xxx",
"LastTime": 1512388659,
"CertId": xxx,
"Common": "test",
"Fingerprint": "xxx"
}
]
}
},
"RequestId": "FC0E34AC-0239-44A7-AB0E-800DE522C8DA"
}