com.volcengine.escloud.model.StorageSpecForDescribeInstanceNodesOutput Maven / Gradle / Ivy
/*
* escloud
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: common-version
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.volcengine.escloud.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.v3.oas.annotations.media.Schema;
import java.io.IOException;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
* StorageSpecForDescribeInstanceNodesOutput
*/
public class StorageSpecForDescribeInstanceNodesOutput {
@SerializedName("Description")
private String description = null;
@SerializedName("DisplayName")
private String displayName = null;
@SerializedName("MaxSize")
private Long maxSize = null;
@SerializedName("MinSize")
private Long minSize = null;
@SerializedName("Type")
private String type = null;
public StorageSpecForDescribeInstanceNodesOutput description(String description) {
this.description = description;
return this;
}
/**
* Get description
* @return description
**/
@Schema(description = "")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public StorageSpecForDescribeInstanceNodesOutput displayName(String displayName) {
this.displayName = displayName;
return this;
}
/**
* Get displayName
* @return displayName
**/
@Schema(description = "")
public String getDisplayName() {
return displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public StorageSpecForDescribeInstanceNodesOutput maxSize(Long maxSize) {
this.maxSize = maxSize;
return this;
}
/**
* Get maxSize
* @return maxSize
**/
@Schema(description = "")
public Long getMaxSize() {
return maxSize;
}
public void setMaxSize(Long maxSize) {
this.maxSize = maxSize;
}
public StorageSpecForDescribeInstanceNodesOutput minSize(Long minSize) {
this.minSize = minSize;
return this;
}
/**
* Get minSize
* @return minSize
**/
@Schema(description = "")
public Long getMinSize() {
return minSize;
}
public void setMinSize(Long minSize) {
this.minSize = minSize;
}
public StorageSpecForDescribeInstanceNodesOutput type(String type) {
this.type = type;
return this;
}
/**
* Get type
* @return type
**/
@Schema(description = "")
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
StorageSpecForDescribeInstanceNodesOutput storageSpecForDescribeInstanceNodesOutput = (StorageSpecForDescribeInstanceNodesOutput) o;
return Objects.equals(this.description, storageSpecForDescribeInstanceNodesOutput.description) &&
Objects.equals(this.displayName, storageSpecForDescribeInstanceNodesOutput.displayName) &&
Objects.equals(this.maxSize, storageSpecForDescribeInstanceNodesOutput.maxSize) &&
Objects.equals(this.minSize, storageSpecForDescribeInstanceNodesOutput.minSize) &&
Objects.equals(this.type, storageSpecForDescribeInstanceNodesOutput.type);
}
@Override
public int hashCode() {
return Objects.hash(description, displayName, maxSize, minSize, type);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class StorageSpecForDescribeInstanceNodesOutput {\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" displayName: ").append(toIndentedString(displayName)).append("\n");
sb.append(" maxSize: ").append(toIndentedString(maxSize)).append("\n");
sb.append(" minSize: ").append(toIndentedString(minSize)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).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 ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy