All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.opsworks.model.VolumeConfiguration Maven / Gradle / Ivy

/*
 * Copyright 2013-2018 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.opsworks.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Describes an Amazon EBS volume configuration. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class VolumeConfiguration implements Serializable, Cloneable, StructuredPojo { /** *

* The volume mount point. For example "/dev/sdh". *

*/ private String mountPoint; /** *

* The volume RAID level. *

*/ private Integer raidLevel; /** *

* The number of disks in the volume. *

*/ private Integer numberOfDisks; /** *

* The volume size. *

*/ private Integer size; /** *

* The volume type. For more information, see Amazon EBS Volume Types. *

*
    *
  • *

    * standard - Magnetic. Magnetic volumes must have a minimum size of 1 GiB and a maximum size of 1024 * GiB. *

    *
  • *
  • *

    * io1 - Provisioned IOPS (SSD). PIOPS volumes must have a minimum size of 4 GiB and a maximum size of * 16384 GiB. *

    *
  • *
  • *

    * gp2 - General Purpose (SSD). General purpose volumes must have a minimum size of 1 GiB and a maximum * size of 16384 GiB. *

    *
  • *
  • *

    * st1 - Throughput Optimized hard disk drive (HDD). Throughput optimized HDD volumes must have a * minimum size of 500 GiB and a maximum size of 16384 GiB. *

    *
  • *
  • *

    * sc1 - Cold HDD. Cold HDD volumes must have a minimum size of 500 GiB and a maximum size of 16384 * GiB. *

    *
  • *
*/ private String volumeType; /** *

* For PIOPS volumes, the IOPS per disk. *

*/ private Integer iops; /** *

* Specifies whether an Amazon EBS volume is encrypted. For more information, see Amazon EBS Encryption. *

*/ private Boolean encrypted; /** *

* The volume mount point. For example "/dev/sdh". *

* * @param mountPoint * The volume mount point. For example "/dev/sdh". */ public void setMountPoint(String mountPoint) { this.mountPoint = mountPoint; } /** *

* The volume mount point. For example "/dev/sdh". *

* * @return The volume mount point. For example "/dev/sdh". */ public String getMountPoint() { return this.mountPoint; } /** *

* The volume mount point. For example "/dev/sdh". *

* * @param mountPoint * The volume mount point. For example "/dev/sdh". * @return Returns a reference to this object so that method calls can be chained together. */ public VolumeConfiguration withMountPoint(String mountPoint) { setMountPoint(mountPoint); return this; } /** *

* The volume RAID level. *

* * @param raidLevel * The volume RAID level. */ public void setRaidLevel(Integer raidLevel) { this.raidLevel = raidLevel; } /** *

* The volume RAID level. *

* * @return The volume RAID level. */ public Integer getRaidLevel() { return this.raidLevel; } /** *

* The volume RAID level. *

* * @param raidLevel * The volume RAID level. * @return Returns a reference to this object so that method calls can be chained together. */ public VolumeConfiguration withRaidLevel(Integer raidLevel) { setRaidLevel(raidLevel); return this; } /** *

* The number of disks in the volume. *

* * @param numberOfDisks * The number of disks in the volume. */ public void setNumberOfDisks(Integer numberOfDisks) { this.numberOfDisks = numberOfDisks; } /** *

* The number of disks in the volume. *

* * @return The number of disks in the volume. */ public Integer getNumberOfDisks() { return this.numberOfDisks; } /** *

* The number of disks in the volume. *

* * @param numberOfDisks * The number of disks in the volume. * @return Returns a reference to this object so that method calls can be chained together. */ public VolumeConfiguration withNumberOfDisks(Integer numberOfDisks) { setNumberOfDisks(numberOfDisks); return this; } /** *

* The volume size. *

* * @param size * The volume size. */ public void setSize(Integer size) { this.size = size; } /** *

* The volume size. *

* * @return The volume size. */ public Integer getSize() { return this.size; } /** *

* The volume size. *

* * @param size * The volume size. * @return Returns a reference to this object so that method calls can be chained together. */ public VolumeConfiguration withSize(Integer size) { setSize(size); return this; } /** *

* The volume type. For more information, see Amazon EBS Volume Types. *

*
    *
  • *

    * standard - Magnetic. Magnetic volumes must have a minimum size of 1 GiB and a maximum size of 1024 * GiB. *

    *
  • *
  • *

    * io1 - Provisioned IOPS (SSD). PIOPS volumes must have a minimum size of 4 GiB and a maximum size of * 16384 GiB. *

    *
  • *
  • *

    * gp2 - General Purpose (SSD). General purpose volumes must have a minimum size of 1 GiB and a maximum * size of 16384 GiB. *

    *
  • *
  • *

    * st1 - Throughput Optimized hard disk drive (HDD). Throughput optimized HDD volumes must have a * minimum size of 500 GiB and a maximum size of 16384 GiB. *

    *
  • *
  • *

    * sc1 - Cold HDD. Cold HDD volumes must have a minimum size of 500 GiB and a maximum size of 16384 * GiB. *

    *
  • *
* * @param volumeType * The volume type. For more information, see Amazon EBS Volume * Types.

*
    *
  • *

    * standard - Magnetic. Magnetic volumes must have a minimum size of 1 GiB and a maximum size of * 1024 GiB. *

    *
  • *
  • *

    * io1 - Provisioned IOPS (SSD). PIOPS volumes must have a minimum size of 4 GiB and a maximum * size of 16384 GiB. *

    *
  • *
  • *

    * gp2 - General Purpose (SSD). General purpose volumes must have a minimum size of 1 GiB and a * maximum size of 16384 GiB. *

    *
  • *
  • *

    * st1 - Throughput Optimized hard disk drive (HDD). Throughput optimized HDD volumes must have * a minimum size of 500 GiB and a maximum size of 16384 GiB. *

    *
  • *
  • *

    * sc1 - Cold HDD. Cold HDD volumes must have a minimum size of 500 GiB and a maximum size of * 16384 GiB. *

    *
  • */ public void setVolumeType(String volumeType) { this.volumeType = volumeType; } /** *

    * The volume type. For more information, see Amazon EBS Volume Types. *

    *
      *
    • *

      * standard - Magnetic. Magnetic volumes must have a minimum size of 1 GiB and a maximum size of 1024 * GiB. *

      *
    • *
    • *

      * io1 - Provisioned IOPS (SSD). PIOPS volumes must have a minimum size of 4 GiB and a maximum size of * 16384 GiB. *

      *
    • *
    • *

      * gp2 - General Purpose (SSD). General purpose volumes must have a minimum size of 1 GiB and a maximum * size of 16384 GiB. *

      *
    • *
    • *

      * st1 - Throughput Optimized hard disk drive (HDD). Throughput optimized HDD volumes must have a * minimum size of 500 GiB and a maximum size of 16384 GiB. *

      *
    • *
    • *

      * sc1 - Cold HDD. Cold HDD volumes must have a minimum size of 500 GiB and a maximum size of 16384 * GiB. *

      *
    • *
    * * @return The volume type. For more information, see Amazon EBS Volume * Types.

    *
      *
    • *

      * standard - Magnetic. Magnetic volumes must have a minimum size of 1 GiB and a maximum size * of 1024 GiB. *

      *
    • *
    • *

      * io1 - Provisioned IOPS (SSD). PIOPS volumes must have a minimum size of 4 GiB and a maximum * size of 16384 GiB. *

      *
    • *
    • *

      * gp2 - General Purpose (SSD). General purpose volumes must have a minimum size of 1 GiB and a * maximum size of 16384 GiB. *

      *
    • *
    • *

      * st1 - Throughput Optimized hard disk drive (HDD). Throughput optimized HDD volumes must have * a minimum size of 500 GiB and a maximum size of 16384 GiB. *

      *
    • *
    • *

      * sc1 - Cold HDD. Cold HDD volumes must have a minimum size of 500 GiB and a maximum size of * 16384 GiB. *

      *
    • */ public String getVolumeType() { return this.volumeType; } /** *

      * The volume type. For more information, see Amazon EBS Volume Types. *

      *
        *
      • *

        * standard - Magnetic. Magnetic volumes must have a minimum size of 1 GiB and a maximum size of 1024 * GiB. *

        *
      • *
      • *

        * io1 - Provisioned IOPS (SSD). PIOPS volumes must have a minimum size of 4 GiB and a maximum size of * 16384 GiB. *

        *
      • *
      • *

        * gp2 - General Purpose (SSD). General purpose volumes must have a minimum size of 1 GiB and a maximum * size of 16384 GiB. *

        *
      • *
      • *

        * st1 - Throughput Optimized hard disk drive (HDD). Throughput optimized HDD volumes must have a * minimum size of 500 GiB and a maximum size of 16384 GiB. *

        *
      • *
      • *

        * sc1 - Cold HDD. Cold HDD volumes must have a minimum size of 500 GiB and a maximum size of 16384 * GiB. *

        *
      • *
      * * @param volumeType * The volume type. For more information, see Amazon EBS Volume * Types.

      *
        *
      • *

        * standard - Magnetic. Magnetic volumes must have a minimum size of 1 GiB and a maximum size of * 1024 GiB. *

        *
      • *
      • *

        * io1 - Provisioned IOPS (SSD). PIOPS volumes must have a minimum size of 4 GiB and a maximum * size of 16384 GiB. *

        *
      • *
      • *

        * gp2 - General Purpose (SSD). General purpose volumes must have a minimum size of 1 GiB and a * maximum size of 16384 GiB. *

        *
      • *
      • *

        * st1 - Throughput Optimized hard disk drive (HDD). Throughput optimized HDD volumes must have * a minimum size of 500 GiB and a maximum size of 16384 GiB. *

        *
      • *
      • *

        * sc1 - Cold HDD. Cold HDD volumes must have a minimum size of 500 GiB and a maximum size of * 16384 GiB. *

        *
      • * @return Returns a reference to this object so that method calls can be chained together. */ public VolumeConfiguration withVolumeType(String volumeType) { setVolumeType(volumeType); return this; } /** *

        * For PIOPS volumes, the IOPS per disk. *

        * * @param iops * For PIOPS volumes, the IOPS per disk. */ public void setIops(Integer iops) { this.iops = iops; } /** *

        * For PIOPS volumes, the IOPS per disk. *

        * * @return For PIOPS volumes, the IOPS per disk. */ public Integer getIops() { return this.iops; } /** *

        * For PIOPS volumes, the IOPS per disk. *

        * * @param iops * For PIOPS volumes, the IOPS per disk. * @return Returns a reference to this object so that method calls can be chained together. */ public VolumeConfiguration withIops(Integer iops) { setIops(iops); return this; } /** *

        * Specifies whether an Amazon EBS volume is encrypted. For more information, see Amazon EBS Encryption. *

        * * @param encrypted * Specifies whether an Amazon EBS volume is encrypted. For more information, see Amazon EBS Encryption. */ public void setEncrypted(Boolean encrypted) { this.encrypted = encrypted; } /** *

        * Specifies whether an Amazon EBS volume is encrypted. For more information, see Amazon EBS Encryption. *

        * * @return Specifies whether an Amazon EBS volume is encrypted. For more information, see Amazon EBS Encryption. */ public Boolean getEncrypted() { return this.encrypted; } /** *

        * Specifies whether an Amazon EBS volume is encrypted. For more information, see Amazon EBS Encryption. *

        * * @param encrypted * Specifies whether an Amazon EBS volume is encrypted. For more information, see Amazon EBS Encryption. * @return Returns a reference to this object so that method calls can be chained together. */ public VolumeConfiguration withEncrypted(Boolean encrypted) { setEncrypted(encrypted); return this; } /** *

        * Specifies whether an Amazon EBS volume is encrypted. For more information, see Amazon EBS Encryption. *

        * * @return Specifies whether an Amazon EBS volume is encrypted. For more information, see Amazon EBS Encryption. */ public Boolean isEncrypted() { return this.encrypted; } /** * Returns a string representation of this object; useful for testing and debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getMountPoint() != null) sb.append("MountPoint: ").append(getMountPoint()).append(","); if (getRaidLevel() != null) sb.append("RaidLevel: ").append(getRaidLevel()).append(","); if (getNumberOfDisks() != null) sb.append("NumberOfDisks: ").append(getNumberOfDisks()).append(","); if (getSize() != null) sb.append("Size: ").append(getSize()).append(","); if (getVolumeType() != null) sb.append("VolumeType: ").append(getVolumeType()).append(","); if (getIops() != null) sb.append("Iops: ").append(getIops()).append(","); if (getEncrypted() != null) sb.append("Encrypted: ").append(getEncrypted()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof VolumeConfiguration == false) return false; VolumeConfiguration other = (VolumeConfiguration) obj; if (other.getMountPoint() == null ^ this.getMountPoint() == null) return false; if (other.getMountPoint() != null && other.getMountPoint().equals(this.getMountPoint()) == false) return false; if (other.getRaidLevel() == null ^ this.getRaidLevel() == null) return false; if (other.getRaidLevel() != null && other.getRaidLevel().equals(this.getRaidLevel()) == false) return false; if (other.getNumberOfDisks() == null ^ this.getNumberOfDisks() == null) return false; if (other.getNumberOfDisks() != null && other.getNumberOfDisks().equals(this.getNumberOfDisks()) == false) return false; if (other.getSize() == null ^ this.getSize() == null) return false; if (other.getSize() != null && other.getSize().equals(this.getSize()) == false) return false; if (other.getVolumeType() == null ^ this.getVolumeType() == null) return false; if (other.getVolumeType() != null && other.getVolumeType().equals(this.getVolumeType()) == false) return false; if (other.getIops() == null ^ this.getIops() == null) return false; if (other.getIops() != null && other.getIops().equals(this.getIops()) == false) return false; if (other.getEncrypted() == null ^ this.getEncrypted() == null) return false; if (other.getEncrypted() != null && other.getEncrypted().equals(this.getEncrypted()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getMountPoint() == null) ? 0 : getMountPoint().hashCode()); hashCode = prime * hashCode + ((getRaidLevel() == null) ? 0 : getRaidLevel().hashCode()); hashCode = prime * hashCode + ((getNumberOfDisks() == null) ? 0 : getNumberOfDisks().hashCode()); hashCode = prime * hashCode + ((getSize() == null) ? 0 : getSize().hashCode()); hashCode = prime * hashCode + ((getVolumeType() == null) ? 0 : getVolumeType().hashCode()); hashCode = prime * hashCode + ((getIops() == null) ? 0 : getIops().hashCode()); hashCode = prime * hashCode + ((getEncrypted() == null) ? 0 : getEncrypted().hashCode()); return hashCode; } @Override public VolumeConfiguration clone() { try { return (VolumeConfiguration) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.opsworks.model.transform.VolumeConfigurationMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy