com.huaweicloud.sdk.ccm.v1.model.ExportCertificateAuthorityCsrResponse Maven / Gradle / Ivy
package com.huaweicloud.sdk.ccm.v1.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.huaweicloud.sdk.core.SdkResponse;
import java.util.Objects;
/**
* Response Object
*/
public class ExportCertificateAuthorityCsrResponse extends SdkResponse {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "csr")
private String csr;
public ExportCertificateAuthorityCsrResponse withCsr(String csr) {
this.csr = csr;
return this;
}
/**
* 证书签名请求内容,有以下两种情况: - 通过API请求本接口,证书签名请求中换行符已使用\"\\r\\n\"代替; - 通过console端导出证书签名请求,将得到标准的PEM格式的证书签名请求文件。
* @return csr
*/
public String getCsr() {
return csr;
}
public void setCsr(String csr) {
this.csr = csr;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ExportCertificateAuthorityCsrResponse that = (ExportCertificateAuthorityCsrResponse) obj;
return Objects.equals(this.csr, that.csr);
}
@Override
public int hashCode() {
return Objects.hash(csr);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ExportCertificateAuthorityCsrResponse {\n");
sb.append(" csr: ").append(toIndentedString(csr)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}