Class: Google::Apis::VmmigrationV1::VmwareVmDetails

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

VmwareVmDetails describes a VM in vCenter.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VmwareVmDetails

Returns a new instance of VmwareVmDetails.



2133
2134
2135
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2133

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

Instance Attribute Details

#boot_optionString

Output only. The VM Boot Option. Corresponds to the JSON property bootOption

Returns:

  • (String)


2073
2074
2075
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2073

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)


2078
2079
2080
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2078

def committed_storage_mb
  @committed_storage_mb
end

#cpu_countFixnum

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

Returns:

  • (Fixnum)


2083
2084
2085
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2083

def cpu_count
  @cpu_count
end

#datacenter_descriptionString

The descriptive name of the vCenter's datacenter this VM is contained in. Corresponds to the JSON property datacenterDescription

Returns:

  • (String)


2088
2089
2090
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2088

def datacenter_description
  @datacenter_description
end

#datacenter_idString

The id of the vCenter's datacenter this VM is contained in. Corresponds to the JSON property datacenterId

Returns:

  • (String)


2093
2094
2095
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2093

def datacenter_id
  @datacenter_id
end

#disk_countFixnum

The number of disks the VM has. Corresponds to the JSON property diskCount

Returns:

  • (Fixnum)


2098
2099
2100
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2098

def disk_count
  @disk_count
end

#display_nameString

The display name of the VM. Note that this is not necessarily unique. Corresponds to the JSON property displayName

Returns:

  • (String)


2103
2104
2105
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2103

def display_name
  @display_name
end

#guest_descriptionString

The VM's OS. See for example https://pubs.vmware.com/vi-sdk/visdk250/ ReferenceGuide/vim.vm.GuestOsDescriptor.GuestOsIdentifier.html for types of strings this might hold. Corresponds to the JSON property guestDescription

Returns:

  • (String)


2110
2111
2112
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2110

def guest_description
  @guest_description
end

#memory_mbFixnum

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

Returns:

  • (Fixnum)


2115
2116
2117
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2115

def memory_mb
  @memory_mb
end

#power_stateString

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

Returns:

  • (String)


2120
2121
2122
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2120

def power_state
  @power_state
end

#uuidString

The unique identifier of the VM in vCenter. Corresponds to the JSON property uuid

Returns:

  • (String)


2125
2126
2127
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2125

def uuid
  @uuid
end

#vm_idString

The VM's id in the source (note that this is not the MigratingVm's id). This is the moref id of the VM. Corresponds to the JSON property vmId

Returns:

  • (String)


2131
2132
2133
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2131

def vm_id
  @vm_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2138

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)
  @cpu_count = args[:cpu_count] if args.key?(:cpu_count)
  @datacenter_description = args[:datacenter_description] if args.key?(:datacenter_description)
  @datacenter_id = args[:datacenter_id] if args.key?(:datacenter_id)
  @disk_count = args[:disk_count] if args.key?(:disk_count)
  @display_name = args[:display_name] if args.key?(:display_name)
  @guest_description = args[:guest_description] if args.key?(:guest_description)
  @memory_mb = args[:memory_mb] if args.key?(:memory_mb)
  @power_state = args[:power_state] if args.key?(:power_state)
  @uuid = args[:uuid] if args.key?(:uuid)
  @vm_id = args[:vm_id] if args.key?(:vm_id)
end