Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.compute/beta.RegionDisk
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a persistent regional disk in the specified project using the data included in the request.
Create RegionDisk Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RegionDisk(name: string, args: RegionDiskArgs, opts?: CustomResourceOptions);
@overload
def RegionDisk(resource_name: str,
args: RegionDiskArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RegionDisk(resource_name: str,
opts: Optional[ResourceOptions] = None,
region: Optional[str] = None,
physical_block_size_bytes: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
disk_encryption_key: Optional[CustomerEncryptionKeyArgs] = None,
enable_confidential_compute: Optional[bool] = None,
project: Optional[str] = None,
guest_os_features: Optional[Sequence[GuestOsFeatureArgs]] = None,
interface: Optional[RegionDiskInterface] = None,
provisioned_iops: Optional[str] = None,
license_codes: Optional[Sequence[str]] = None,
provisioned_throughput: Optional[str] = None,
location_hint: Optional[str] = None,
multi_writer: Optional[bool] = None,
name: Optional[str] = None,
options: Optional[str] = None,
params: Optional[DiskParamsArgs] = None,
architecture: Optional[RegionDiskArchitecture] = None,
erase_windows_vss_signature: Optional[bool] = None,
description: Optional[str] = None,
licenses: Optional[Sequence[str]] = None,
async_primary_disk: Optional[DiskAsyncReplicationArgs] = None,
replica_zones: Optional[Sequence[str]] = None,
request_id: Optional[str] = None,
resource_policies: Optional[Sequence[str]] = None,
size_gb: Optional[str] = None,
source_disk: Optional[str] = None,
source_image: Optional[str] = None,
source_image_encryption_key: Optional[CustomerEncryptionKeyArgs] = None,
source_instant_snapshot: Optional[str] = None,
source_snapshot: Optional[str] = None,
source_snapshot_encryption_key: Optional[CustomerEncryptionKeyArgs] = None,
source_storage_object: Optional[str] = None,
storage_type: Optional[RegionDiskStorageType] = None,
type: Optional[str] = None,
user_licenses: Optional[Sequence[str]] = None)
func NewRegionDisk(ctx *Context, name string, args RegionDiskArgs, opts ...ResourceOption) (*RegionDisk, error)
public RegionDisk(string name, RegionDiskArgs args, CustomResourceOptions? opts = null)
public RegionDisk(String name, RegionDiskArgs args)
public RegionDisk(String name, RegionDiskArgs args, CustomResourceOptions options)
type: google-native:compute/beta:RegionDisk
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args RegionDiskArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args RegionDiskArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args RegionDiskArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RegionDiskArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RegionDiskArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var google_nativeRegionDiskResource = new GoogleNative.Compute.Beta.RegionDisk("google-nativeRegionDiskResource", new()
{
Region = "string",
PhysicalBlockSizeBytes = "string",
Labels =
{
{ "string", "string" },
},
DiskEncryptionKey = new GoogleNative.Compute.Beta.Inputs.CustomerEncryptionKeyArgs
{
KmsKeyName = "string",
KmsKeyServiceAccount = "string",
RawKey = "string",
RsaEncryptedKey = "string",
},
EnableConfidentialCompute = false,
Project = "string",
GuestOsFeatures = new[]
{
new GoogleNative.Compute.Beta.Inputs.GuestOsFeatureArgs
{
Type = GoogleNative.Compute.Beta.GuestOsFeatureType.FeatureTypeUnspecified,
},
},
ProvisionedIops = "string",
LicenseCodes = new[]
{
"string",
},
ProvisionedThroughput = "string",
LocationHint = "string",
MultiWriter = false,
Name = "string",
Options = "string",
Params = new GoogleNative.Compute.Beta.Inputs.DiskParamsArgs
{
ResourceManagerTags =
{
{ "string", "string" },
},
},
Architecture = GoogleNative.Compute.Beta.RegionDiskArchitecture.ArchitectureUnspecified,
EraseWindowsVssSignature = false,
Description = "string",
Licenses = new[]
{
"string",
},
AsyncPrimaryDisk = new GoogleNative.Compute.Beta.Inputs.DiskAsyncReplicationArgs
{
Disk = "string",
},
ReplicaZones = new[]
{
"string",
},
RequestId = "string",
ResourcePolicies = new[]
{
"string",
},
SizeGb = "string",
SourceDisk = "string",
SourceImage = "string",
SourceImageEncryptionKey = new GoogleNative.Compute.Beta.Inputs.CustomerEncryptionKeyArgs
{
KmsKeyName = "string",
KmsKeyServiceAccount = "string",
RawKey = "string",
RsaEncryptedKey = "string",
},
SourceInstantSnapshot = "string",
SourceSnapshot = "string",
SourceSnapshotEncryptionKey = new GoogleNative.Compute.Beta.Inputs.CustomerEncryptionKeyArgs
{
KmsKeyName = "string",
KmsKeyServiceAccount = "string",
RawKey = "string",
RsaEncryptedKey = "string",
},
SourceStorageObject = "string",
Type = "string",
UserLicenses = new[]
{
"string",
},
});
example, err := computebeta.NewRegionDisk(ctx, "google-nativeRegionDiskResource", &computebeta.RegionDiskArgs{
Region: pulumi.String("string"),
PhysicalBlockSizeBytes: pulumi.String("string"),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
DiskEncryptionKey: &compute.CustomerEncryptionKeyArgs{
KmsKeyName: pulumi.String("string"),
KmsKeyServiceAccount: pulumi.String("string"),
RawKey: pulumi.String("string"),
RsaEncryptedKey: pulumi.String("string"),
},
EnableConfidentialCompute: pulumi.Bool(false),
Project: pulumi.String("string"),
GuestOsFeatures: compute.GuestOsFeatureArray{
&compute.GuestOsFeatureArgs{
Type: computebeta.GuestOsFeatureTypeFeatureTypeUnspecified,
},
},
ProvisionedIops: pulumi.String("string"),
LicenseCodes: pulumi.StringArray{
pulumi.String("string"),
},
ProvisionedThroughput: pulumi.String("string"),
LocationHint: pulumi.String("string"),
MultiWriter: pulumi.Bool(false),
Name: pulumi.String("string"),
Options: pulumi.String("string"),
Params: &compute.DiskParamsArgs{
ResourceManagerTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
Architecture: computebeta.RegionDiskArchitectureArchitectureUnspecified,
EraseWindowsVssSignature: pulumi.Bool(false),
Description: pulumi.String("string"),
Licenses: pulumi.StringArray{
pulumi.String("string"),
},
AsyncPrimaryDisk: &compute.DiskAsyncReplicationArgs{
Disk: pulumi.String("string"),
},
ReplicaZones: pulumi.StringArray{
pulumi.String("string"),
},
RequestId: pulumi.String("string"),
ResourcePolicies: pulumi.StringArray{
pulumi.String("string"),
},
SizeGb: pulumi.String("string"),
SourceDisk: pulumi.String("string"),
SourceImage: pulumi.String("string"),
SourceImageEncryptionKey: &compute.CustomerEncryptionKeyArgs{
KmsKeyName: pulumi.String("string"),
KmsKeyServiceAccount: pulumi.String("string"),
RawKey: pulumi.String("string"),
RsaEncryptedKey: pulumi.String("string"),
},
SourceInstantSnapshot: pulumi.String("string"),
SourceSnapshot: pulumi.String("string"),
SourceSnapshotEncryptionKey: &compute.CustomerEncryptionKeyArgs{
KmsKeyName: pulumi.String("string"),
KmsKeyServiceAccount: pulumi.String("string"),
RawKey: pulumi.String("string"),
RsaEncryptedKey: pulumi.String("string"),
},
SourceStorageObject: pulumi.String("string"),
Type: pulumi.String("string"),
UserLicenses: pulumi.StringArray{
pulumi.String("string"),
},
})
var google_nativeRegionDiskResource = new RegionDisk("google-nativeRegionDiskResource", RegionDiskArgs.builder()
.region("string")
.physicalBlockSizeBytes("string")
.labels(Map.of("string", "string"))
.diskEncryptionKey(CustomerEncryptionKeyArgs.builder()
.kmsKeyName("string")
.kmsKeyServiceAccount("string")
.rawKey("string")
.rsaEncryptedKey("string")
.build())
.enableConfidentialCompute(false)
.project("string")
.guestOsFeatures(GuestOsFeatureArgs.builder()
.type("FEATURE_TYPE_UNSPECIFIED")
.build())
.provisionedIops("string")
.licenseCodes("string")
.provisionedThroughput("string")
.locationHint("string")
.multiWriter(false)
.name("string")
.options("string")
.params(DiskParamsArgs.builder()
.resourceManagerTags(Map.of("string", "string"))
.build())
.architecture("ARCHITECTURE_UNSPECIFIED")
.eraseWindowsVssSignature(false)
.description("string")
.licenses("string")
.asyncPrimaryDisk(DiskAsyncReplicationArgs.builder()
.disk("string")
.build())
.replicaZones("string")
.requestId("string")
.resourcePolicies("string")
.sizeGb("string")
.sourceDisk("string")
.sourceImage("string")
.sourceImageEncryptionKey(CustomerEncryptionKeyArgs.builder()
.kmsKeyName("string")
.kmsKeyServiceAccount("string")
.rawKey("string")
.rsaEncryptedKey("string")
.build())
.sourceInstantSnapshot("string")
.sourceSnapshot("string")
.sourceSnapshotEncryptionKey(CustomerEncryptionKeyArgs.builder()
.kmsKeyName("string")
.kmsKeyServiceAccount("string")
.rawKey("string")
.rsaEncryptedKey("string")
.build())
.sourceStorageObject("string")
.type("string")
.userLicenses("string")
.build());
google_native_region_disk_resource = google_native.compute.beta.RegionDisk("google-nativeRegionDiskResource",
region="string",
physical_block_size_bytes="string",
labels={
"string": "string",
},
disk_encryption_key=google_native.compute.beta.CustomerEncryptionKeyArgs(
kms_key_name="string",
kms_key_service_account="string",
raw_key="string",
rsa_encrypted_key="string",
),
enable_confidential_compute=False,
project="string",
guest_os_features=[google_native.compute.beta.GuestOsFeatureArgs(
type=google_native.compute.beta.GuestOsFeatureType.FEATURE_TYPE_UNSPECIFIED,
)],
provisioned_iops="string",
license_codes=["string"],
provisioned_throughput="string",
location_hint="string",
multi_writer=False,
name="string",
options="string",
params=google_native.compute.beta.DiskParamsArgs(
resource_manager_tags={
"string": "string",
},
),
architecture=google_native.compute.beta.RegionDiskArchitecture.ARCHITECTURE_UNSPECIFIED,
erase_windows_vss_signature=False,
description="string",
licenses=["string"],
async_primary_disk=google_native.compute.beta.DiskAsyncReplicationArgs(
disk="string",
),
replica_zones=["string"],
request_id="string",
resource_policies=["string"],
size_gb="string",
source_disk="string",
source_image="string",
source_image_encryption_key=google_native.compute.beta.CustomerEncryptionKeyArgs(
kms_key_name="string",
kms_key_service_account="string",
raw_key="string",
rsa_encrypted_key="string",
),
source_instant_snapshot="string",
source_snapshot="string",
source_snapshot_encryption_key=google_native.compute.beta.CustomerEncryptionKeyArgs(
kms_key_name="string",
kms_key_service_account="string",
raw_key="string",
rsa_encrypted_key="string",
),
source_storage_object="string",
type="string",
user_licenses=["string"])
const google_nativeRegionDiskResource = new google_native.compute.beta.RegionDisk("google-nativeRegionDiskResource", {
region: "string",
physicalBlockSizeBytes: "string",
labels: {
string: "string",
},
diskEncryptionKey: {
kmsKeyName: "string",
kmsKeyServiceAccount: "string",
rawKey: "string",
rsaEncryptedKey: "string",
},
enableConfidentialCompute: false,
project: "string",
guestOsFeatures: [{
type: google_native.compute.beta.GuestOsFeatureType.FeatureTypeUnspecified,
}],
provisionedIops: "string",
licenseCodes: ["string"],
provisionedThroughput: "string",
locationHint: "string",
multiWriter: false,
name: "string",
options: "string",
params: {
resourceManagerTags: {
string: "string",
},
},
architecture: google_native.compute.beta.RegionDiskArchitecture.ArchitectureUnspecified,
eraseWindowsVssSignature: false,
description: "string",
licenses: ["string"],
asyncPrimaryDisk: {
disk: "string",
},
replicaZones: ["string"],
requestId: "string",
resourcePolicies: ["string"],
sizeGb: "string",
sourceDisk: "string",
sourceImage: "string",
sourceImageEncryptionKey: {
kmsKeyName: "string",
kmsKeyServiceAccount: "string",
rawKey: "string",
rsaEncryptedKey: "string",
},
sourceInstantSnapshot: "string",
sourceSnapshot: "string",
sourceSnapshotEncryptionKey: {
kmsKeyName: "string",
kmsKeyServiceAccount: "string",
rawKey: "string",
rsaEncryptedKey: "string",
},
sourceStorageObject: "string",
type: "string",
userLicenses: ["string"],
});
type: google-native:compute/beta:RegionDisk
properties:
architecture: ARCHITECTURE_UNSPECIFIED
asyncPrimaryDisk:
disk: string
description: string
diskEncryptionKey:
kmsKeyName: string
kmsKeyServiceAccount: string
rawKey: string
rsaEncryptedKey: string
enableConfidentialCompute: false
eraseWindowsVssSignature: false
guestOsFeatures:
- type: FEATURE_TYPE_UNSPECIFIED
labels:
string: string
licenseCodes:
- string
licenses:
- string
locationHint: string
multiWriter: false
name: string
options: string
params:
resourceManagerTags:
string: string
physicalBlockSizeBytes: string
project: string
provisionedIops: string
provisionedThroughput: string
region: string
replicaZones:
- string
requestId: string
resourcePolicies:
- string
sizeGb: string
sourceDisk: string
sourceImage: string
sourceImageEncryptionKey:
kmsKeyName: string
kmsKeyServiceAccount: string
rawKey: string
rsaEncryptedKey: string
sourceInstantSnapshot: string
sourceSnapshot: string
sourceSnapshotEncryptionKey:
kmsKeyName: string
kmsKeyServiceAccount: string
rawKey: string
rsaEncryptedKey: string
sourceStorageObject: string
type: string
userLicenses:
- string
RegionDisk Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The RegionDisk resource accepts the following input properties:
- Region string
- Architecture
Pulumi.
Google Native. Compute. Beta. Region Disk Architecture - The architecture of the disk. Valid values are ARM64 or X86_64.
- Async
Primary Pulumi.Disk Google Native. Compute. Beta. Inputs. Disk Async Replication - Disk asynchronously replicated into this disk.
- Description string
- An optional description of this resource. Provide this property when you create the resource.
- Disk
Encryption Pulumi.Key Google Native. Compute. Beta. Inputs. Customer Encryption Key - Encrypts the disk using a customer-supplied encryption key or a customer-managed encryption key. Encryption keys do not protect access to metadata of the disk. After you encrypt a disk with a customer-supplied key, you must provide the same key if you use the disk later. For example, to create a disk snapshot, to create a disk image, to create a machine image, or to attach the disk to a virtual machine. After you encrypt a disk with a customer-managed key, the diskEncryptionKey.kmsKeyName is set to a key version name once the disk is created. The disk is encrypted with this version of the key. In the response, diskEncryptionKey.kmsKeyName appears in the following format: "diskEncryptionKey.kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key /cryptoKeysVersions/version If you do not provide an encryption key when creating the disk, then the disk is encrypted using an automatically generated key and you don't need to provide a key to use the disk later.
- Enable
Confidential boolCompute - Whether this disk is using confidential compute mode.
- Erase
Windows boolVss Signature - Specifies whether the disk restored from a source snapshot should erase Windows specific VSS signature.
- Guest
Os List<Pulumi.Features Google Native. Compute. Beta. Inputs. Guest Os Feature> - A list of features to enable on the guest operating system. Applicable only for bootable images. Read Enabling guest operating system features to see a list of available options.
- Interface
Pulumi.
Google Native. Compute. Beta. Region Disk Interface - [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.
- Labels Dictionary<string, string>
- Labels to apply to this disk. These can be later modified by the setLabels method.
- License
Codes List<string> - Integer license codes indicating which licenses are attached to this disk.
- Licenses List<string>
- A list of publicly visible licenses. Reserved for Google's use.
- Location
Hint string - An opaque location hint used to place the disk close to other resources. This field is for use by internal tools that use the public API.
- Multi
Writer bool - Indicates whether or not the disk can be read/write attached to more than one instance.
- Name string
- Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - Options string
- Internal use only.
- Params
Pulumi.
Google Native. Compute. Beta. Inputs. Disk Params - Input only. [Input Only] Additional params passed with the request, but not persisted as part of resource payload.
- Physical
Block stringSize Bytes - Physical block size of the persistent disk, in bytes. If not present in a request, a default value is used. The currently supported size is 4096, other sizes may be added in the future. If an unsupported value is requested, the error message will list the supported values for the caller's project.
- Project string
- Provisioned
Iops string - Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second that the disk can handle. Values must be between 10,000 and 120,000. For more details, see the Extreme persistent disk documentation.
- Provisioned
Throughput string - Indicates how much throughput to provision for the disk. This sets the number of throughput mb per second that the disk can handle. Values must be between 1 and 7,124.
- Replica
Zones List<string> - URLs of the zones where the disk should be replicated to. Only applicable for regional resources.
- Request
Id string - An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- Resource
Policies List<string> - Resource policies applied to this disk for automatic snapshot creations.
- Size
Gb string - Size, in GB, of the persistent disk. You can specify this field when creating a persistent disk using the sourceImage, sourceSnapshot, or sourceDisk parameter, or specify it alone to create an empty persistent disk. If you specify this field along with a source, the value of sizeGb must not be less than the size of the source. Acceptable values are greater than 0.
- Source
Disk string - The source disk used to create this disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - https://www.googleapis.com/compute/v1/projects/project/regions/region /disks/disk - projects/project/zones/zone/disks/disk - projects/project/regions/region/disks/disk - zones/zone/disks/disk - regions/region/disks/disk
- Source
Image string - The source image used to create this disk. If the source image is deleted, this field will not be set. To create a disk with one of the public operating system images, specify the image by its family name. For example, specify family/debian-9 to use the latest Debian 9 image: projects/debian-cloud/global/images/family/debian-9 Alternatively, use a specific version of a public operating system image: projects/debian-cloud/global/images/debian-9-stretch-vYYYYMMDD To create a disk with a custom image that you created, specify the image name in the following format: global/images/my-custom-image You can also specify a custom image by its image family, which returns the latest version of the image in that family. Replace the image name with family/family-name: global/images/family/my-image-family
- Source
Image Pulumi.Encryption Key Google Native. Compute. Beta. Inputs. Customer Encryption Key - The customer-supplied encryption key of the source image. Required if the source image is protected by a customer-supplied encryption key.
- Source
Instant stringSnapshot - The source instant snapshot used to create this disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /instantSnapshots/instantSnapshot - projects/project/zones/zone/instantSnapshots/instantSnapshot - zones/zone/instantSnapshots/instantSnapshot
- Source
Snapshot string - The source snapshot used to create this disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project /global/snapshots/snapshot - projects/project/global/snapshots/snapshot - global/snapshots/snapshot
- Source
Snapshot Pulumi.Encryption Key Google Native. Compute. Beta. Inputs. Customer Encryption Key - The customer-supplied encryption key of the source snapshot. Required if the source snapshot is protected by a customer-supplied encryption key.
- Source
Storage stringObject - The full Google Cloud Storage URI where the disk image is stored. This file must be a gzip-compressed tarball whose name ends in .tar.gz or virtual machine disk whose name ends in vmdk. Valid URIs may start with gs:// or https://storage.googleapis.com/. This flag is not optimized for creating multiple disks from a source storage object. To create many disks from a source storage object, use gcloud compute images import instead.
- Storage
Type Pulumi.Google Native. Compute. Beta. Region Disk Storage Type - [Deprecated] Storage type of the persistent disk.
- Type string
- URL of the disk type resource describing which disk type to use to create the disk. Provide this when creating the disk. For example: projects/project /zones/zone/diskTypes/pd-ssd . See Persistent disk types.
- User
Licenses List<string> - A list of publicly visible user-licenses. Unlike regular licenses, user provided licenses can be modified after the disk is created. This includes a list of URLs to the license resource. For example, to provide a debian license: https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch
- Region string
- Architecture
Region
Disk Architecture - The architecture of the disk. Valid values are ARM64 or X86_64.
- Async
Primary DiskDisk Async Replication Args - Disk asynchronously replicated into this disk.
- Description string
- An optional description of this resource. Provide this property when you create the resource.
- Disk
Encryption CustomerKey Encryption Key Args - Encrypts the disk using a customer-supplied encryption key or a customer-managed encryption key. Encryption keys do not protect access to metadata of the disk. After you encrypt a disk with a customer-supplied key, you must provide the same key if you use the disk later. For example, to create a disk snapshot, to create a disk image, to create a machine image, or to attach the disk to a virtual machine. After you encrypt a disk with a customer-managed key, the diskEncryptionKey.kmsKeyName is set to a key version name once the disk is created. The disk is encrypted with this version of the key. In the response, diskEncryptionKey.kmsKeyName appears in the following format: "diskEncryptionKey.kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key /cryptoKeysVersions/version If you do not provide an encryption key when creating the disk, then the disk is encrypted using an automatically generated key and you don't need to provide a key to use the disk later.
- Enable
Confidential boolCompute - Whether this disk is using confidential compute mode.
- Erase
Windows boolVss Signature - Specifies whether the disk restored from a source snapshot should erase Windows specific VSS signature.
- Guest
Os []GuestFeatures Os Feature Args - A list of features to enable on the guest operating system. Applicable only for bootable images. Read Enabling guest operating system features to see a list of available options.
- Interface
Region
Disk Interface - [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.
- Labels map[string]string
- Labels to apply to this disk. These can be later modified by the setLabels method.
- License
Codes []string - Integer license codes indicating which licenses are attached to this disk.
- Licenses []string
- A list of publicly visible licenses. Reserved for Google's use.
- Location
Hint string - An opaque location hint used to place the disk close to other resources. This field is for use by internal tools that use the public API.
- Multi
Writer bool - Indicates whether or not the disk can be read/write attached to more than one instance.
- Name string
- Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - Options string
- Internal use only.
- Params
Disk
Params Args - Input only. [Input Only] Additional params passed with the request, but not persisted as part of resource payload.
- Physical
Block stringSize Bytes - Physical block size of the persistent disk, in bytes. If not present in a request, a default value is used. The currently supported size is 4096, other sizes may be added in the future. If an unsupported value is requested, the error message will list the supported values for the caller's project.
- Project string
- Provisioned
Iops string - Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second that the disk can handle. Values must be between 10,000 and 120,000. For more details, see the Extreme persistent disk documentation.
- Provisioned
Throughput string - Indicates how much throughput to provision for the disk. This sets the number of throughput mb per second that the disk can handle. Values must be between 1 and 7,124.
- Replica
Zones []string - URLs of the zones where the disk should be replicated to. Only applicable for regional resources.
- Request
Id string - An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- Resource
Policies []string - Resource policies applied to this disk for automatic snapshot creations.
- Size
Gb string - Size, in GB, of the persistent disk. You can specify this field when creating a persistent disk using the sourceImage, sourceSnapshot, or sourceDisk parameter, or specify it alone to create an empty persistent disk. If you specify this field along with a source, the value of sizeGb must not be less than the size of the source. Acceptable values are greater than 0.
- Source
Disk string - The source disk used to create this disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - https://www.googleapis.com/compute/v1/projects/project/regions/region /disks/disk - projects/project/zones/zone/disks/disk - projects/project/regions/region/disks/disk - zones/zone/disks/disk - regions/region/disks/disk
- Source
Image string - The source image used to create this disk. If the source image is deleted, this field will not be set. To create a disk with one of the public operating system images, specify the image by its family name. For example, specify family/debian-9 to use the latest Debian 9 image: projects/debian-cloud/global/images/family/debian-9 Alternatively, use a specific version of a public operating system image: projects/debian-cloud/global/images/debian-9-stretch-vYYYYMMDD To create a disk with a custom image that you created, specify the image name in the following format: global/images/my-custom-image You can also specify a custom image by its image family, which returns the latest version of the image in that family. Replace the image name with family/family-name: global/images/family/my-image-family
- Source
Image CustomerEncryption Key Encryption Key Args - The customer-supplied encryption key of the source image. Required if the source image is protected by a customer-supplied encryption key.
- Source
Instant stringSnapshot - The source instant snapshot used to create this disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /instantSnapshots/instantSnapshot - projects/project/zones/zone/instantSnapshots/instantSnapshot - zones/zone/instantSnapshots/instantSnapshot
- Source
Snapshot string - The source snapshot used to create this disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project /global/snapshots/snapshot - projects/project/global/snapshots/snapshot - global/snapshots/snapshot
- Source
Snapshot CustomerEncryption Key Encryption Key Args - The customer-supplied encryption key of the source snapshot. Required if the source snapshot is protected by a customer-supplied encryption key.
- Source
Storage stringObject - The full Google Cloud Storage URI where the disk image is stored. This file must be a gzip-compressed tarball whose name ends in .tar.gz or virtual machine disk whose name ends in vmdk. Valid URIs may start with gs:// or https://storage.googleapis.com/. This flag is not optimized for creating multiple disks from a source storage object. To create many disks from a source storage object, use gcloud compute images import instead.
- Storage
Type RegionDisk Storage Type - [Deprecated] Storage type of the persistent disk.
- Type string
- URL of the disk type resource describing which disk type to use to create the disk. Provide this when creating the disk. For example: projects/project /zones/zone/diskTypes/pd-ssd . See Persistent disk types.
- User
Licenses []string - A list of publicly visible user-licenses. Unlike regular licenses, user provided licenses can be modified after the disk is created. This includes a list of URLs to the license resource. For example, to provide a debian license: https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch
- region String
- architecture
Region
Disk Architecture - The architecture of the disk. Valid values are ARM64 or X86_64.
- async
Primary DiskDisk Async Replication - Disk asynchronously replicated into this disk.
- description String
- An optional description of this resource. Provide this property when you create the resource.
- disk
Encryption CustomerKey Encryption Key - Encrypts the disk using a customer-supplied encryption key or a customer-managed encryption key. Encryption keys do not protect access to metadata of the disk. After you encrypt a disk with a customer-supplied key, you must provide the same key if you use the disk later. For example, to create a disk snapshot, to create a disk image, to create a machine image, or to attach the disk to a virtual machine. After you encrypt a disk with a customer-managed key, the diskEncryptionKey.kmsKeyName is set to a key version name once the disk is created. The disk is encrypted with this version of the key. In the response, diskEncryptionKey.kmsKeyName appears in the following format: "diskEncryptionKey.kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key /cryptoKeysVersions/version If you do not provide an encryption key when creating the disk, then the disk is encrypted using an automatically generated key and you don't need to provide a key to use the disk later.
- enable
Confidential BooleanCompute - Whether this disk is using confidential compute mode.
- erase
Windows BooleanVss Signature - Specifies whether the disk restored from a source snapshot should erase Windows specific VSS signature.
- guest
Os List<GuestFeatures Os Feature> - A list of features to enable on the guest operating system. Applicable only for bootable images. Read Enabling guest operating system features to see a list of available options.
- interface_
Region
Disk Interface - [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.
- labels Map<String,String>
- Labels to apply to this disk. These can be later modified by the setLabels method.
- license
Codes List<String> - Integer license codes indicating which licenses are attached to this disk.
- licenses List<String>
- A list of publicly visible licenses. Reserved for Google's use.
- location
Hint String - An opaque location hint used to place the disk close to other resources. This field is for use by internal tools that use the public API.
- multi
Writer Boolean - Indicates whether or not the disk can be read/write attached to more than one instance.
- name String
- Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - options String
- Internal use only.
- params
Disk
Params - Input only. [Input Only] Additional params passed with the request, but not persisted as part of resource payload.
- physical
Block StringSize Bytes - Physical block size of the persistent disk, in bytes. If not present in a request, a default value is used. The currently supported size is 4096, other sizes may be added in the future. If an unsupported value is requested, the error message will list the supported values for the caller's project.
- project String
- provisioned
Iops String - Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second that the disk can handle. Values must be between 10,000 and 120,000. For more details, see the Extreme persistent disk documentation.
- provisioned
Throughput String - Indicates how much throughput to provision for the disk. This sets the number of throughput mb per second that the disk can handle. Values must be between 1 and 7,124.
- replica
Zones List<String> - URLs of the zones where the disk should be replicated to. Only applicable for regional resources.
- request
Id String - An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- resource
Policies List<String> - Resource policies applied to this disk for automatic snapshot creations.
- size
Gb String - Size, in GB, of the persistent disk. You can specify this field when creating a persistent disk using the sourceImage, sourceSnapshot, or sourceDisk parameter, or specify it alone to create an empty persistent disk. If you specify this field along with a source, the value of sizeGb must not be less than the size of the source. Acceptable values are greater than 0.
- source
Disk String - The source disk used to create this disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - https://www.googleapis.com/compute/v1/projects/project/regions/region /disks/disk - projects/project/zones/zone/disks/disk - projects/project/regions/region/disks/disk - zones/zone/disks/disk - regions/region/disks/disk
- source
Image String - The source image used to create this disk. If the source image is deleted, this field will not be set. To create a disk with one of the public operating system images, specify the image by its family name. For example, specify family/debian-9 to use the latest Debian 9 image: projects/debian-cloud/global/images/family/debian-9 Alternatively, use a specific version of a public operating system image: projects/debian-cloud/global/images/debian-9-stretch-vYYYYMMDD To create a disk with a custom image that you created, specify the image name in the following format: global/images/my-custom-image You can also specify a custom image by its image family, which returns the latest version of the image in that family. Replace the image name with family/family-name: global/images/family/my-image-family
- source
Image CustomerEncryption Key Encryption Key - The customer-supplied encryption key of the source image. Required if the source image is protected by a customer-supplied encryption key.
- source
Instant StringSnapshot - The source instant snapshot used to create this disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /instantSnapshots/instantSnapshot - projects/project/zones/zone/instantSnapshots/instantSnapshot - zones/zone/instantSnapshots/instantSnapshot
- source
Snapshot String - The source snapshot used to create this disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project /global/snapshots/snapshot - projects/project/global/snapshots/snapshot - global/snapshots/snapshot
- source
Snapshot CustomerEncryption Key Encryption Key - The customer-supplied encryption key of the source snapshot. Required if the source snapshot is protected by a customer-supplied encryption key.
- source
Storage StringObject - The full Google Cloud Storage URI where the disk image is stored. This file must be a gzip-compressed tarball whose name ends in .tar.gz or virtual machine disk whose name ends in vmdk. Valid URIs may start with gs:// or https://storage.googleapis.com/. This flag is not optimized for creating multiple disks from a source storage object. To create many disks from a source storage object, use gcloud compute images import instead.
- storage
Type RegionDisk Storage Type - [Deprecated] Storage type of the persistent disk.
- type String
- URL of the disk type resource describing which disk type to use to create the disk. Provide this when creating the disk. For example: projects/project /zones/zone/diskTypes/pd-ssd . See Persistent disk types.
- user
Licenses List<String> - A list of publicly visible user-licenses. Unlike regular licenses, user provided licenses can be modified after the disk is created. This includes a list of URLs to the license resource. For example, to provide a debian license: https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch
- region string
- architecture
Region
Disk Architecture - The architecture of the disk. Valid values are ARM64 or X86_64.
- async
Primary DiskDisk Async Replication - Disk asynchronously replicated into this disk.
- description string
- An optional description of this resource. Provide this property when you create the resource.
- disk
Encryption CustomerKey Encryption Key - Encrypts the disk using a customer-supplied encryption key or a customer-managed encryption key. Encryption keys do not protect access to metadata of the disk. After you encrypt a disk with a customer-supplied key, you must provide the same key if you use the disk later. For example, to create a disk snapshot, to create a disk image, to create a machine image, or to attach the disk to a virtual machine. After you encrypt a disk with a customer-managed key, the diskEncryptionKey.kmsKeyName is set to a key version name once the disk is created. The disk is encrypted with this version of the key. In the response, diskEncryptionKey.kmsKeyName appears in the following format: "diskEncryptionKey.kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key /cryptoKeysVersions/version If you do not provide an encryption key when creating the disk, then the disk is encrypted using an automatically generated key and you don't need to provide a key to use the disk later.
- enable
Confidential booleanCompute - Whether this disk is using confidential compute mode.
- erase
Windows booleanVss Signature - Specifies whether the disk restored from a source snapshot should erase Windows specific VSS signature.
- guest
Os GuestFeatures Os Feature[] - A list of features to enable on the guest operating system. Applicable only for bootable images. Read Enabling guest operating system features to see a list of available options.
- interface
Region
Disk Interface - [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.
- labels {[key: string]: string}
- Labels to apply to this disk. These can be later modified by the setLabels method.
- license
Codes string[] - Integer license codes indicating which licenses are attached to this disk.
- licenses string[]
- A list of publicly visible licenses. Reserved for Google's use.
- location
Hint string - An opaque location hint used to place the disk close to other resources. This field is for use by internal tools that use the public API.
- multi
Writer boolean - Indicates whether or not the disk can be read/write attached to more than one instance.
- name string
- Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - options string
- Internal use only.
- params
Disk
Params - Input only. [Input Only] Additional params passed with the request, but not persisted as part of resource payload.
- physical
Block stringSize Bytes - Physical block size of the persistent disk, in bytes. If not present in a request, a default value is used. The currently supported size is 4096, other sizes may be added in the future. If an unsupported value is requested, the error message will list the supported values for the caller's project.
- project string
- provisioned
Iops string - Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second that the disk can handle. Values must be between 10,000 and 120,000. For more details, see the Extreme persistent disk documentation.
- provisioned
Throughput string - Indicates how much throughput to provision for the disk. This sets the number of throughput mb per second that the disk can handle. Values must be between 1 and 7,124.
- replica
Zones string[] - URLs of the zones where the disk should be replicated to. Only applicable for regional resources.
- request
Id string - An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- resource
Policies string[] - Resource policies applied to this disk for automatic snapshot creations.
- size
Gb string - Size, in GB, of the persistent disk. You can specify this field when creating a persistent disk using the sourceImage, sourceSnapshot, or sourceDisk parameter, or specify it alone to create an empty persistent disk. If you specify this field along with a source, the value of sizeGb must not be less than the size of the source. Acceptable values are greater than 0.
- source
Disk string - The source disk used to create this disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - https://www.googleapis.com/compute/v1/projects/project/regions/region /disks/disk - projects/project/zones/zone/disks/disk - projects/project/regions/region/disks/disk - zones/zone/disks/disk - regions/region/disks/disk
- source
Image string - The source image used to create this disk. If the source image is deleted, this field will not be set. To create a disk with one of the public operating system images, specify the image by its family name. For example, specify family/debian-9 to use the latest Debian 9 image: projects/debian-cloud/global/images/family/debian-9 Alternatively, use a specific version of a public operating system image: projects/debian-cloud/global/images/debian-9-stretch-vYYYYMMDD To create a disk with a custom image that you created, specify the image name in the following format: global/images/my-custom-image You can also specify a custom image by its image family, which returns the latest version of the image in that family. Replace the image name with family/family-name: global/images/family/my-image-family
- source
Image CustomerEncryption Key Encryption Key - The customer-supplied encryption key of the source image. Required if the source image is protected by a customer-supplied encryption key.
- source
Instant stringSnapshot - The source instant snapshot used to create this disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /instantSnapshots/instantSnapshot - projects/project/zones/zone/instantSnapshots/instantSnapshot - zones/zone/instantSnapshots/instantSnapshot
- source
Snapshot string - The source snapshot used to create this disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project /global/snapshots/snapshot - projects/project/global/snapshots/snapshot - global/snapshots/snapshot
- source
Snapshot CustomerEncryption Key Encryption Key - The customer-supplied encryption key of the source snapshot. Required if the source snapshot is protected by a customer-supplied encryption key.
- source
Storage stringObject - The full Google Cloud Storage URI where the disk image is stored. This file must be a gzip-compressed tarball whose name ends in .tar.gz or virtual machine disk whose name ends in vmdk. Valid URIs may start with gs:// or https://storage.googleapis.com/. This flag is not optimized for creating multiple disks from a source storage object. To create many disks from a source storage object, use gcloud compute images import instead.
- storage
Type RegionDisk Storage Type - [Deprecated] Storage type of the persistent disk.
- type string
- URL of the disk type resource describing which disk type to use to create the disk. Provide this when creating the disk. For example: projects/project /zones/zone/diskTypes/pd-ssd . See Persistent disk types.
- user
Licenses string[] - A list of publicly visible user-licenses. Unlike regular licenses, user provided licenses can be modified after the disk is created. This includes a list of URLs to the license resource. For example, to provide a debian license: https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch
- region str
- architecture
Region
Disk Architecture - The architecture of the disk. Valid values are ARM64 or X86_64.
- async_
primary_ Diskdisk Async Replication Args - Disk asynchronously replicated into this disk.
- description str
- An optional description of this resource. Provide this property when you create the resource.
- disk_
encryption_ Customerkey Encryption Key Args - Encrypts the disk using a customer-supplied encryption key or a customer-managed encryption key. Encryption keys do not protect access to metadata of the disk. After you encrypt a disk with a customer-supplied key, you must provide the same key if you use the disk later. For example, to create a disk snapshot, to create a disk image, to create a machine image, or to attach the disk to a virtual machine. After you encrypt a disk with a customer-managed key, the diskEncryptionKey.kmsKeyName is set to a key version name once the disk is created. The disk is encrypted with this version of the key. In the response, diskEncryptionKey.kmsKeyName appears in the following format: "diskEncryptionKey.kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key /cryptoKeysVersions/version If you do not provide an encryption key when creating the disk, then the disk is encrypted using an automatically generated key and you don't need to provide a key to use the disk later.
- enable_
confidential_ boolcompute - Whether this disk is using confidential compute mode.
- erase_
windows_ boolvss_ signature - Specifies whether the disk restored from a source snapshot should erase Windows specific VSS signature.
- guest_
os_ Sequence[Guestfeatures Os Feature Args] - A list of features to enable on the guest operating system. Applicable only for bootable images. Read Enabling guest operating system features to see a list of available options.
- interface
Region
Disk Interface - [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.
- labels Mapping[str, str]
- Labels to apply to this disk. These can be later modified by the setLabels method.
- license_
codes Sequence[str] - Integer license codes indicating which licenses are attached to this disk.
- licenses Sequence[str]
- A list of publicly visible licenses. Reserved for Google's use.
- location_
hint str - An opaque location hint used to place the disk close to other resources. This field is for use by internal tools that use the public API.
- multi_
writer bool - Indicates whether or not the disk can be read/write attached to more than one instance.
- name str
- Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - options str
- Internal use only.
- params
Disk
Params Args - Input only. [Input Only] Additional params passed with the request, but not persisted as part of resource payload.
- physical_
block_ strsize_ bytes - Physical block size of the persistent disk, in bytes. If not present in a request, a default value is used. The currently supported size is 4096, other sizes may be added in the future. If an unsupported value is requested, the error message will list the supported values for the caller's project.
- project str
- provisioned_
iops str - Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second that the disk can handle. Values must be between 10,000 and 120,000. For more details, see the Extreme persistent disk documentation.
- provisioned_
throughput str - Indicates how much throughput to provision for the disk. This sets the number of throughput mb per second that the disk can handle. Values must be between 1 and 7,124.
- replica_
zones Sequence[str] - URLs of the zones where the disk should be replicated to. Only applicable for regional resources.
- request_
id str - An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- resource_
policies Sequence[str] - Resource policies applied to this disk for automatic snapshot creations.
- size_
gb str - Size, in GB, of the persistent disk. You can specify this field when creating a persistent disk using the sourceImage, sourceSnapshot, or sourceDisk parameter, or specify it alone to create an empty persistent disk. If you specify this field along with a source, the value of sizeGb must not be less than the size of the source. Acceptable values are greater than 0.
- source_
disk str - The source disk used to create this disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - https://www.googleapis.com/compute/v1/projects/project/regions/region /disks/disk - projects/project/zones/zone/disks/disk - projects/project/regions/region/disks/disk - zones/zone/disks/disk - regions/region/disks/disk
- source_
image str - The source image used to create this disk. If the source image is deleted, this field will not be set. To create a disk with one of the public operating system images, specify the image by its family name. For example, specify family/debian-9 to use the latest Debian 9 image: projects/debian-cloud/global/images/family/debian-9 Alternatively, use a specific version of a public operating system image: projects/debian-cloud/global/images/debian-9-stretch-vYYYYMMDD To create a disk with a custom image that you created, specify the image name in the following format: global/images/my-custom-image You can also specify a custom image by its image family, which returns the latest version of the image in that family. Replace the image name with family/family-name: global/images/family/my-image-family
- source_
image_ Customerencryption_ key Encryption Key Args - The customer-supplied encryption key of the source image. Required if the source image is protected by a customer-supplied encryption key.
- source_
instant_ strsnapshot - The source instant snapshot used to create this disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /instantSnapshots/instantSnapshot - projects/project/zones/zone/instantSnapshots/instantSnapshot - zones/zone/instantSnapshots/instantSnapshot
- source_
snapshot str - The source snapshot used to create this disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project /global/snapshots/snapshot - projects/project/global/snapshots/snapshot - global/snapshots/snapshot
- source_
snapshot_ Customerencryption_ key Encryption Key Args - The customer-supplied encryption key of the source snapshot. Required if the source snapshot is protected by a customer-supplied encryption key.
- source_
storage_ strobject - The full Google Cloud Storage URI where the disk image is stored. This file must be a gzip-compressed tarball whose name ends in .tar.gz or virtual machine disk whose name ends in vmdk. Valid URIs may start with gs:// or https://storage.googleapis.com/. This flag is not optimized for creating multiple disks from a source storage object. To create many disks from a source storage object, use gcloud compute images import instead.
- storage_
type RegionDisk Storage Type - [Deprecated] Storage type of the persistent disk.
- type str
- URL of the disk type resource describing which disk type to use to create the disk. Provide this when creating the disk. For example: projects/project /zones/zone/diskTypes/pd-ssd . See Persistent disk types.
- user_
licenses Sequence[str] - A list of publicly visible user-licenses. Unlike regular licenses, user provided licenses can be modified after the disk is created. This includes a list of URLs to the license resource. For example, to provide a debian license: https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch
- region String
- architecture "ARCHITECTURE_UNSPECIFIED" | "ARM64" | "X86_64"
- The architecture of the disk. Valid values are ARM64 or X86_64.
- async
Primary Property MapDisk - Disk asynchronously replicated into this disk.
- description String
- An optional description of this resource. Provide this property when you create the resource.
- disk
Encryption Property MapKey - Encrypts the disk using a customer-supplied encryption key or a customer-managed encryption key. Encryption keys do not protect access to metadata of the disk. After you encrypt a disk with a customer-supplied key, you must provide the same key if you use the disk later. For example, to create a disk snapshot, to create a disk image, to create a machine image, or to attach the disk to a virtual machine. After you encrypt a disk with a customer-managed key, the diskEncryptionKey.kmsKeyName is set to a key version name once the disk is created. The disk is encrypted with this version of the key. In the response, diskEncryptionKey.kmsKeyName appears in the following format: "diskEncryptionKey.kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key /cryptoKeysVersions/version If you do not provide an encryption key when creating the disk, then the disk is encrypted using an automatically generated key and you don't need to provide a key to use the disk later.
- enable
Confidential BooleanCompute - Whether this disk is using confidential compute mode.
- erase
Windows BooleanVss Signature - Specifies whether the disk restored from a source snapshot should erase Windows specific VSS signature.
- guest
Os List<Property Map>Features - A list of features to enable on the guest operating system. Applicable only for bootable images. Read Enabling guest operating system features to see a list of available options.
- interface "NVME" | "SCSI" | "UNSPECIFIED"
- [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.
- labels Map<String>
- Labels to apply to this disk. These can be later modified by the setLabels method.
- license
Codes List<String> - Integer license codes indicating which licenses are attached to this disk.
- licenses List<String>
- A list of publicly visible licenses. Reserved for Google's use.
- location
Hint String - An opaque location hint used to place the disk close to other resources. This field is for use by internal tools that use the public API.
- multi
Writer Boolean - Indicates whether or not the disk can be read/write attached to more than one instance.
- name String
- Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - options String
- Internal use only.
- params Property Map
- Input only. [Input Only] Additional params passed with the request, but not persisted as part of resource payload.
- physical
Block StringSize Bytes - Physical block size of the persistent disk, in bytes. If not present in a request, a default value is used. The currently supported size is 4096, other sizes may be added in the future. If an unsupported value is requested, the error message will list the supported values for the caller's project.
- project String
- provisioned
Iops String - Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second that the disk can handle. Values must be between 10,000 and 120,000. For more details, see the Extreme persistent disk documentation.
- provisioned
Throughput String - Indicates how much throughput to provision for the disk. This sets the number of throughput mb per second that the disk can handle. Values must be between 1 and 7,124.
- replica
Zones List<String> - URLs of the zones where the disk should be replicated to. Only applicable for regional resources.
- request
Id String - An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- resource
Policies List<String> - Resource policies applied to this disk for automatic snapshot creations.
- size
Gb String - Size, in GB, of the persistent disk. You can specify this field when creating a persistent disk using the sourceImage, sourceSnapshot, or sourceDisk parameter, or specify it alone to create an empty persistent disk. If you specify this field along with a source, the value of sizeGb must not be less than the size of the source. Acceptable values are greater than 0.
- source
Disk String - The source disk used to create this disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - https://www.googleapis.com/compute/v1/projects/project/regions/region /disks/disk - projects/project/zones/zone/disks/disk - projects/project/regions/region/disks/disk - zones/zone/disks/disk - regions/region/disks/disk
- source
Image String - The source image used to create this disk. If the source image is deleted, this field will not be set. To create a disk with one of the public operating system images, specify the image by its family name. For example, specify family/debian-9 to use the latest Debian 9 image: projects/debian-cloud/global/images/family/debian-9 Alternatively, use a specific version of a public operating system image: projects/debian-cloud/global/images/debian-9-stretch-vYYYYMMDD To create a disk with a custom image that you created, specify the image name in the following format: global/images/my-custom-image You can also specify a custom image by its image family, which returns the latest version of the image in that family. Replace the image name with family/family-name: global/images/family/my-image-family
- source
Image Property MapEncryption Key - The customer-supplied encryption key of the source image. Required if the source image is protected by a customer-supplied encryption key.
- source
Instant StringSnapshot - The source instant snapshot used to create this disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /instantSnapshots/instantSnapshot - projects/project/zones/zone/instantSnapshots/instantSnapshot - zones/zone/instantSnapshots/instantSnapshot
- source
Snapshot String - The source snapshot used to create this disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project /global/snapshots/snapshot - projects/project/global/snapshots/snapshot - global/snapshots/snapshot
- source
Snapshot Property MapEncryption Key - The customer-supplied encryption key of the source snapshot. Required if the source snapshot is protected by a customer-supplied encryption key.
- source
Storage StringObject - The full Google Cloud Storage URI where the disk image is stored. This file must be a gzip-compressed tarball whose name ends in .tar.gz or virtual machine disk whose name ends in vmdk. Valid URIs may start with gs:// or https://storage.googleapis.com/. This flag is not optimized for creating multiple disks from a source storage object. To create many disks from a source storage object, use gcloud compute images import instead.
- storage
Type "HDD" | "SSD" - [Deprecated] Storage type of the persistent disk.
- type String
- URL of the disk type resource describing which disk type to use to create the disk. Provide this when creating the disk. For example: projects/project /zones/zone/diskTypes/pd-ssd . See Persistent disk types.
- user
Licenses List<String> - A list of publicly visible user-licenses. Unlike regular licenses, user provided licenses can be modified after the disk is created. This includes a list of URLs to the license resource. For example, to provide a debian license: https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch
Outputs
All input properties are implicitly available as output properties. Additionally, the RegionDisk resource produces the following output properties:
- Async
Secondary Dictionary<string, string>Disks - A list of disks this disk is asynchronously replicated to.
- Creation
Timestamp string - Creation timestamp in RFC3339 text format.
- Id string
- The provider-assigned unique ID for this managed resource.
- Kind string
- Type of the resource. Always compute#disk for disks.
- Label
Fingerprint string - A fingerprint for the labels being applied to this disk, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a disk.
- Last
Attach stringTimestamp - Last attach timestamp in RFC3339 text format.
- Last
Detach stringTimestamp - Last detach timestamp in RFC3339 text format.
- Locked bool
- The field indicates if the disk is created from a locked source image. Attachment of a disk created from a locked source image will cause the following operations to become irreversibly prohibited: - R/W or R/O disk attachment to any other instance - Disk detachment. And the disk can only be deleted when the instance is deleted - Creation of images or snapshots - Disk cloning Furthermore, the instance with at least one disk with locked flag set to true will be prohibited from performing the operations below: - Further attachment of secondary disks. - Detachment of any disks - Create machine images - Create instance template - Delete the instance with --keep-disk parameter set to true for locked disks - Attach a locked disk with --auto-delete parameter set to false
- Resource
Status Pulumi.Google Native. Compute. Beta. Outputs. Disk Resource Status Response - Status information for the disk resource.
- Satisfies
Pzs bool - Reserved for future use.
- Self
Link string - Server-defined fully-qualified URL for this resource.
- Source
Consistency stringGroup Policy - URL of the DiskConsistencyGroupPolicy for a secondary disk that was created using a consistency group.
- Source
Consistency stringGroup Policy Id - ID of the DiskConsistencyGroupPolicy for a secondary disk that was created using a consistency group.
- Source
Disk stringId - The unique ID of the disk used to create this disk. This value identifies the exact disk that was used to create this persistent disk. For example, if you created the persistent disk from a disk that was later deleted and recreated under the same name, the source disk ID would identify the exact version of the disk that was used.
- Source
Image stringId - The ID value of the image used to create this disk. This value identifies the exact image that was used to create this persistent disk. For example, if you created the persistent disk from an image that was later deleted and recreated under the same name, the source image ID would identify the exact version of the image that was used.
- Source
Instant stringSnapshot Id - The unique ID of the instant snapshot used to create this disk. This value identifies the exact instant snapshot that was used to create this persistent disk. For example, if you created the persistent disk from an instant snapshot that was later deleted and recreated under the same name, the source instant snapshot ID would identify the exact version of the instant snapshot that was used.
- Source
Snapshot stringId - The unique ID of the snapshot used to create this disk. This value identifies the exact snapshot that was used to create this persistent disk. For example, if you created the persistent disk from a snapshot that was later deleted and recreated under the same name, the source snapshot ID would identify the exact version of the snapshot that was used.
- Status string
- The status of disk creation. - CREATING: Disk is provisioning. - RESTORING: Source data is being copied into the disk. - FAILED: Disk creation failed. - READY: Disk is ready for use. - DELETING: Disk is deleting.
- Users List<string>
- Links to the users of the disk (attached instances) in form: projects/project/zones/zone/instances/instance
- Zone string
- URL of the zone where the disk resides. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.
- Async
Secondary map[string]stringDisks - A list of disks this disk is asynchronously replicated to.
- Creation
Timestamp string - Creation timestamp in RFC3339 text format.
- Id string
- The provider-assigned unique ID for this managed resource.
- Kind string
- Type of the resource. Always compute#disk for disks.
- Label
Fingerprint string - A fingerprint for the labels being applied to this disk, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a disk.
- Last
Attach stringTimestamp - Last attach timestamp in RFC3339 text format.
- Last
Detach stringTimestamp - Last detach timestamp in RFC3339 text format.
- Locked bool
- The field indicates if the disk is created from a locked source image. Attachment of a disk created from a locked source image will cause the following operations to become irreversibly prohibited: - R/W or R/O disk attachment to any other instance - Disk detachment. And the disk can only be deleted when the instance is deleted - Creation of images or snapshots - Disk cloning Furthermore, the instance with at least one disk with locked flag set to true will be prohibited from performing the operations below: - Further attachment of secondary disks. - Detachment of any disks - Create machine images - Create instance template - Delete the instance with --keep-disk parameter set to true for locked disks - Attach a locked disk with --auto-delete parameter set to false
- Resource
Status DiskResource Status Response - Status information for the disk resource.
- Satisfies
Pzs bool - Reserved for future use.
- Self
Link string - Server-defined fully-qualified URL for this resource.
- Source
Consistency stringGroup Policy - URL of the DiskConsistencyGroupPolicy for a secondary disk that was created using a consistency group.
- Source
Consistency stringGroup Policy Id - ID of the DiskConsistencyGroupPolicy for a secondary disk that was created using a consistency group.
- Source
Disk stringId - The unique ID of the disk used to create this disk. This value identifies the exact disk that was used to create this persistent disk. For example, if you created the persistent disk from a disk that was later deleted and recreated under the same name, the source disk ID would identify the exact version of the disk that was used.
- Source
Image stringId - The ID value of the image used to create this disk. This value identifies the exact image that was used to create this persistent disk. For example, if you created the persistent disk from an image that was later deleted and recreated under the same name, the source image ID would identify the exact version of the image that was used.
- Source
Instant stringSnapshot Id - The unique ID of the instant snapshot used to create this disk. This value identifies the exact instant snapshot that was used to create this persistent disk. For example, if you created the persistent disk from an instant snapshot that was later deleted and recreated under the same name, the source instant snapshot ID would identify the exact version of the instant snapshot that was used.
- Source
Snapshot stringId - The unique ID of the snapshot used to create this disk. This value identifies the exact snapshot that was used to create this persistent disk. For example, if you created the persistent disk from a snapshot that was later deleted and recreated under the same name, the source snapshot ID would identify the exact version of the snapshot that was used.
- Status string
- The status of disk creation. - CREATING: Disk is provisioning. - RESTORING: Source data is being copied into the disk. - FAILED: Disk creation failed. - READY: Disk is ready for use. - DELETING: Disk is deleting.
- Users []string
- Links to the users of the disk (attached instances) in form: projects/project/zones/zone/instances/instance
- Zone string
- URL of the zone where the disk resides. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.
- async
Secondary Map<String,String>Disks - A list of disks this disk is asynchronously replicated to.
- creation
Timestamp String - Creation timestamp in RFC3339 text format.
- id String
- The provider-assigned unique ID for this managed resource.
- kind String
- Type of the resource. Always compute#disk for disks.
- label
Fingerprint String - A fingerprint for the labels being applied to this disk, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a disk.
- last
Attach StringTimestamp - Last attach timestamp in RFC3339 text format.
- last
Detach StringTimestamp - Last detach timestamp in RFC3339 text format.
- locked Boolean
- The field indicates if the disk is created from a locked source image. Attachment of a disk created from a locked source image will cause the following operations to become irreversibly prohibited: - R/W or R/O disk attachment to any other instance - Disk detachment. And the disk can only be deleted when the instance is deleted - Creation of images or snapshots - Disk cloning Furthermore, the instance with at least one disk with locked flag set to true will be prohibited from performing the operations below: - Further attachment of secondary disks. - Detachment of any disks - Create machine images - Create instance template - Delete the instance with --keep-disk parameter set to true for locked disks - Attach a locked disk with --auto-delete parameter set to false
- resource
Status DiskResource Status Response - Status information for the disk resource.
- satisfies
Pzs Boolean - Reserved for future use.
- self
Link String - Server-defined fully-qualified URL for this resource.
- source
Consistency StringGroup Policy - URL of the DiskConsistencyGroupPolicy for a secondary disk that was created using a consistency group.
- source
Consistency StringGroup Policy Id - ID of the DiskConsistencyGroupPolicy for a secondary disk that was created using a consistency group.
- source
Disk StringId - The unique ID of the disk used to create this disk. This value identifies the exact disk that was used to create this persistent disk. For example, if you created the persistent disk from a disk that was later deleted and recreated under the same name, the source disk ID would identify the exact version of the disk that was used.
- source
Image StringId - The ID value of the image used to create this disk. This value identifies the exact image that was used to create this persistent disk. For example, if you created the persistent disk from an image that was later deleted and recreated under the same name, the source image ID would identify the exact version of the image that was used.
- source
Instant StringSnapshot Id - The unique ID of the instant snapshot used to create this disk. This value identifies the exact instant snapshot that was used to create this persistent disk. For example, if you created the persistent disk from an instant snapshot that was later deleted and recreated under the same name, the source instant snapshot ID would identify the exact version of the instant snapshot that was used.
- source
Snapshot StringId - The unique ID of the snapshot used to create this disk. This value identifies the exact snapshot that was used to create this persistent disk. For example, if you created the persistent disk from a snapshot that was later deleted and recreated under the same name, the source snapshot ID would identify the exact version of the snapshot that was used.
- status String
- The status of disk creation. - CREATING: Disk is provisioning. - RESTORING: Source data is being copied into the disk. - FAILED: Disk creation failed. - READY: Disk is ready for use. - DELETING: Disk is deleting.
- users List<String>
- Links to the users of the disk (attached instances) in form: projects/project/zones/zone/instances/instance
- zone String
- URL of the zone where the disk resides. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.
- async
Secondary {[key: string]: string}Disks - A list of disks this disk is asynchronously replicated to.
- creation
Timestamp string - Creation timestamp in RFC3339 text format.
- id string
- The provider-assigned unique ID for this managed resource.
- kind string
- Type of the resource. Always compute#disk for disks.
- label
Fingerprint string - A fingerprint for the labels being applied to this disk, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a disk.
- last
Attach stringTimestamp - Last attach timestamp in RFC3339 text format.
- last
Detach stringTimestamp - Last detach timestamp in RFC3339 text format.
- locked boolean
- The field indicates if the disk is created from a locked source image. Attachment of a disk created from a locked source image will cause the following operations to become irreversibly prohibited: - R/W or R/O disk attachment to any other instance - Disk detachment. And the disk can only be deleted when the instance is deleted - Creation of images or snapshots - Disk cloning Furthermore, the instance with at least one disk with locked flag set to true will be prohibited from performing the operations below: - Further attachment of secondary disks. - Detachment of any disks - Create machine images - Create instance template - Delete the instance with --keep-disk parameter set to true for locked disks - Attach a locked disk with --auto-delete parameter set to false
- resource
Status DiskResource Status Response - Status information for the disk resource.
- satisfies
Pzs boolean - Reserved for future use.
- self
Link string - Server-defined fully-qualified URL for this resource.
- source
Consistency stringGroup Policy - URL of the DiskConsistencyGroupPolicy for a secondary disk that was created using a consistency group.
- source
Consistency stringGroup Policy Id - ID of the DiskConsistencyGroupPolicy for a secondary disk that was created using a consistency group.
- source
Disk stringId - The unique ID of the disk used to create this disk. This value identifies the exact disk that was used to create this persistent disk. For example, if you created the persistent disk from a disk that was later deleted and recreated under the same name, the source disk ID would identify the exact version of the disk that was used.
- source
Image stringId - The ID value of the image used to create this disk. This value identifies the exact image that was used to create this persistent disk. For example, if you created the persistent disk from an image that was later deleted and recreated under the same name, the source image ID would identify the exact version of the image that was used.
- source
Instant stringSnapshot Id - The unique ID of the instant snapshot used to create this disk. This value identifies the exact instant snapshot that was used to create this persistent disk. For example, if you created the persistent disk from an instant snapshot that was later deleted and recreated under the same name, the source instant snapshot ID would identify the exact version of the instant snapshot that was used.
- source
Snapshot stringId - The unique ID of the snapshot used to create this disk. This value identifies the exact snapshot that was used to create this persistent disk. For example, if you created the persistent disk from a snapshot that was later deleted and recreated under the same name, the source snapshot ID would identify the exact version of the snapshot that was used.
- status string
- The status of disk creation. - CREATING: Disk is provisioning. - RESTORING: Source data is being copied into the disk. - FAILED: Disk creation failed. - READY: Disk is ready for use. - DELETING: Disk is deleting.
- users string[]
- Links to the users of the disk (attached instances) in form: projects/project/zones/zone/instances/instance
- zone string
- URL of the zone where the disk resides. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.
- async_
secondary_ Mapping[str, str]disks - A list of disks this disk is asynchronously replicated to.
- creation_
timestamp str - Creation timestamp in RFC3339 text format.
- id str
- The provider-assigned unique ID for this managed resource.
- kind str
- Type of the resource. Always compute#disk for disks.
- label_
fingerprint str - A fingerprint for the labels being applied to this disk, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a disk.
- last_
attach_ strtimestamp - Last attach timestamp in RFC3339 text format.
- last_
detach_ strtimestamp - Last detach timestamp in RFC3339 text format.
- locked bool
- The field indicates if the disk is created from a locked source image. Attachment of a disk created from a locked source image will cause the following operations to become irreversibly prohibited: - R/W or R/O disk attachment to any other instance - Disk detachment. And the disk can only be deleted when the instance is deleted - Creation of images or snapshots - Disk cloning Furthermore, the instance with at least one disk with locked flag set to true will be prohibited from performing the operations below: - Further attachment of secondary disks. - Detachment of any disks - Create machine images - Create instance template - Delete the instance with --keep-disk parameter set to true for locked disks - Attach a locked disk with --auto-delete parameter set to false
- resource_
status DiskResource Status Response - Status information for the disk resource.
- satisfies_
pzs bool - Reserved for future use.
- self_
link str - Server-defined fully-qualified URL for this resource.
- source_
consistency_ strgroup_ policy - URL of the DiskConsistencyGroupPolicy for a secondary disk that was created using a consistency group.
- source_
consistency_ strgroup_ policy_ id - ID of the DiskConsistencyGroupPolicy for a secondary disk that was created using a consistency group.
- source_
disk_ strid - The unique ID of the disk used to create this disk. This value identifies the exact disk that was used to create this persistent disk. For example, if you created the persistent disk from a disk that was later deleted and recreated under the same name, the source disk ID would identify the exact version of the disk that was used.
- source_
image_ strid - The ID value of the image used to create this disk. This value identifies the exact image that was used to create this persistent disk. For example, if you created the persistent disk from an image that was later deleted and recreated under the same name, the source image ID would identify the exact version of the image that was used.
- source_
instant_ strsnapshot_ id - The unique ID of the instant snapshot used to create this disk. This value identifies the exact instant snapshot that was used to create this persistent disk. For example, if you created the persistent disk from an instant snapshot that was later deleted and recreated under the same name, the source instant snapshot ID would identify the exact version of the instant snapshot that was used.
- source_
snapshot_ strid - The unique ID of the snapshot used to create this disk. This value identifies the exact snapshot that was used to create this persistent disk. For example, if you created the persistent disk from a snapshot that was later deleted and recreated under the same name, the source snapshot ID would identify the exact version of the snapshot that was used.
- status str
- The status of disk creation. - CREATING: Disk is provisioning. - RESTORING: Source data is being copied into the disk. - FAILED: Disk creation failed. - READY: Disk is ready for use. - DELETING: Disk is deleting.
- users Sequence[str]
- Links to the users of the disk (attached instances) in form: projects/project/zones/zone/instances/instance
- zone str
- URL of the zone where the disk resides. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.
- async
Secondary Map<String>Disks - A list of disks this disk is asynchronously replicated to.
- creation
Timestamp String - Creation timestamp in RFC3339 text format.
- id String
- The provider-assigned unique ID for this managed resource.
- kind String
- Type of the resource. Always compute#disk for disks.
- label
Fingerprint String - A fingerprint for the labels being applied to this disk, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a disk.
- last
Attach StringTimestamp - Last attach timestamp in RFC3339 text format.
- last
Detach StringTimestamp - Last detach timestamp in RFC3339 text format.
- locked Boolean
- The field indicates if the disk is created from a locked source image. Attachment of a disk created from a locked source image will cause the following operations to become irreversibly prohibited: - R/W or R/O disk attachment to any other instance - Disk detachment. And the disk can only be deleted when the instance is deleted - Creation of images or snapshots - Disk cloning Furthermore, the instance with at least one disk with locked flag set to true will be prohibited from performing the operations below: - Further attachment of secondary disks. - Detachment of any disks - Create machine images - Create instance template - Delete the instance with --keep-disk parameter set to true for locked disks - Attach a locked disk with --auto-delete parameter set to false
- resource
Status Property Map - Status information for the disk resource.
- satisfies
Pzs Boolean - Reserved for future use.
- self
Link String - Server-defined fully-qualified URL for this resource.
- source
Consistency StringGroup Policy - URL of the DiskConsistencyGroupPolicy for a secondary disk that was created using a consistency group.
- source
Consistency StringGroup Policy Id - ID of the DiskConsistencyGroupPolicy for a secondary disk that was created using a consistency group.
- source
Disk StringId - The unique ID of the disk used to create this disk. This value identifies the exact disk that was used to create this persistent disk. For example, if you created the persistent disk from a disk that was later deleted and recreated under the same name, the source disk ID would identify the exact version of the disk that was used.
- source
Image StringId - The ID value of the image used to create this disk. This value identifies the exact image that was used to create this persistent disk. For example, if you created the persistent disk from an image that was later deleted and recreated under the same name, the source image ID would identify the exact version of the image that was used.
- source
Instant StringSnapshot Id - The unique ID of the instant snapshot used to create this disk. This value identifies the exact instant snapshot that was used to create this persistent disk. For example, if you created the persistent disk from an instant snapshot that was later deleted and recreated under the same name, the source instant snapshot ID would identify the exact version of the instant snapshot that was used.
- source
Snapshot StringId - The unique ID of the snapshot used to create this disk. This value identifies the exact snapshot that was used to create this persistent disk. For example, if you created the persistent disk from a snapshot that was later deleted and recreated under the same name, the source snapshot ID would identify the exact version of the snapshot that was used.
- status String
- The status of disk creation. - CREATING: Disk is provisioning. - RESTORING: Source data is being copied into the disk. - FAILED: Disk creation failed. - READY: Disk is ready for use. - DELETING: Disk is deleting.
- users List<String>
- Links to the users of the disk (attached instances) in form: projects/project/zones/zone/instances/instance
- zone String
- URL of the zone where the disk resides. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.
Supporting Types
CustomerEncryptionKey, CustomerEncryptionKeyArgs
- Kms
Key stringName - The name of the encryption key that is stored in Google Cloud KMS. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key The fully-qualifed key name may be returned for resource GET requests. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key /cryptoKeyVersions/1
- Kms
Key stringService Account - The service account being used for the encryption request for the given KMS key. If absent, the Compute Engine default service account is used. For example: "kmsKeyServiceAccount": "name@project_id.iam.gserviceaccount.com/
- Raw
Key string - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rawKey": "SGVsbG8gZnJvbSBHb29nbGUgQ2xvdWQgUGxhdGZvcm0="
- Rsa
Encrypted stringKey - Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit customer-supplied encryption key to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rsaEncryptedKey": "ieCx/NcW06PcT7Ep1X6LUTc/hLvUDYyzSZPPVCVPTVEohpeHASqC8uw5TzyO9U+Fka9JFH z0mBibXUInrC/jEk014kCK/NPjYgEMOyssZ4ZINPKxlUh2zn1bV+MCaTICrdmuSBTWlUUiFoD D6PYznLwh8ZNdaheCeZ8ewEXgFQ8V+sDroLaN3Xs3MDTXQEMMoNUXMCZEIpg9Vtp9x2oe==" The key must meet the following requirements before you can provide it to Compute Engine: 1. The key is wrapped using a RSA public key certificate provided by Google. 2. After being wrapped, the key must be encoded in RFC 4648 base64 encoding. Gets the RSA public key certificate provided by Google at: https://cloud-certs.storage.googleapis.com/google-cloud-csek-ingress.pem
- Kms
Key stringName - The name of the encryption key that is stored in Google Cloud KMS. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key The fully-qualifed key name may be returned for resource GET requests. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key /cryptoKeyVersions/1
- Kms
Key stringService Account - The service account being used for the encryption request for the given KMS key. If absent, the Compute Engine default service account is used. For example: "kmsKeyServiceAccount": "name@project_id.iam.gserviceaccount.com/
- Raw
Key string - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rawKey": "SGVsbG8gZnJvbSBHb29nbGUgQ2xvdWQgUGxhdGZvcm0="
- Rsa
Encrypted stringKey - Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit customer-supplied encryption key to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rsaEncryptedKey": "ieCx/NcW06PcT7Ep1X6LUTc/hLvUDYyzSZPPVCVPTVEohpeHASqC8uw5TzyO9U+Fka9JFH z0mBibXUInrC/jEk014kCK/NPjYgEMOyssZ4ZINPKxlUh2zn1bV+MCaTICrdmuSBTWlUUiFoD D6PYznLwh8ZNdaheCeZ8ewEXgFQ8V+sDroLaN3Xs3MDTXQEMMoNUXMCZEIpg9Vtp9x2oe==" The key must meet the following requirements before you can provide it to Compute Engine: 1. The key is wrapped using a RSA public key certificate provided by Google. 2. After being wrapped, the key must be encoded in RFC 4648 base64 encoding. Gets the RSA public key certificate provided by Google at: https://cloud-certs.storage.googleapis.com/google-cloud-csek-ingress.pem
- kms
Key StringName - The name of the encryption key that is stored in Google Cloud KMS. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key The fully-qualifed key name may be returned for resource GET requests. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key /cryptoKeyVersions/1
- kms
Key StringService Account - The service account being used for the encryption request for the given KMS key. If absent, the Compute Engine default service account is used. For example: "kmsKeyServiceAccount": "name@project_id.iam.gserviceaccount.com/
- raw
Key String - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rawKey": "SGVsbG8gZnJvbSBHb29nbGUgQ2xvdWQgUGxhdGZvcm0="
- rsa
Encrypted StringKey - Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit customer-supplied encryption key to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rsaEncryptedKey": "ieCx/NcW06PcT7Ep1X6LUTc/hLvUDYyzSZPPVCVPTVEohpeHASqC8uw5TzyO9U+Fka9JFH z0mBibXUInrC/jEk014kCK/NPjYgEMOyssZ4ZINPKxlUh2zn1bV+MCaTICrdmuSBTWlUUiFoD D6PYznLwh8ZNdaheCeZ8ewEXgFQ8V+sDroLaN3Xs3MDTXQEMMoNUXMCZEIpg9Vtp9x2oe==" The key must meet the following requirements before you can provide it to Compute Engine: 1. The key is wrapped using a RSA public key certificate provided by Google. 2. After being wrapped, the key must be encoded in RFC 4648 base64 encoding. Gets the RSA public key certificate provided by Google at: https://cloud-certs.storage.googleapis.com/google-cloud-csek-ingress.pem
- kms
Key stringName - The name of the encryption key that is stored in Google Cloud KMS. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key The fully-qualifed key name may be returned for resource GET requests. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key /cryptoKeyVersions/1
- kms
Key stringService Account - The service account being used for the encryption request for the given KMS key. If absent, the Compute Engine default service account is used. For example: "kmsKeyServiceAccount": "name@project_id.iam.gserviceaccount.com/
- raw
Key string - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rawKey": "SGVsbG8gZnJvbSBHb29nbGUgQ2xvdWQgUGxhdGZvcm0="
- rsa
Encrypted stringKey - Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit customer-supplied encryption key to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rsaEncryptedKey": "ieCx/NcW06PcT7Ep1X6LUTc/hLvUDYyzSZPPVCVPTVEohpeHASqC8uw5TzyO9U+Fka9JFH z0mBibXUInrC/jEk014kCK/NPjYgEMOyssZ4ZINPKxlUh2zn1bV+MCaTICrdmuSBTWlUUiFoD D6PYznLwh8ZNdaheCeZ8ewEXgFQ8V+sDroLaN3Xs3MDTXQEMMoNUXMCZEIpg9Vtp9x2oe==" The key must meet the following requirements before you can provide it to Compute Engine: 1. The key is wrapped using a RSA public key certificate provided by Google. 2. After being wrapped, the key must be encoded in RFC 4648 base64 encoding. Gets the RSA public key certificate provided by Google at: https://cloud-certs.storage.googleapis.com/google-cloud-csek-ingress.pem
- kms_
key_ strname - The name of the encryption key that is stored in Google Cloud KMS. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key The fully-qualifed key name may be returned for resource GET requests. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key /cryptoKeyVersions/1
- kms_
key_ strservice_ account - The service account being used for the encryption request for the given KMS key. If absent, the Compute Engine default service account is used. For example: "kmsKeyServiceAccount": "name@project_id.iam.gserviceaccount.com/
- raw_
key str - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rawKey": "SGVsbG8gZnJvbSBHb29nbGUgQ2xvdWQgUGxhdGZvcm0="
- rsa_
encrypted_ strkey - Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit customer-supplied encryption key to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rsaEncryptedKey": "ieCx/NcW06PcT7Ep1X6LUTc/hLvUDYyzSZPPVCVPTVEohpeHASqC8uw5TzyO9U+Fka9JFH z0mBibXUInrC/jEk014kCK/NPjYgEMOyssZ4ZINPKxlUh2zn1bV+MCaTICrdmuSBTWlUUiFoD D6PYznLwh8ZNdaheCeZ8ewEXgFQ8V+sDroLaN3Xs3MDTXQEMMoNUXMCZEIpg9Vtp9x2oe==" The key must meet the following requirements before you can provide it to Compute Engine: 1. The key is wrapped using a RSA public key certificate provided by Google. 2. After being wrapped, the key must be encoded in RFC 4648 base64 encoding. Gets the RSA public key certificate provided by Google at: https://cloud-certs.storage.googleapis.com/google-cloud-csek-ingress.pem
- kms
Key StringName - The name of the encryption key that is stored in Google Cloud KMS. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key The fully-qualifed key name may be returned for resource GET requests. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key /cryptoKeyVersions/1
- kms
Key StringService Account - The service account being used for the encryption request for the given KMS key. If absent, the Compute Engine default service account is used. For example: "kmsKeyServiceAccount": "name@project_id.iam.gserviceaccount.com/
- raw
Key String - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rawKey": "SGVsbG8gZnJvbSBHb29nbGUgQ2xvdWQgUGxhdGZvcm0="
- rsa
Encrypted StringKey - Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit customer-supplied encryption key to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rsaEncryptedKey": "ieCx/NcW06PcT7Ep1X6LUTc/hLvUDYyzSZPPVCVPTVEohpeHASqC8uw5TzyO9U+Fka9JFH z0mBibXUInrC/jEk014kCK/NPjYgEMOyssZ4ZINPKxlUh2zn1bV+MCaTICrdmuSBTWlUUiFoD D6PYznLwh8ZNdaheCeZ8ewEXgFQ8V+sDroLaN3Xs3MDTXQEMMoNUXMCZEIpg9Vtp9x2oe==" The key must meet the following requirements before you can provide it to Compute Engine: 1. The key is wrapped using a RSA public key certificate provided by Google. 2. After being wrapped, the key must be encoded in RFC 4648 base64 encoding. Gets the RSA public key certificate provided by Google at: https://cloud-certs.storage.googleapis.com/google-cloud-csek-ingress.pem
CustomerEncryptionKeyResponse, CustomerEncryptionKeyResponseArgs
- Kms
Key stringName - The name of the encryption key that is stored in Google Cloud KMS. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key The fully-qualifed key name may be returned for resource GET requests. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key /cryptoKeyVersions/1
- Kms
Key stringService Account - The service account being used for the encryption request for the given KMS key. If absent, the Compute Engine default service account is used. For example: "kmsKeyServiceAccount": "name@project_id.iam.gserviceaccount.com/
- Raw
Key string - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rawKey": "SGVsbG8gZnJvbSBHb29nbGUgQ2xvdWQgUGxhdGZvcm0="
- Rsa
Encrypted stringKey - Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit customer-supplied encryption key to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rsaEncryptedKey": "ieCx/NcW06PcT7Ep1X6LUTc/hLvUDYyzSZPPVCVPTVEohpeHASqC8uw5TzyO9U+Fka9JFH z0mBibXUInrC/jEk014kCK/NPjYgEMOyssZ4ZINPKxlUh2zn1bV+MCaTICrdmuSBTWlUUiFoD D6PYznLwh8ZNdaheCeZ8ewEXgFQ8V+sDroLaN3Xs3MDTXQEMMoNUXMCZEIpg9Vtp9x2oe==" The key must meet the following requirements before you can provide it to Compute Engine: 1. The key is wrapped using a RSA public key certificate provided by Google. 2. After being wrapped, the key must be encoded in RFC 4648 base64 encoding. Gets the RSA public key certificate provided by Google at: https://cloud-certs.storage.googleapis.com/google-cloud-csek-ingress.pem
- Sha256 string
- [Output only] The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- Kms
Key stringName - The name of the encryption key that is stored in Google Cloud KMS. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key The fully-qualifed key name may be returned for resource GET requests. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key /cryptoKeyVersions/1
- Kms
Key stringService Account - The service account being used for the encryption request for the given KMS key. If absent, the Compute Engine default service account is used. For example: "kmsKeyServiceAccount": "name@project_id.iam.gserviceaccount.com/
- Raw
Key string - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rawKey": "SGVsbG8gZnJvbSBHb29nbGUgQ2xvdWQgUGxhdGZvcm0="
- Rsa
Encrypted stringKey - Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit customer-supplied encryption key to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rsaEncryptedKey": "ieCx/NcW06PcT7Ep1X6LUTc/hLvUDYyzSZPPVCVPTVEohpeHASqC8uw5TzyO9U+Fka9JFH z0mBibXUInrC/jEk014kCK/NPjYgEMOyssZ4ZINPKxlUh2zn1bV+MCaTICrdmuSBTWlUUiFoD D6PYznLwh8ZNdaheCeZ8ewEXgFQ8V+sDroLaN3Xs3MDTXQEMMoNUXMCZEIpg9Vtp9x2oe==" The key must meet the following requirements before you can provide it to Compute Engine: 1. The key is wrapped using a RSA public key certificate provided by Google. 2. After being wrapped, the key must be encoded in RFC 4648 base64 encoding. Gets the RSA public key certificate provided by Google at: https://cloud-certs.storage.googleapis.com/google-cloud-csek-ingress.pem
- Sha256 string
- [Output only] The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- kms
Key StringName - The name of the encryption key that is stored in Google Cloud KMS. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key The fully-qualifed key name may be returned for resource GET requests. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key /cryptoKeyVersions/1
- kms
Key StringService Account - The service account being used for the encryption request for the given KMS key. If absent, the Compute Engine default service account is used. For example: "kmsKeyServiceAccount": "name@project_id.iam.gserviceaccount.com/
- raw
Key String - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rawKey": "SGVsbG8gZnJvbSBHb29nbGUgQ2xvdWQgUGxhdGZvcm0="
- rsa
Encrypted StringKey - Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit customer-supplied encryption key to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rsaEncryptedKey": "ieCx/NcW06PcT7Ep1X6LUTc/hLvUDYyzSZPPVCVPTVEohpeHASqC8uw5TzyO9U+Fka9JFH z0mBibXUInrC/jEk014kCK/NPjYgEMOyssZ4ZINPKxlUh2zn1bV+MCaTICrdmuSBTWlUUiFoD D6PYznLwh8ZNdaheCeZ8ewEXgFQ8V+sDroLaN3Xs3MDTXQEMMoNUXMCZEIpg9Vtp9x2oe==" The key must meet the following requirements before you can provide it to Compute Engine: 1. The key is wrapped using a RSA public key certificate provided by Google. 2. After being wrapped, the key must be encoded in RFC 4648 base64 encoding. Gets the RSA public key certificate provided by Google at: https://cloud-certs.storage.googleapis.com/google-cloud-csek-ingress.pem
- sha256 String
- [Output only] The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- kms
Key stringName - The name of the encryption key that is stored in Google Cloud KMS. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key The fully-qualifed key name may be returned for resource GET requests. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key /cryptoKeyVersions/1
- kms
Key stringService Account - The service account being used for the encryption request for the given KMS key. If absent, the Compute Engine default service account is used. For example: "kmsKeyServiceAccount": "name@project_id.iam.gserviceaccount.com/
- raw
Key string - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rawKey": "SGVsbG8gZnJvbSBHb29nbGUgQ2xvdWQgUGxhdGZvcm0="
- rsa
Encrypted stringKey - Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit customer-supplied encryption key to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rsaEncryptedKey": "ieCx/NcW06PcT7Ep1X6LUTc/hLvUDYyzSZPPVCVPTVEohpeHASqC8uw5TzyO9U+Fka9JFH z0mBibXUInrC/jEk014kCK/NPjYgEMOyssZ4ZINPKxlUh2zn1bV+MCaTICrdmuSBTWlUUiFoD D6PYznLwh8ZNdaheCeZ8ewEXgFQ8V+sDroLaN3Xs3MDTXQEMMoNUXMCZEIpg9Vtp9x2oe==" The key must meet the following requirements before you can provide it to Compute Engine: 1. The key is wrapped using a RSA public key certificate provided by Google. 2. After being wrapped, the key must be encoded in RFC 4648 base64 encoding. Gets the RSA public key certificate provided by Google at: https://cloud-certs.storage.googleapis.com/google-cloud-csek-ingress.pem
- sha256 string
- [Output only] The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- kms_
key_ strname - The name of the encryption key that is stored in Google Cloud KMS. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key The fully-qualifed key name may be returned for resource GET requests. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key /cryptoKeyVersions/1
- kms_
key_ strservice_ account - The service account being used for the encryption request for the given KMS key. If absent, the Compute Engine default service account is used. For example: "kmsKeyServiceAccount": "name@project_id.iam.gserviceaccount.com/
- raw_
key str - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rawKey": "SGVsbG8gZnJvbSBHb29nbGUgQ2xvdWQgUGxhdGZvcm0="
- rsa_
encrypted_ strkey - Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit customer-supplied encryption key to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rsaEncryptedKey": "ieCx/NcW06PcT7Ep1X6LUTc/hLvUDYyzSZPPVCVPTVEohpeHASqC8uw5TzyO9U+Fka9JFH z0mBibXUInrC/jEk014kCK/NPjYgEMOyssZ4ZINPKxlUh2zn1bV+MCaTICrdmuSBTWlUUiFoD D6PYznLwh8ZNdaheCeZ8ewEXgFQ8V+sDroLaN3Xs3MDTXQEMMoNUXMCZEIpg9Vtp9x2oe==" The key must meet the following requirements before you can provide it to Compute Engine: 1. The key is wrapped using a RSA public key certificate provided by Google. 2. After being wrapped, the key must be encoded in RFC 4648 base64 encoding. Gets the RSA public key certificate provided by Google at: https://cloud-certs.storage.googleapis.com/google-cloud-csek-ingress.pem
- sha256 str
- [Output only] The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- kms
Key StringName - The name of the encryption key that is stored in Google Cloud KMS. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key The fully-qualifed key name may be returned for resource GET requests. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key /cryptoKeyVersions/1
- kms
Key StringService Account - The service account being used for the encryption request for the given KMS key. If absent, the Compute Engine default service account is used. For example: "kmsKeyServiceAccount": "name@project_id.iam.gserviceaccount.com/
- raw
Key String - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rawKey": "SGVsbG8gZnJvbSBHb29nbGUgQ2xvdWQgUGxhdGZvcm0="
- rsa
Encrypted StringKey - Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit customer-supplied encryption key to either encrypt or decrypt this resource. You can provide either the rawKey or the rsaEncryptedKey. For example: "rsaEncryptedKey": "ieCx/NcW06PcT7Ep1X6LUTc/hLvUDYyzSZPPVCVPTVEohpeHASqC8uw5TzyO9U+Fka9JFH z0mBibXUInrC/jEk014kCK/NPjYgEMOyssZ4ZINPKxlUh2zn1bV+MCaTICrdmuSBTWlUUiFoD D6PYznLwh8ZNdaheCeZ8ewEXgFQ8V+sDroLaN3Xs3MDTXQEMMoNUXMCZEIpg9Vtp9x2oe==" The key must meet the following requirements before you can provide it to Compute Engine: 1. The key is wrapped using a RSA public key certificate provided by Google. 2. After being wrapped, the key must be encoded in RFC 4648 base64 encoding. Gets the RSA public key certificate provided by Google at: https://cloud-certs.storage.googleapis.com/google-cloud-csek-ingress.pem
- sha256 String
- [Output only] The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
DiskAsyncReplication, DiskAsyncReplicationArgs
- Disk string
- The other disk asynchronously replicated to or from the current disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
- Disk string
- The other disk asynchronously replicated to or from the current disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
- disk String
- The other disk asynchronously replicated to or from the current disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
- disk string
- The other disk asynchronously replicated to or from the current disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
- disk str
- The other disk asynchronously replicated to or from the current disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
- disk String
- The other disk asynchronously replicated to or from the current disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
DiskAsyncReplicationResponse, DiskAsyncReplicationResponseArgs
- Consistency
Group stringPolicy - URL of the DiskConsistencyGroupPolicy if replication was started on the disk as a member of a group.
- Consistency
Group stringPolicy Id - ID of the DiskConsistencyGroupPolicy if replication was started on the disk as a member of a group.
- Disk string
- The other disk asynchronously replicated to or from the current disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
- Disk
Id string - The unique ID of the other disk asynchronously replicated to or from the current disk. This value identifies the exact disk that was used to create this replication. For example, if you started replicating the persistent disk from a disk that was later deleted and recreated under the same name, the disk ID would identify the exact version of the disk that was used.
- Consistency
Group stringPolicy - URL of the DiskConsistencyGroupPolicy if replication was started on the disk as a member of a group.
- Consistency
Group stringPolicy Id - ID of the DiskConsistencyGroupPolicy if replication was started on the disk as a member of a group.
- Disk string
- The other disk asynchronously replicated to or from the current disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
- Disk
Id string - The unique ID of the other disk asynchronously replicated to or from the current disk. This value identifies the exact disk that was used to create this replication. For example, if you started replicating the persistent disk from a disk that was later deleted and recreated under the same name, the disk ID would identify the exact version of the disk that was used.
- consistency
Group StringPolicy - URL of the DiskConsistencyGroupPolicy if replication was started on the disk as a member of a group.
- consistency
Group StringPolicy Id - ID of the DiskConsistencyGroupPolicy if replication was started on the disk as a member of a group.
- disk String
- The other disk asynchronously replicated to or from the current disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
- disk
Id String - The unique ID of the other disk asynchronously replicated to or from the current disk. This value identifies the exact disk that was used to create this replication. For example, if you started replicating the persistent disk from a disk that was later deleted and recreated under the same name, the disk ID would identify the exact version of the disk that was used.
- consistency
Group stringPolicy - URL of the DiskConsistencyGroupPolicy if replication was started on the disk as a member of a group.
- consistency
Group stringPolicy Id - ID of the DiskConsistencyGroupPolicy if replication was started on the disk as a member of a group.
- disk string
- The other disk asynchronously replicated to or from the current disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
- disk
Id string - The unique ID of the other disk asynchronously replicated to or from the current disk. This value identifies the exact disk that was used to create this replication. For example, if you started replicating the persistent disk from a disk that was later deleted and recreated under the same name, the disk ID would identify the exact version of the disk that was used.
- consistency_
group_ strpolicy - URL of the DiskConsistencyGroupPolicy if replication was started on the disk as a member of a group.
- consistency_
group_ strpolicy_ id - ID of the DiskConsistencyGroupPolicy if replication was started on the disk as a member of a group.
- disk str
- The other disk asynchronously replicated to or from the current disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
- disk_
id str - The unique ID of the other disk asynchronously replicated to or from the current disk. This value identifies the exact disk that was used to create this replication. For example, if you started replicating the persistent disk from a disk that was later deleted and recreated under the same name, the disk ID would identify the exact version of the disk that was used.
- consistency
Group StringPolicy - URL of the DiskConsistencyGroupPolicy if replication was started on the disk as a member of a group.
- consistency
Group StringPolicy Id - ID of the DiskConsistencyGroupPolicy if replication was started on the disk as a member of a group.
- disk String
- The other disk asynchronously replicated to or from the current disk. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk - zones/zone/disks/disk
- disk
Id String - The unique ID of the other disk asynchronously replicated to or from the current disk. This value identifies the exact disk that was used to create this replication. For example, if you started replicating the persistent disk from a disk that was later deleted and recreated under the same name, the disk ID would identify the exact version of the disk that was used.
DiskParams, DiskParamsArgs
- Dictionary<string, string>
- Resource manager tags to be bound to the disk. Tag keys and values have the same definition as resource manager tags. Keys must be in the format
tagKeys/{tag_key_id}
, and values are in the formattagValues/456
. The field is ignored (both PUT & PATCH) when empty.
- map[string]string
- Resource manager tags to be bound to the disk. Tag keys and values have the same definition as resource manager tags. Keys must be in the format
tagKeys/{tag_key_id}
, and values are in the formattagValues/456
. The field is ignored (both PUT & PATCH) when empty.
- Map<String,String>
- Resource manager tags to be bound to the disk. Tag keys and values have the same definition as resource manager tags. Keys must be in the format
tagKeys/{tag_key_id}
, and values are in the formattagValues/456
. The field is ignored (both PUT & PATCH) when empty.
- {[key: string]: string}
- Resource manager tags to be bound to the disk. Tag keys and values have the same definition as resource manager tags. Keys must be in the format
tagKeys/{tag_key_id}
, and values are in the formattagValues/456
. The field is ignored (both PUT & PATCH) when empty.
- Mapping[str, str]
- Resource manager tags to be bound to the disk. Tag keys and values have the same definition as resource manager tags. Keys must be in the format
tagKeys/{tag_key_id}
, and values are in the formattagValues/456
. The field is ignored (both PUT & PATCH) when empty.
- Map<String>
- Resource manager tags to be bound to the disk. Tag keys and values have the same definition as resource manager tags. Keys must be in the format
tagKeys/{tag_key_id}
, and values are in the formattagValues/456
. The field is ignored (both PUT & PATCH) when empty.
DiskParamsResponse, DiskParamsResponseArgs
- Dictionary<string, string>
- Resource manager tags to be bound to the disk. Tag keys and values have the same definition as resource manager tags. Keys must be in the format
tagKeys/{tag_key_id}
, and values are in the formattagValues/456
. The field is ignored (both PUT & PATCH) when empty.
- map[string]string
- Resource manager tags to be bound to the disk. Tag keys and values have the same definition as resource manager tags. Keys must be in the format
tagKeys/{tag_key_id}
, and values are in the formattagValues/456
. The field is ignored (both PUT & PATCH) when empty.
- Map<String,String>
- Resource manager tags to be bound to the disk. Tag keys and values have the same definition as resource manager tags. Keys must be in the format
tagKeys/{tag_key_id}
, and values are in the formattagValues/456
. The field is ignored (both PUT & PATCH) when empty.
- {[key: string]: string}
- Resource manager tags to be bound to the disk. Tag keys and values have the same definition as resource manager tags. Keys must be in the format
tagKeys/{tag_key_id}
, and values are in the formattagValues/456
. The field is ignored (both PUT & PATCH) when empty.
- Mapping[str, str]
- Resource manager tags to be bound to the disk. Tag keys and values have the same definition as resource manager tags. Keys must be in the format
tagKeys/{tag_key_id}
, and values are in the formattagValues/456
. The field is ignored (both PUT & PATCH) when empty.
- Map<String>
- Resource manager tags to be bound to the disk. Tag keys and values have the same definition as resource manager tags. Keys must be in the format
tagKeys/{tag_key_id}
, and values are in the formattagValues/456
. The field is ignored (both PUT & PATCH) when empty.
DiskResourceStatusAsyncReplicationStatusResponse, DiskResourceStatusAsyncReplicationStatusResponseArgs
- State string
- State string
- state String
- state string
- state str
- state String
DiskResourceStatusResponse, DiskResourceStatusResponseArgs
- Async
Primary Pulumi.Disk Google Native. Compute. Beta. Inputs. Disk Resource Status Async Replication Status Response - Async
Secondary Dictionary<string, string>Disks - Key: disk, value: AsyncReplicationStatus message
- Async
Primary DiskDisk Resource Status Async Replication Status Response - Async
Secondary map[string]stringDisks - Key: disk, value: AsyncReplicationStatus message
- async
Primary DiskDisk Resource Status Async Replication Status Response - async
Secondary Map<String,String>Disks - Key: disk, value: AsyncReplicationStatus message
- async
Primary DiskDisk Resource Status Async Replication Status Response - async
Secondary {[key: string]: string}Disks - Key: disk, value: AsyncReplicationStatus message
- async_
primary_ Diskdisk Resource Status Async Replication Status Response - async_
secondary_ Mapping[str, str]disks - Key: disk, value: AsyncReplicationStatus message
- async
Primary Property MapDisk - async
Secondary Map<String>Disks - Key: disk, value: AsyncReplicationStatus message
GuestOsFeature, GuestOsFeatureArgs
- Type
Pulumi.
Google Native. Compute. Beta. Guest Os Feature Type - The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE For more information, see Enabling guest operating system features.
- Type
Guest
Os Feature Type - The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE For more information, see Enabling guest operating system features.
- type
Guest
Os Feature Type - The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE For more information, see Enabling guest operating system features.
- type
Guest
Os Feature Type - The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE For more information, see Enabling guest operating system features.
- type
Guest
Os Feature Type - The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE For more information, see Enabling guest operating system features.
- type "FEATURE_TYPE_UNSPECIFIED" | "GVNIC" | "MULTI_IP_SUBNET" | "SECURE_BOOT" | "SEV_CAPABLE" | "SEV_LIVE_MIGRATABLE" | "SEV_LIVE_MIGRATABLE_V2" | "SEV_SNP_CAPABLE" | "UEFI_COMPATIBLE" | "VIRTIO_SCSI_MULTIQUEUE" | "WINDOWS"
- The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE For more information, see Enabling guest operating system features.
GuestOsFeatureResponse, GuestOsFeatureResponseArgs
- Type string
- The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE For more information, see Enabling guest operating system features.
- Type string
- The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE For more information, see Enabling guest operating system features.
- type String
- The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE For more information, see Enabling guest operating system features.
- type string
- The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE For more information, see Enabling guest operating system features.
- type str
- The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE For more information, see Enabling guest operating system features.
- type String
- The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE For more information, see Enabling guest operating system features.
GuestOsFeatureType, GuestOsFeatureTypeArgs
- Feature
Type Unspecified - FEATURE_TYPE_UNSPECIFIED
- Gvnic
- GVNIC
- Multi
Ip Subnet - MULTI_IP_SUBNET
- Secure
Boot - SECURE_BOOT
- Sev
Capable - SEV_CAPABLE
- Sev
Live Migratable - SEV_LIVE_MIGRATABLE
- Sev
Live Migratable V2 - SEV_LIVE_MIGRATABLE_V2
- Sev
Snp Capable - SEV_SNP_CAPABLE
- Uefi
Compatible - UEFI_COMPATIBLE
- Virtio
Scsi Multiqueue - VIRTIO_SCSI_MULTIQUEUE
- Windows
- WINDOWS
- Guest
Os Feature Type Feature Type Unspecified - FEATURE_TYPE_UNSPECIFIED
- Guest
Os Feature Type Gvnic - GVNIC
- Guest
Os Feature Type Multi Ip Subnet - MULTI_IP_SUBNET
- Guest
Os Feature Type Secure Boot - SECURE_BOOT
- Guest
Os Feature Type Sev Capable - SEV_CAPABLE
- Guest
Os Feature Type Sev Live Migratable - SEV_LIVE_MIGRATABLE
- Guest
Os Feature Type Sev Live Migratable V2 - SEV_LIVE_MIGRATABLE_V2
- Guest
Os Feature Type Sev Snp Capable - SEV_SNP_CAPABLE
- Guest
Os Feature Type Uefi Compatible - UEFI_COMPATIBLE
- Guest
Os Feature Type Virtio Scsi Multiqueue - VIRTIO_SCSI_MULTIQUEUE
- Guest
Os Feature Type Windows - WINDOWS
- Feature
Type Unspecified - FEATURE_TYPE_UNSPECIFIED
- Gvnic
- GVNIC
- Multi
Ip Subnet - MULTI_IP_SUBNET
- Secure
Boot - SECURE_BOOT
- Sev
Capable - SEV_CAPABLE
- Sev
Live Migratable - SEV_LIVE_MIGRATABLE
- Sev
Live Migratable V2 - SEV_LIVE_MIGRATABLE_V2
- Sev
Snp Capable - SEV_SNP_CAPABLE
- Uefi
Compatible - UEFI_COMPATIBLE
- Virtio
Scsi Multiqueue - VIRTIO_SCSI_MULTIQUEUE
- Windows
- WINDOWS
- Feature
Type Unspecified - FEATURE_TYPE_UNSPECIFIED
- Gvnic
- GVNIC
- Multi
Ip Subnet - MULTI_IP_SUBNET
- Secure
Boot - SECURE_BOOT
- Sev
Capable - SEV_CAPABLE
- Sev
Live Migratable - SEV_LIVE_MIGRATABLE
- Sev
Live Migratable V2 - SEV_LIVE_MIGRATABLE_V2
- Sev
Snp Capable - SEV_SNP_CAPABLE
- Uefi
Compatible - UEFI_COMPATIBLE
- Virtio
Scsi Multiqueue - VIRTIO_SCSI_MULTIQUEUE
- Windows
- WINDOWS
- FEATURE_TYPE_UNSPECIFIED
- FEATURE_TYPE_UNSPECIFIED
- GVNIC
- GVNIC
- MULTI_IP_SUBNET
- MULTI_IP_SUBNET
- SECURE_BOOT
- SECURE_BOOT
- SEV_CAPABLE
- SEV_CAPABLE
- SEV_LIVE_MIGRATABLE
- SEV_LIVE_MIGRATABLE
- SEV_LIVE_MIGRATABLE_V2
- SEV_LIVE_MIGRATABLE_V2
- SEV_SNP_CAPABLE
- SEV_SNP_CAPABLE
- UEFI_COMPATIBLE
- UEFI_COMPATIBLE
- VIRTIO_SCSI_MULTIQUEUE
- VIRTIO_SCSI_MULTIQUEUE
- WINDOWS
- WINDOWS
- "FEATURE_TYPE_UNSPECIFIED"
- FEATURE_TYPE_UNSPECIFIED
- "GVNIC"
- GVNIC
- "MULTI_IP_SUBNET"
- MULTI_IP_SUBNET
- "SECURE_BOOT"
- SECURE_BOOT
- "SEV_CAPABLE"
- SEV_CAPABLE
- "SEV_LIVE_MIGRATABLE"
- SEV_LIVE_MIGRATABLE
- "SEV_LIVE_MIGRATABLE_V2"
- SEV_LIVE_MIGRATABLE_V2
- "SEV_SNP_CAPABLE"
- SEV_SNP_CAPABLE
- "UEFI_COMPATIBLE"
- UEFI_COMPATIBLE
- "VIRTIO_SCSI_MULTIQUEUE"
- VIRTIO_SCSI_MULTIQUEUE
- "WINDOWS"
- WINDOWS
RegionDiskArchitecture, RegionDiskArchitectureArgs
- Architecture
Unspecified - ARCHITECTURE_UNSPECIFIEDDefault value indicating Architecture is not set.
- Arm64
- ARM64Machines with architecture ARM64
- X8664
- X86_64Machines with architecture X86_64
- Region
Disk Architecture Architecture Unspecified - ARCHITECTURE_UNSPECIFIEDDefault value indicating Architecture is not set.
- Region
Disk Architecture Arm64 - ARM64Machines with architecture ARM64
- Region
Disk Architecture X8664 - X86_64Machines with architecture X86_64
- Architecture
Unspecified - ARCHITECTURE_UNSPECIFIEDDefault value indicating Architecture is not set.
- Arm64
- ARM64Machines with architecture ARM64
- X8664
- X86_64Machines with architecture X86_64
- Architecture
Unspecified - ARCHITECTURE_UNSPECIFIEDDefault value indicating Architecture is not set.
- Arm64
- ARM64Machines with architecture ARM64
- X8664
- X86_64Machines with architecture X86_64
- ARCHITECTURE_UNSPECIFIED
- ARCHITECTURE_UNSPECIFIEDDefault value indicating Architecture is not set.
- ARM64
- ARM64Machines with architecture ARM64
- X8664
- X86_64Machines with architecture X86_64
- "ARCHITECTURE_UNSPECIFIED"
- ARCHITECTURE_UNSPECIFIEDDefault value indicating Architecture is not set.
- "ARM64"
- ARM64Machines with architecture ARM64
- "X86_64"
- X86_64Machines with architecture X86_64
RegionDiskInterface, RegionDiskInterfaceArgs
- Nvme
- NVME
- Scsi
- SCSI
- Unspecified
- UNSPECIFIED
- Region
Disk Interface Nvme - NVME
- Region
Disk Interface Scsi - SCSI
- Region
Disk Interface Unspecified - UNSPECIFIED
- Nvme
- NVME
- Scsi
- SCSI
- Unspecified
- UNSPECIFIED
- Nvme
- NVME
- Scsi
- SCSI
- Unspecified
- UNSPECIFIED
- NVME
- NVME
- SCSI
- SCSI
- UNSPECIFIED
- UNSPECIFIED
- "NVME"
- NVME
- "SCSI"
- SCSI
- "UNSPECIFIED"
- UNSPECIFIED
RegionDiskStorageType, RegionDiskStorageTypeArgs
- Hdd
- HDD
- Ssd
- SSD
- Region
Disk Storage Type Hdd - HDD
- Region
Disk Storage Type Ssd - SSD
- Hdd
- HDD
- Ssd
- SSD
- Hdd
- HDD
- Ssd
- SSD
- HDD
- HDD
- SSD
- SSD
- "HDD"
- HDD
- "SSD"
- SSD
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0
Google Cloud Native is in preview. Google Cloud Classic is fully supported.