Class: Google::Apis::VmmigrationV1::PersistentDisk

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

Overview

Details of a created Persistent Disk.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PersistentDisk

Returns a new instance of PersistentDisk.



2733
2734
2735
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2733

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

Instance Attribute Details

#disk_uriString

The URI of the Persistent Disk. Corresponds to the JSON property diskUri

Returns:

  • (String)


2726
2727
2728
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2726

def disk_uri
  @disk_uri
end

#source_disk_numberFixnum

The ordinal number of the source VM disk. Corresponds to the JSON property sourceDiskNumber

Returns:

  • (Fixnum)


2731
2732
2733
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2731

def source_disk_number
  @source_disk_number
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2738
2739
2740
2741
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2738

def update!(**args)
  @disk_uri = args[:disk_uri] if args.key?(:disk_uri)
  @source_disk_number = args[:source_disk_number] if args.key?(:source_disk_number)
end