Class: Google::Apis::ComputeAlpha::SavedAttachedDisk

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb

Overview

An instance-attached disk resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SavedAttachedDisk

Returns a new instance of SavedAttachedDisk.



33915
33916
33917
# File 'lib/google/apis/compute_alpha/classes.rb', line 33915

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#auto_deleteBoolean Also known as: auto_delete?

Specifies whether the disk will be auto-deleted when the instance is deleted ( but not when the disk is detached from the instance). Corresponds to the JSON property autoDelete

Returns:

  • (Boolean)


33825
33826
33827
# File 'lib/google/apis/compute_alpha/classes.rb', line 33825

def auto_delete
  @auto_delete
end

#bootBoolean Also known as: boot?

Indicates that this is a boot disk. The virtual machine will use the first partition of the disk for its root filesystem. Corresponds to the JSON property boot

Returns:

  • (Boolean)


33832
33833
33834
# File 'lib/google/apis/compute_alpha/classes.rb', line 33832

def boot
  @boot
end

#device_nameString

Specifies the name of the disk attached to the source instance. Corresponds to the JSON property deviceName

Returns:

  • (String)


33838
33839
33840
# File 'lib/google/apis/compute_alpha/classes.rb', line 33838

def device_name
  @device_name
end

#disk_encryption_keyGoogle::Apis::ComputeAlpha::CustomerEncryptionKey

The encryption key for the disk. Corresponds to the JSON property diskEncryptionKey



33843
33844
33845
# File 'lib/google/apis/compute_alpha/classes.rb', line 33843

def disk_encryption_key
  @disk_encryption_key
end

#disk_size_gbFixnum

The size of the disk in base-2 GB. Corresponds to the JSON property diskSizeGb

Returns:

  • (Fixnum)


33848
33849
33850
# File 'lib/google/apis/compute_alpha/classes.rb', line 33848

def disk_size_gb
  @disk_size_gb
end

#disk_typeString

[Output Only] URL of the disk type resource. For example: projects/project/ zones/zone/diskTypes/pd-standard or pd-ssd Corresponds to the JSON property diskType

Returns:

  • (String)


33854
33855
33856
# File 'lib/google/apis/compute_alpha/classes.rb', line 33854

def disk_type
  @disk_type
end

#guest_os_featuresArray<Google::Apis::ComputeAlpha::GuestOsFeature>

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. Corresponds to the JSON property guestOsFeatures



33861
33862
33863
# File 'lib/google/apis/compute_alpha/classes.rb', line 33861

def guest_os_features
  @guest_os_features
end

#indexFixnum

Specifies zero-based index of the disk that is attached to the source instance. Corresponds to the JSON property index

Returns:

  • (Fixnum)


33866
33867
33868
# File 'lib/google/apis/compute_alpha/classes.rb', line 33866

def index
  @index
end

#interfaceString

Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. Corresponds to the JSON property interface

Returns:

  • (String)


33872
33873
33874
# File 'lib/google/apis/compute_alpha/classes.rb', line 33872

def interface
  @interface
end

#kindString

[Output Only] Type of the resource. Always compute#attachedDisk for attached disks. Corresponds to the JSON property kind

Returns:

  • (String)


33878
33879
33880
# File 'lib/google/apis/compute_alpha/classes.rb', line 33878

def kind
  @kind
end

#licensesArray<String>

[Output Only] Any valid publicly visible licenses. Corresponds to the JSON property licenses

Returns:

  • (Array<String>)


33883
33884
33885
# File 'lib/google/apis/compute_alpha/classes.rb', line 33883

def licenses
  @licenses
end

#modeString

The mode in which this disk is attached to the source instance, either READ_WRITE or READ_ONLY. Corresponds to the JSON property mode

Returns:

  • (String)


33889
33890
33891
# File 'lib/google/apis/compute_alpha/classes.rb', line 33889

def mode
  @mode
end

#sourceString

Specifies a URL of the disk attached to the source instance. Corresponds to the JSON property source

Returns:

  • (String)


33894
33895
33896
# File 'lib/google/apis/compute_alpha/classes.rb', line 33894

def source
  @source
end

#storage_bytesFixnum

[Output Only] A size of the storage used by the disk's snapshot by this machine image. Corresponds to the JSON property storageBytes

Returns:

  • (Fixnum)


33900
33901
33902
# File 'lib/google/apis/compute_alpha/classes.rb', line 33900

def storage_bytes
  @storage_bytes
end

#storage_bytes_statusString

[Output Only] An indicator whether storageBytes is in a stable state or it is being adjusted as a result of shared storage reallocation. This status can either be UPDATING, meaning the size of the snapshot is being updated, or UP_TO_DATE, meaning the size of the snapshot is up-to-date. Corresponds to the JSON property storageBytesStatus

Returns:

  • (String)


33908
33909
33910
# File 'lib/google/apis/compute_alpha/classes.rb', line 33908

def storage_bytes_status
  @storage_bytes_status
end

#typeString

Specifies the type of the attached disk, either SCRATCH or PERSISTENT. Corresponds to the JSON property type

Returns:

  • (String)


33913
33914
33915
# File 'lib/google/apis/compute_alpha/classes.rb', line 33913

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



33920
33921
33922
33923
33924
33925
33926
33927
33928
33929
33930
33931
33932
33933
33934
33935
33936
33937
# File 'lib/google/apis/compute_alpha/classes.rb', line 33920

def update!(**args)
  @auto_delete = args[:auto_delete] if args.key?(:auto_delete)
  @boot = args[:boot] if args.key?(:boot)
  @device_name = args[:device_name] if args.key?(:device_name)
  @disk_encryption_key = args[:disk_encryption_key] if args.key?(:disk_encryption_key)
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
  @disk_type = args[:disk_type] if args.key?(:disk_type)
  @guest_os_features = args[:guest_os_features] if args.key?(:guest_os_features)
  @index = args[:index] if args.key?(:index)
  @interface = args[:interface] if args.key?(:interface)
  @kind = args[:kind] if args.key?(:kind)
  @licenses = args[:licenses] if args.key?(:licenses)
  @mode = args[:mode] if args.key?(:mode)
  @source = args[:source] if args.key?(:source)
  @storage_bytes = args[:storage_bytes] if args.key?(:storage_bytes)
  @storage_bytes_status = args[:storage_bytes_status] if args.key?(:storage_bytes_status)
  @type = args[:type] if args.key?(:type)
end