com.volcengine.model.live.v20230101.DescribeCertDetailSecretV2ResResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.live.v20230101;
import com.alibaba.fastjson.JSON;
import java.util.List;
/**
* DescribeCertDetailSecretV2ResResult
*/
@lombok.Data
public final class DescribeCertDetailSecretV2ResResult {
/**
* 与证书绑定的域名列表。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "CertDomainList")
private List certDomainList;
/**
* 证书链 ID。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ChainID")
private String chainID;
/**
* 证书详细信息。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "SSL")
private DescribeCertDetailSecretV2ResResultSSL sSL;
/**
* 证书名称。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "CertName")
private String certName;
/**
* 证书的生效日期,RFC3339 格式的 UTC 时间,精度为秒。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "NotBefore")
private String notBefore;
/**
* 证书的过期时间,RFC3339 格式的 UTC 时间,精度为秒。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "NotAfter")
private String notAfter;
/**
* 证书状态,取值及含义如下所示。
*
*
*
* - `OK`:正常;
*
* - `Expire`:过期;
*
* - `30days`:有效期剩余 30 天;
*
* - `15days`:有效期剩余 15 天;
*
* - `7days`:有效期剩余 7 天;
*
* - `1days`:有效期剩余 1 天。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Status")
private String status;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy