Method: OvirtSDK4::ReportedDevice#==

Defined in:
lib/ovirtsdk4/types.rb

#==(other) ⇒ Object

Returns true if self and other have the same attributes and values.



18628
18629
18630
18631
18632
18633
18634
# File 'lib/ovirtsdk4/types.rb', line 18628

def ==(other)
  super &&
  @ips == other.ips &&
  @mac == other.mac &&
  @type == other.type &&
  @vm == other.vm
end