com.huaweicloud.sdk.kms.v2.model.ReplicateKeyRequest Maven / Gradle / Ivy
The newest version!
package com.huaweicloud.sdk.kms.v2.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
import java.util.function.Consumer;
/**
* Request Object
*/
public class ReplicateKeyRequest {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "key_id")
private String keyId;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "body")
private ReplicateKeyRequestBody body;
public ReplicateKeyRequest withKeyId(String keyId) {
this.keyId = keyId;
return this;
}
/**
* 待复制的密钥ID,36字节,满足正则匹配“^[0-9a-z]{8}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{12}$”。 例如:0d0466b0-e727-4d9c-b35d-f84bb474a37f。
* @return keyId
*/
public String getKeyId() {
return keyId;
}
public void setKeyId(String keyId) {
this.keyId = keyId;
}
public ReplicateKeyRequest withBody(ReplicateKeyRequestBody body) {
this.body = body;
return this;
}
public ReplicateKeyRequest withBody(Consumer bodySetter) {
if (this.body == null) {
this.body = new ReplicateKeyRequestBody();
bodySetter.accept(this.body);
}
return this;
}
/**
* Get body
* @return body
*/
public ReplicateKeyRequestBody getBody() {
return body;
}
public void setBody(ReplicateKeyRequestBody body) {
this.body = body;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ReplicateKeyRequest that = (ReplicateKeyRequest) obj;
return Objects.equals(this.keyId, that.keyId) && Objects.equals(this.body, that.body);
}
@Override
public int hashCode() {
return Objects.hash(keyId, body);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ReplicateKeyRequest {\n");
sb.append(" keyId: ").append(toIndentedString(keyId)).append("\n");
sb.append(" body: ").append(toIndentedString(body)).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 ");
}
}