Class: Google::Apis::VmmigrationV1::VmwareSourceVmDetails

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

Represent the source Vmware VM details.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VmwareSourceVmDetails

Returns a new instance of VmwareSourceVmDetails.



3928
3929
3930
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3928

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

Instance Attribute Details

#committed_storage_bytesFixnum

The total size of the disks being migrated in bytes. Corresponds to the JSON property committedStorageBytes

Returns:

  • (Fixnum)


3910
3911
3912
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3910

def committed_storage_bytes
  @committed_storage_bytes
end

#disksArray<Google::Apis::VmmigrationV1::VmwareDiskDetails>

The disks attached to the source VM. Corresponds to the JSON property disks



3915
3916
3917
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3915

def disks
  @disks
end

#firmwareString

The firmware type of the source VM. Corresponds to the JSON property firmware

Returns:

  • (String)


3920
3921
3922
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3920

def firmware
  @firmware
end

#vm_capabilities_infoGoogle::Apis::VmmigrationV1::VmCapabilities

Migrating VM source information about the VM capabilities needed for some Compute Engine features. Corresponds to the JSON property vmCapabilitiesInfo



3926
3927
3928
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3926

def vm_capabilities_info
  @vm_capabilities_info
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3933
3934
3935
3936
3937
3938
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3933

def update!(**args)
  @committed_storage_bytes = args[:committed_storage_bytes] if args.key?(:committed_storage_bytes)
  @disks = args[:disks] if args.key?(:disks)
  @firmware = args[:firmware] if args.key?(:firmware)
  @vm_capabilities_info = args[:vm_capabilities_info] if args.key?(:vm_capabilities_info)
end