com.huaweicloud.sdk.scm.v3.model.ImportCertificateRequestBody Maven / Gradle / Ivy
package com.huaweicloud.sdk.scm.v3.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
/**
* ImportCertificateRequestBody
*/
public class ImportCertificateRequestBody {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "name")
private String name;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "certificate")
private String certificate;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "certificate_chain")
private String certificateChain;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "private_key")
private String privateKey;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "enterprise_project_id")
private String enterpriseProjectId;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "enc_certificate")
private String encCertificate;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "enc_private_key")
private String encPrivateKey;
public ImportCertificateRequestBody withName(String name) {
this.name = name;
return this;
}
/**
* 证书名称。字符长度为3~63位。
* @return name
*/
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public ImportCertificateRequestBody withCertificate(String certificate) {
this.certificate = certificate;
return this;
}
/**
* 证书内容,可包含中间证书及根证书。若certificate_chain字段传入证书链,则该字段只取证书本身。回车换行需要使用转义字符\\n或者\\r\\n替换。
* @return certificate
*/
public String getCertificate() {
return certificate;
}
public void setCertificate(String certificate) {
this.certificate = certificate;
}
public ImportCertificateRequestBody withCertificateChain(String certificateChain) {
this.certificateChain = certificateChain;
return this;
}
/**
* 证书链,非必填,可通过certificate字段传入。回车换行需要使用转义字符\\n或者\\r\\n替换。
* @return certificateChain
*/
public String getCertificateChain() {
return certificateChain;
}
public void setCertificateChain(String certificateChain) {
this.certificateChain = certificateChain;
}
public ImportCertificateRequestBody withPrivateKey(String privateKey) {
this.privateKey = privateKey;
return this;
}
/**
* 证书私钥。 不能上传带有口令保护的私钥,回车换行需要使用转义字符\\n或者\\r\\n替换。
* @return privateKey
*/
public String getPrivateKey() {
return privateKey;
}
public void setPrivateKey(String privateKey) {
this.privateKey = privateKey;
}
public ImportCertificateRequestBody withEnterpriseProjectId(String enterpriseProjectId) {
this.enterpriseProjectId = enterpriseProjectId;
return this;
}
/**
* 企业多项目ID。用户未开通企业多项目时,不需要输入该字段。 用户开通企业多项目时,查询资源可以输入该字段。 若用户不输入该字段,默认查询租户所有有权限的企业多项目下的资源。 此时“enterprise_project_id”取值为“all”。 若用户输入该字段,取值满足以下任一条件. 取值为“all” 取值为“0” 满足正则匹配:“^[0-9a-z]{8}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{12}$”
* @return enterpriseProjectId
*/
public String getEnterpriseProjectId() {
return enterpriseProjectId;
}
public void setEnterpriseProjectId(String enterpriseProjectId) {
this.enterpriseProjectId = enterpriseProjectId;
}
public ImportCertificateRequestBody withEncCertificate(String encCertificate) {
this.encCertificate = encCertificate;
return this;
}
/**
* 可选参数,国密证书的加密证书内容。回车换行需要使用转义字符\\n或者\\r\\n替换。
* @return encCertificate
*/
public String getEncCertificate() {
return encCertificate;
}
public void setEncCertificate(String encCertificate) {
this.encCertificate = encCertificate;
}
public ImportCertificateRequestBody withEncPrivateKey(String encPrivateKey) {
this.encPrivateKey = encPrivateKey;
return this;
}
/**
* 可选参数,国密证书的加密私钥。 不能上传带有口令保护的私钥,回车换行需要使用转义字符\\n或者\\r\\n替换。
* @return encPrivateKey
*/
public String getEncPrivateKey() {
return encPrivateKey;
}
public void setEncPrivateKey(String encPrivateKey) {
this.encPrivateKey = encPrivateKey;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ImportCertificateRequestBody that = (ImportCertificateRequestBody) obj;
return Objects.equals(this.name, that.name) && Objects.equals(this.certificate, that.certificate)
&& Objects.equals(this.certificateChain, that.certificateChain)
&& Objects.equals(this.privateKey, that.privateKey)
&& Objects.equals(this.enterpriseProjectId, that.enterpriseProjectId)
&& Objects.equals(this.encCertificate, that.encCertificate)
&& Objects.equals(this.encPrivateKey, that.encPrivateKey);
}
@Override
public int hashCode() {
return Objects
.hash(name, certificate, certificateChain, privateKey, enterpriseProjectId, encCertificate, encPrivateKey);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ImportCertificateRequestBody {\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" certificate: ").append(toIndentedString(certificate)).append("\n");
sb.append(" certificateChain: ").append(toIndentedString(certificateChain)).append("\n");
sb.append(" privateKey: ").append(toIndentedString(privateKey)).append("\n");
sb.append(" enterpriseProjectId: ").append(toIndentedString(enterpriseProjectId)).append("\n");
sb.append(" encCertificate: ").append(toIndentedString(encCertificate)).append("\n");
sb.append(" encPrivateKey: ").append(toIndentedString(encPrivateKey)).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 ");
}
}