com.huaweicloud.sdk.gaussdbforopengauss.v3.model.OpenGaussEnlargeVolume Maven / Gradle / Ivy
package com.huaweicloud.sdk.gaussdbforopengauss.v3.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.function.Consumer;
import java.util.Objects;
/**
* 扩容实例磁盘时必填。 所需扩容到的磁盘容量大小。
*/
public class OpenGaussEnlargeVolume {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value="size")
private Integer size;
public OpenGaussEnlargeVolume withSize(Integer size) {
this.size = size;
return this;
}
/**
* GaussDB磁盘大小要求(分片数*40GB)的倍数;取值范围:(分片数*40GB)~(分片数*16TB)
* @return size
*/
public Integer getSize() {
return size;
}
public void setSize(Integer size) {
this.size = size;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
OpenGaussEnlargeVolume openGaussEnlargeVolume = (OpenGaussEnlargeVolume) o;
return Objects.equals(this.size, openGaussEnlargeVolume.size);
}
@Override
public int hashCode() {
return Objects.hash(size);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class OpenGaussEnlargeVolume {\n");
sb.append(" size: ").append(toIndentedString(size)).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 ");
}
}