shiver.me.timbers.aws.elasticsearch.DomainEBSOptions Maven / Gradle / Ivy
Show all versions of smt-cloudformation-objects Show documentation
package shiver.me.timbers.aws.elasticsearch;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
import shiver.me.timbers.aws.Property;
/**
* DomainEBSOptions
*
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html
*
*/
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@JsonPropertyOrder({
"EBSEnabled",
"Iops",
"VolumeSize",
"VolumeType"
})
public class DomainEBSOptions implements Property
{
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled
*
*/
@JsonProperty("EBSEnabled")
@JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled")
private CharSequence eBSEnabled;
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops
*
*/
@JsonProperty("Iops")
@JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops")
private Number iops;
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize
*
*/
@JsonProperty("VolumeSize")
@JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize")
private Number volumeSize;
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype
*
*/
@JsonProperty("VolumeType")
@JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype")
private CharSequence volumeType;
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled
*
*/
@JsonIgnore
public CharSequence getEBSEnabled() {
return eBSEnabled;
}
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled
*
*/
@JsonIgnore
public void setEBSEnabled(CharSequence eBSEnabled) {
this.eBSEnabled = eBSEnabled;
}
public DomainEBSOptions withEBSEnabled(CharSequence eBSEnabled) {
this.eBSEnabled = eBSEnabled;
return this;
}
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops
*
*/
@JsonIgnore
public Number getIops() {
return iops;
}
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops
*
*/
@JsonIgnore
public void setIops(Number iops) {
this.iops = iops;
}
public DomainEBSOptions withIops(Number iops) {
this.iops = iops;
return this;
}
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize
*
*/
@JsonIgnore
public Number getVolumeSize() {
return volumeSize;
}
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize
*
*/
@JsonIgnore
public void setVolumeSize(Number volumeSize) {
this.volumeSize = volumeSize;
}
public DomainEBSOptions withVolumeSize(Number volumeSize) {
this.volumeSize = volumeSize;
return this;
}
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype
*
*/
@JsonIgnore
public CharSequence getVolumeType() {
return volumeType;
}
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype
*
*/
@JsonIgnore
public void setVolumeType(CharSequence volumeType) {
this.volumeType = volumeType;
}
public DomainEBSOptions withVolumeType(CharSequence volumeType) {
this.volumeType = volumeType;
return this;
}
@Override
public String toString() {
return new ToStringBuilder(this).append("eBSEnabled", eBSEnabled).append("iops", iops).append("volumeSize", volumeSize).append("volumeType", volumeType).toString();
}
@Override
public int hashCode() {
return new HashCodeBuilder().append(iops).append(volumeType).append(eBSEnabled).append(volumeSize).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof DomainEBSOptions) == false) {
return false;
}
DomainEBSOptions rhs = ((DomainEBSOptions) other);
return new EqualsBuilder().append(iops, rhs.iops).append(volumeType, rhs.volumeType).append(eBSEnabled, rhs.eBSEnabled).append(volumeSize, rhs.volumeSize).isEquals();
}
}