Interface ComputeInstanceBootDisk
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ComputeInstanceBootDisk.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-31T03:59:18.462Z") @Stability(Stable) public interface ComputeInstanceBootDisk extends software.amazon.jsii.JsiiSerializable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classComputeInstanceBootDisk.BuilderA builder forComputeInstanceBootDiskstatic classComputeInstanceBootDisk.Jsii$ProxyAn implementation forComputeInstanceBootDisk
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static ComputeInstanceBootDisk.Builderbuilder()default ObjectgetAutoDelete()Whether the disk will be auto-deleted when the instance is deleted.default StringgetDeviceName()Name with which attached disk will be accessible under /dev/disk/by-id/.default StringgetDiskEncryptionKeyRaw()A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk.default ComputeInstanceBootDiskInitializeParamsgetInitializeParams()initialize_params block.default StringgetKmsKeySelfLink()The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk.default StringgetMode()Read/write mode for the disk.default StringgetSource()The name or self_link of the disk attached to this instance.
-
-
-
Method Detail
-
getAutoDelete
@Stability(Stable) @Nullable default Object getAutoDelete()
Whether the disk will be auto-deleted when the instance is deleted.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_instance#auto_delete ComputeInstance#auto_delete}
-
getDeviceName
@Stability(Stable) @Nullable default String getDeviceName()
Name with which attached disk will be accessible under /dev/disk/by-id/.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_instance#device_name ComputeInstance#device_name}
-
getDiskEncryptionKeyRaw
@Stability(Stable) @Nullable default String getDiskEncryptionKeyRaw()
A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk.Only one of kms_key_self_link and disk_encryption_key_raw may be set. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_instance#disk_encryption_key_raw ComputeInstance#disk_encryption_key_raw}
-
getInitializeParams
@Stability(Stable) @Nullable default ComputeInstanceBootDiskInitializeParams getInitializeParams()
initialize_params block.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_instance#initialize_params ComputeInstance#initialize_params}
-
getKmsKeySelfLink
@Stability(Stable) @Nullable default String getKmsKeySelfLink()
The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk.Only one of kms_key_self_link and disk_encryption_key_raw may be set. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_instance#kms_key_self_link ComputeInstance#kms_key_self_link}
-
getMode
@Stability(Stable) @Nullable default String getMode()
Read/write mode for the disk. One of "READ_ONLY" or "READ_WRITE".Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_instance#mode ComputeInstance#mode}
-
getSource
@Stability(Stable) @Nullable default String getSource()
The name or self_link of the disk attached to this instance.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_instance#source ComputeInstance#source}
-
builder
@Stability(Stable) static ComputeInstanceBootDisk.Builder builder()
- Returns:
- a
ComputeInstanceBootDisk.BuilderofComputeInstanceBootDisk
-
-