Class: Google::Apis::VmmigrationV1alpha1::AwsSourceVmDetails

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

Overview

Represent the source AWS VM details.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AwsSourceVmDetails

Returns a new instance of AwsSourceVmDetails.



322
323
324
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 322

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)


310
311
312
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 310

def committed_storage_bytes
  @committed_storage_bytes
end

#disksArray<Google::Apis::VmmigrationV1alpha1::AwsDiskDetails>

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



315
316
317
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 315

def disks
  @disks
end

#firmwareString

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

Returns:

  • (String)


320
321
322
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 320

def firmware
  @firmware
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



327
328
329
330
331
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 327

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)
end