Class InstanceAttachedDiskArgs
Inheritance
System.Object
InstanceAttachedDiskArgs
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()
Assembly: Pulumi.Gcp.dll
public sealed class InstanceAttachedDiskArgs : ResourceArgs
Constructors
View Source
Declaration
public InstanceAttachedDiskArgs()
Properties
View Source
Name with which the attached disk will be accessible
under /dev/disk/by-id/google-*
Declaration
public Input<string> DeviceName { get; set; }
Property Value
| Type |
Description |
| Input<System.String> |
|
View Source
Declaration
public Input<string> DiskEncryptionKeyRaw { get; set; }
Property Value
| Type |
Description |
| Input<System.String> |
|
View Source
Declaration
public Input<string> DiskEncryptionKeySha256 { get; set; }
Property Value
| Type |
Description |
| Input<System.String> |
|
View Source
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 Input<string> KmsKeySelfLink { get; set; }
Property Value
| Type |
Description |
| Input<System.String> |
|
View Source
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 Input<string> Mode { get; set; }
Property Value
| Type |
Description |
| Input<System.String> |
|
View Source
The name or self_link of the disk to attach to this instance.
Declaration
public Input<string> Source { get; set; }
Property Value
| Type |
Description |
| Input<System.String> |
|