Class EBSBlockDeviceSpec
- java.lang.Object
-
- io.fabric8.openshift.api.model.machine.v1beta1.EBSBlockDeviceSpec
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<EBSBlockDeviceSpecBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class EBSBlockDeviceSpec extends Object implements io.fabric8.kubernetes.api.builder.Editable<EBSBlockDeviceSpecBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
EBSBlockDeviceSpec describes a block device for an EBS volume. https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsBlockDevice- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EBSBlockDeviceSpec()No args constructor for use in serializationEBSBlockDeviceSpec(Boolean deleteOnTermination, Boolean encrypted, Long iops, AWSResourceReference kmsKey, Long volumeSize, String volumeType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EBSBlockDeviceSpecBuilderedit()Map<String,Object>getAdditionalProperties()BooleangetDeleteOnTermination()Indicates whether the EBS volume is deleted on machine termination.BooleangetEncrypted()Indicates whether the EBS volume is encrypted.LonggetIops()The number of I/O operations per second (IOPS) that the volume supports.AWSResourceReferencegetKmsKey()EBSBlockDeviceSpec describes a block device for an EBS volume. https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsBlockDeviceLonggetVolumeSize()The size of the volume, in GiB.StringgetVolumeType()The volume type: gp2, io1, st1, sc1, or standard.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetDeleteOnTermination(Boolean deleteOnTermination)Indicates whether the EBS volume is deleted on machine termination.voidsetEncrypted(Boolean encrypted)Indicates whether the EBS volume is encrypted.voidsetIops(Long iops)The number of I/O operations per second (IOPS) that the volume supports.voidsetKmsKey(AWSResourceReference kmsKey)EBSBlockDeviceSpec describes a block device for an EBS volume. https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsBlockDevicevoidsetVolumeSize(Long volumeSize)The size of the volume, in GiB.voidsetVolumeType(String volumeType)The volume type: gp2, io1, st1, sc1, or standard.EBSBlockDeviceSpecBuildertoBuilder()
-
-
-
Method Detail
-
getDeleteOnTermination
public Boolean getDeleteOnTermination()
Indicates whether the EBS volume is deleted on machine termination.
-
setDeleteOnTermination
public void setDeleteOnTermination(Boolean deleteOnTermination)
Indicates whether the EBS volume is deleted on machine termination.
-
getEncrypted
public Boolean getEncrypted()
Indicates whether the EBS volume is encrypted. Encrypted Amazon EBS volumes may only be attached to machines that support Amazon EBS encryption.
-
setEncrypted
public void setEncrypted(Boolean encrypted)
Indicates whether the EBS volume is encrypted. Encrypted Amazon EBS volumes may only be attached to machines that support Amazon EBS encryption.
-
getIops
public Long getIops()
The number of I/O operations per second (IOPS) that the volume supports. For io1, this represents the number of IOPS that are provisioned for the volume. For gp2, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting. For more information about General Purpose SSD baseline performance, I/O credits, and bursting, see Amazon EBS Volume Types (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html) in the Amazon Elastic Compute Cloud User Guide.Minimal and maximal IOPS for io1 and gp2 are constrained. Please, check https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html for precise boundaries for individual volumes.
Condition: This parameter is required for requests to create io1 volumes; it is not used in requests to create gp2, st1, sc1, or standard volumes.
-
setIops
public void setIops(Long iops)
The number of I/O operations per second (IOPS) that the volume supports. For io1, this represents the number of IOPS that are provisioned for the volume. For gp2, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting. For more information about General Purpose SSD baseline performance, I/O credits, and bursting, see Amazon EBS Volume Types (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html) in the Amazon Elastic Compute Cloud User Guide.Minimal and maximal IOPS for io1 and gp2 are constrained. Please, check https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html for precise boundaries for individual volumes.
Condition: This parameter is required for requests to create io1 volumes; it is not used in requests to create gp2, st1, sc1, or standard volumes.
-
getKmsKey
public AWSResourceReference getKmsKey()
EBSBlockDeviceSpec describes a block device for an EBS volume. https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsBlockDevice
-
setKmsKey
public void setKmsKey(AWSResourceReference kmsKey)
EBSBlockDeviceSpec describes a block device for an EBS volume. https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsBlockDevice
-
getVolumeSize
public Long getVolumeSize()
The size of the volume, in GiB.Constraints: 1-16384 for General Purpose SSD (gp2), 4-16384 for Provisioned IOPS SSD (io1), 500-16384 for Throughput Optimized HDD (st1), 500-16384 for Cold HDD (sc1), and 1-1024 for Magnetic (standard) volumes. If you specify a snapshot, the volume size must be equal to or larger than the snapshot size.
Default: If you're creating the volume from a snapshot and don't specify a volume size, the default is the snapshot size.
-
setVolumeSize
public void setVolumeSize(Long volumeSize)
The size of the volume, in GiB.Constraints: 1-16384 for General Purpose SSD (gp2), 4-16384 for Provisioned IOPS SSD (io1), 500-16384 for Throughput Optimized HDD (st1), 500-16384 for Cold HDD (sc1), and 1-1024 for Magnetic (standard) volumes. If you specify a snapshot, the volume size must be equal to or larger than the snapshot size.
Default: If you're creating the volume from a snapshot and don't specify a volume size, the default is the snapshot size.
-
getVolumeType
public String getVolumeType()
The volume type: gp2, io1, st1, sc1, or standard. Default: standard
-
setVolumeType
public void setVolumeType(String volumeType)
The volume type: gp2, io1, st1, sc1, or standard. Default: standard
-
edit
public EBSBlockDeviceSpecBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<EBSBlockDeviceSpecBuilder>
-
toBuilder
public EBSBlockDeviceSpecBuilder toBuilder()
-
-