Class: Google::Apis::VmmigrationV1::AzureVmDetails

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

AzureVmDetails describes a VM in Azure.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AzureVmDetails

Returns a new instance of AzureVmDetails.



686
687
688
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 686

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

Instance Attribute Details

#boot_optionString

The VM Boot Option. Corresponds to the JSON property bootOption

Returns:

  • (String)


623
624
625
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 623

def boot_option
  @boot_option
end

#committed_storage_mbFixnum

The total size of the storage allocated to the VM in MB. Corresponds to the JSON property committedStorageMb

Returns:

  • (Fixnum)


628
629
630
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 628

def committed_storage_mb
  @committed_storage_mb
end

#computer_nameString

The VM's ComputerName. Corresponds to the JSON property computerName

Returns:

  • (String)


633
634
635
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 633

def computer_name
  @computer_name
end

#cpu_countFixnum

The number of cpus the VM has. Corresponds to the JSON property cpuCount

Returns:

  • (Fixnum)


638
639
640
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 638

def cpu_count
  @cpu_count
end

#disk_countFixnum

The number of disks the VM has, including OS disk. Corresponds to the JSON property diskCount

Returns:

  • (Fixnum)


643
644
645
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 643

def disk_count
  @disk_count
end

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

Description of the data disks. Corresponds to the JSON property disks



648
649
650
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 648

def disks
  @disks
end

#memory_mbFixnum

The memory size of the VM in MB. Corresponds to the JSON property memoryMb

Returns:

  • (Fixnum)


653
654
655
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 653

def memory_mb
  @memory_mb
end

#os_descriptionGoogle::Apis::VmmigrationV1::OsDescription

A message describing the VM's OS. Including OS, Publisher, Offer and Plan if applicable. Corresponds to the JSON property osDescription



659
660
661
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 659

def os_description
  @os_description
end

#os_diskGoogle::Apis::VmmigrationV1::OsDisk

A message describing the OS disk. Corresponds to the JSON property osDisk



664
665
666
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 664

def os_disk
  @os_disk
end

#power_stateString

The power state of the VM at the moment list was taken. Corresponds to the JSON property powerState

Returns:

  • (String)


669
670
671
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 669

def power_state
  @power_state
end

#tagsHash<String,String>

The tags of the VM. Corresponds to the JSON property tags

Returns:

  • (Hash<String,String>)


674
675
676
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 674

def tags
  @tags
end

#vm_idString

The VM full path in Azure. Corresponds to the JSON property vmId

Returns:

  • (String)


679
680
681
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 679

def vm_id
  @vm_id
end

#vm_sizeString

VM size as configured in Azure. Determines the VM's hardware spec. Corresponds to the JSON property vmSize

Returns:

  • (String)


684
685
686
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 684

def vm_size
  @vm_size
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 691

def update!(**args)
  @boot_option = args[:boot_option] if args.key?(:boot_option)
  @committed_storage_mb = args[:committed_storage_mb] if args.key?(:committed_storage_mb)
  @computer_name = args[:computer_name] if args.key?(:computer_name)
  @cpu_count = args[:cpu_count] if args.key?(:cpu_count)
  @disk_count = args[:disk_count] if args.key?(:disk_count)
  @disks = args[:disks] if args.key?(:disks)
  @memory_mb = args[:memory_mb] if args.key?(:memory_mb)
  @os_description = args[:os_description] if args.key?(:os_description)
  @os_disk = args[:os_disk] if args.key?(:os_disk)
  @power_state = args[:power_state] if args.key?(:power_state)
  @tags = args[:tags] if args.key?(:tags)
  @vm_id = args[:vm_id] if args.key?(:vm_id)
  @vm_size = args[:vm_size] if args.key?(:vm_size)
end