com.aliyuncs.vod.model.v20170321.DescribeVodSSLCertificateListResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-vod Show documentation
Show all versions of aliyun-java-sdk-vod Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
The newest version!
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.vod.model.v20170321;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.vod.transform.v20170321.DescribeVodSSLCertificateListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeVodSSLCertificateListResponse extends AcsResponse {
private String requestId;
private CertificateListModel certificateListModel;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public CertificateListModel getCertificateListModel() {
return this.certificateListModel;
}
public void setCertificateListModel(CertificateListModel certificateListModel) {
this.certificateListModel = certificateListModel;
}
public static class CertificateListModel {
private Integer count;
private Long pageNumber;
private Long pageSize;
private List certList;
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
}
public Long getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
}
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public List getCertList() {
return this.certList;
}
public void setCertList(List certList) {
this.certList = certList;
}
public static class Cert {
private Long lastTime;
private String fingerprint;
private String certName;
private String issuer;
private Long certId;
private String common;
private String certRegion;
public Long getLastTime() {
return this.lastTime;
}
public void setLastTime(Long lastTime) {
this.lastTime = lastTime;
}
public String getFingerprint() {
return this.fingerprint;
}
public void setFingerprint(String fingerprint) {
this.fingerprint = fingerprint;
}
public String getCertName() {
return this.certName;
}
public void setCertName(String certName) {
this.certName = certName;
}
public String getIssuer() {
return this.issuer;
}
public void setIssuer(String issuer) {
this.issuer = issuer;
}
public Long getCertId() {
return this.certId;
}
public void setCertId(Long certId) {
this.certId = certId;
}
public String getCommon() {
return this.common;
}
public void setCommon(String common) {
this.common = common;
}
public String getCertRegion() {
return this.certRegion;
}
public void setCertRegion(String certRegion) {
this.certRegion = certRegion;
}
}
}
@Override
public DescribeVodSSLCertificateListResponse getInstance(UnmarshallerContext context) {
return DescribeVodSSLCertificateListResponseUnmarshaller.unmarshall(this, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy