Show / Hide Table of Contents

Class InstanceBootDisk

Inheritance
System.Object
InstanceBootDisk
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.Compute.Outputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class InstanceBootDisk

Fields

View Source

AutoDelete

Whether the disk will be auto-deleted when the instance is deleted. Defaults to true.

Declaration
public readonly bool? AutoDelete
Field Value
Type Description
System.Nullable<System.Boolean>
View Source

DeviceName

Name with which the attached disk will be accessible under /dev/disk/by-id/google-*

Declaration
public readonly string DeviceName
Field Value
Type Description
System.String
View Source

DiskEncryptionKeyRaw

A 256-bit [customer-supplied encryption key] (https://cloud.google.com/compute/docs/disks/customer-supplied-encryption), encoded in RFC 4648 base64 to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.

Declaration
public readonly string DiskEncryptionKeyRaw
Field Value
Type Description
System.String
View Source

DiskEncryptionKeySha256

Declaration
public readonly string DiskEncryptionKeySha256
Field Value
Type Description
System.String
View Source

InitializeParams

Parameters for a new disk that will be created alongside the new instance. Either initialize_params or source must be set. Structure is documented below.

Declaration
public readonly InstanceBootDiskInitializeParams InitializeParams
Field Value
Type Description
InstanceBootDiskInitializeParams
View Source

KmsKeySelfLink

The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.

Declaration
public readonly string KmsKeySelfLink
Field Value
Type Description
System.String
View Source

Mode

Either "READ_ONLY" or "READ_WRITE", defaults to "READ_WRITE" If you have a persistent disk with data that you want to share between multiple instances, detach it from any read-write instances and attach it to one or more instances in read-only mode.

Declaration
public readonly string Mode
Field Value
Type Description
System.String
View Source

Source

The name or self_link of the disk to attach to this instance.

Declaration
public readonly string Source
Field Value
Type Description
System.String
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.