org.finra.herd.sdk.model.Storage Maven / Gradle / Ivy
/*
* herd-external
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: 0.125.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package org.finra.herd.sdk.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
import org.finra.herd.sdk.model.Attribute;
/**
* Storage
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class Storage {
@JsonProperty("name")
private String name = null;
@JsonProperty("storagePlatformName")
private String storagePlatformName = null;
@JsonProperty("attributes")
private List attributes = null;
public Storage name(String name) {
this.name = name;
return this;
}
/**
* Name of Storage
* @return name
**/
@ApiModelProperty(required = true, value = "Name of Storage")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Storage storagePlatformName(String storagePlatformName) {
this.storagePlatformName = storagePlatformName;
return this;
}
/**
* Name of Storage Platform (eg S3) associated with this Storage
* @return storagePlatformName
**/
@ApiModelProperty(required = true, value = "Name of Storage Platform (eg S3) associated with this Storage")
public String getStoragePlatformName() {
return storagePlatformName;
}
public void setStoragePlatformName(String storagePlatformName) {
this.storagePlatformName = storagePlatformName;
}
public Storage attributes(List attributes) {
this.attributes = attributes;
return this;
}
public Storage addAttributesItem(Attribute attributesItem) {
if (this.attributes == null) {
this.attributes = new ArrayList();
}
this.attributes.add(attributesItem);
return this;
}
/**
* Collection of name-value pairs. This can be used to store things such as S3 bucket names, validation flags, and custom user-defined meta-data about this storage
* @return attributes
**/
@ApiModelProperty(value = "Collection of name-value pairs. This can be used to store things such as S3 bucket names, validation flags, and custom user-defined meta-data about this storage ")
public List getAttributes() {
return attributes;
}
public void setAttributes(List attributes) {
this.attributes = attributes;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Storage storage = (Storage) o;
return Objects.equals(this.name, storage.name) &&
Objects.equals(this.storagePlatformName, storage.storagePlatformName) &&
Objects.equals(this.attributes, storage.attributes);
}
@Override
public int hashCode() {
return Objects.hash(name, storagePlatformName, attributes);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Storage {\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" storagePlatformName: ").append(toIndentedString(storagePlatformName)).append("\n");
sb.append(" attributes: ").append(toIndentedString(attributes)).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 ");
}
}