com.amazonaws.services.ec2.model.InstanceStorageInfo Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ec2 Show documentation
/*
* Copyright 2016-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.ec2.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* Describes the instance store features that are supported by the instance type.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class InstanceStorageInfo implements Serializable, Cloneable {
/**
*
* The total size of the disks, in GB.
*
*/
private Long totalSizeInGB;
/**
*
* Describes the disks that are available for the instance type.
*
*/
private com.amazonaws.internal.SdkInternalList disks;
/**
*
* Indicates whether non-volatile memory express (NVMe) is supported.
*
*/
private String nvmeSupport;
/**
*
* Indicates whether data is encrypted at rest.
*
*/
private String encryptionSupport;
/**
*
* The total size of the disks, in GB.
*
*
* @param totalSizeInGB
* The total size of the disks, in GB.
*/
public void setTotalSizeInGB(Long totalSizeInGB) {
this.totalSizeInGB = totalSizeInGB;
}
/**
*
* The total size of the disks, in GB.
*
*
* @return The total size of the disks, in GB.
*/
public Long getTotalSizeInGB() {
return this.totalSizeInGB;
}
/**
*
* The total size of the disks, in GB.
*
*
* @param totalSizeInGB
* The total size of the disks, in GB.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public InstanceStorageInfo withTotalSizeInGB(Long totalSizeInGB) {
setTotalSizeInGB(totalSizeInGB);
return this;
}
/**
*
* Describes the disks that are available for the instance type.
*
*
* @return Describes the disks that are available for the instance type.
*/
public java.util.List getDisks() {
if (disks == null) {
disks = new com.amazonaws.internal.SdkInternalList();
}
return disks;
}
/**
*
* Describes the disks that are available for the instance type.
*
*
* @param disks
* Describes the disks that are available for the instance type.
*/
public void setDisks(java.util.Collection disks) {
if (disks == null) {
this.disks = null;
return;
}
this.disks = new com.amazonaws.internal.SdkInternalList(disks);
}
/**
*
* Describes the disks that are available for the instance type.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setDisks(java.util.Collection)} or {@link #withDisks(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param disks
* Describes the disks that are available for the instance type.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public InstanceStorageInfo withDisks(DiskInfo... disks) {
if (this.disks == null) {
setDisks(new com.amazonaws.internal.SdkInternalList(disks.length));
}
for (DiskInfo ele : disks) {
this.disks.add(ele);
}
return this;
}
/**
*
* Describes the disks that are available for the instance type.
*
*
* @param disks
* Describes the disks that are available for the instance type.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public InstanceStorageInfo withDisks(java.util.Collection disks) {
setDisks(disks);
return this;
}
/**
*
* Indicates whether non-volatile memory express (NVMe) is supported.
*
*
* @param nvmeSupport
* Indicates whether non-volatile memory express (NVMe) is supported.
* @see EphemeralNvmeSupport
*/
public void setNvmeSupport(String nvmeSupport) {
this.nvmeSupport = nvmeSupport;
}
/**
*
* Indicates whether non-volatile memory express (NVMe) is supported.
*
*
* @return Indicates whether non-volatile memory express (NVMe) is supported.
* @see EphemeralNvmeSupport
*/
public String getNvmeSupport() {
return this.nvmeSupport;
}
/**
*
* Indicates whether non-volatile memory express (NVMe) is supported.
*
*
* @param nvmeSupport
* Indicates whether non-volatile memory express (NVMe) is supported.
* @return Returns a reference to this object so that method calls can be chained together.
* @see EphemeralNvmeSupport
*/
public InstanceStorageInfo withNvmeSupport(String nvmeSupport) {
setNvmeSupport(nvmeSupport);
return this;
}
/**
*
* Indicates whether non-volatile memory express (NVMe) is supported.
*
*
* @param nvmeSupport
* Indicates whether non-volatile memory express (NVMe) is supported.
* @return Returns a reference to this object so that method calls can be chained together.
* @see EphemeralNvmeSupport
*/
public InstanceStorageInfo withNvmeSupport(EphemeralNvmeSupport nvmeSupport) {
this.nvmeSupport = nvmeSupport.toString();
return this;
}
/**
*
* Indicates whether data is encrypted at rest.
*
*
* @param encryptionSupport
* Indicates whether data is encrypted at rest.
* @see InstanceStorageEncryptionSupport
*/
public void setEncryptionSupport(String encryptionSupport) {
this.encryptionSupport = encryptionSupport;
}
/**
*
* Indicates whether data is encrypted at rest.
*
*
* @return Indicates whether data is encrypted at rest.
* @see InstanceStorageEncryptionSupport
*/
public String getEncryptionSupport() {
return this.encryptionSupport;
}
/**
*
* Indicates whether data is encrypted at rest.
*
*
* @param encryptionSupport
* Indicates whether data is encrypted at rest.
* @return Returns a reference to this object so that method calls can be chained together.
* @see InstanceStorageEncryptionSupport
*/
public InstanceStorageInfo withEncryptionSupport(String encryptionSupport) {
setEncryptionSupport(encryptionSupport);
return this;
}
/**
*
* Indicates whether data is encrypted at rest.
*
*
* @param encryptionSupport
* Indicates whether data is encrypted at rest.
* @return Returns a reference to this object so that method calls can be chained together.
* @see InstanceStorageEncryptionSupport
*/
public InstanceStorageInfo withEncryptionSupport(InstanceStorageEncryptionSupport encryptionSupport) {
this.encryptionSupport = encryptionSupport.toString();
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getTotalSizeInGB() != null)
sb.append("TotalSizeInGB: ").append(getTotalSizeInGB()).append(",");
if (getDisks() != null)
sb.append("Disks: ").append(getDisks()).append(",");
if (getNvmeSupport() != null)
sb.append("NvmeSupport: ").append(getNvmeSupport()).append(",");
if (getEncryptionSupport() != null)
sb.append("EncryptionSupport: ").append(getEncryptionSupport());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof InstanceStorageInfo == false)
return false;
InstanceStorageInfo other = (InstanceStorageInfo) obj;
if (other.getTotalSizeInGB() == null ^ this.getTotalSizeInGB() == null)
return false;
if (other.getTotalSizeInGB() != null && other.getTotalSizeInGB().equals(this.getTotalSizeInGB()) == false)
return false;
if (other.getDisks() == null ^ this.getDisks() == null)
return false;
if (other.getDisks() != null && other.getDisks().equals(this.getDisks()) == false)
return false;
if (other.getNvmeSupport() == null ^ this.getNvmeSupport() == null)
return false;
if (other.getNvmeSupport() != null && other.getNvmeSupport().equals(this.getNvmeSupport()) == false)
return false;
if (other.getEncryptionSupport() == null ^ this.getEncryptionSupport() == null)
return false;
if (other.getEncryptionSupport() != null && other.getEncryptionSupport().equals(this.getEncryptionSupport()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getTotalSizeInGB() == null) ? 0 : getTotalSizeInGB().hashCode());
hashCode = prime * hashCode + ((getDisks() == null) ? 0 : getDisks().hashCode());
hashCode = prime * hashCode + ((getNvmeSupport() == null) ? 0 : getNvmeSupport().hashCode());
hashCode = prime * hashCode + ((getEncryptionSupport() == null) ? 0 : getEncryptionSupport().hashCode());
return hashCode;
}
@Override
public InstanceStorageInfo clone() {
try {
return (InstanceStorageInfo) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}