Show / Hide Table of Contents

Class InstanceAttachedDiskArgs

Inheritance
System.Object
InputArgs
ResourceArgs
InstanceAttachedDiskArgs
Inherited Members
ResourceArgs.Empty
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.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class InstanceAttachedDiskArgs : ResourceArgs

Constructors

View Source

InstanceAttachedDiskArgs()

Declaration
public InstanceAttachedDiskArgs()

Properties

View Source

DeviceName

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

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 Input<string> DiskEncryptionKeyRaw { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DiskEncryptionKeySha256

Declaration
public Input<string> DiskEncryptionKeySha256 { get; set; }
Property Value
Type Description
Input<System.String>
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 Input<string> KmsKeySelfLink { get; set; }
Property Value
Type Description
Input<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 Input<string> Mode { get; set; }
Property Value
Type Description
Input<System.String>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.