Class: OvirtSDK4::IpAddressAssignment

Inherits:
Struct
  • Object
show all
Defined in:
lib/ovirtsdk4/types.rb,
lib/ovirtsdk4/types.rb

Instance Method Summary collapse

Methods included from Type

#dig, #href, #href=

Constructor Details

#initialize(opts = {}) ⇒ IpAddressAssignment

Creates a new instance of the OvirtSDK4::IpAddressAssignment class.

Parameters:

  • opts (Hash) (defaults to: {})

    A hash containing the attributes of the object. The keys of the hash should be symbols corresponding to the names of the attributes. The values of the hash should be the values of the attributes.

Options Hash (opts):

  • :assignment_method (BootProtocol)

    The value of attribute assignment_method.

  • :ip (Ip, Hash)

    The value of attribute ip.



6542
6543
6544
6545
6546
# File 'lib/ovirtsdk4/types.rb', line 6542

def initialize(opts = {})
  super(opts)
  self.assignment_method = opts[:assignment_method]
  self.ip = opts[:ip]
end

Instance Method Details

#==(other) ⇒ Object

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



6551
6552
6553
6554
6555
# File 'lib/ovirtsdk4/types.rb', line 6551

def ==(other)
  super &&
  @assignment_method == other.assignment_method &&
  @ip == other.ip
end

#assignment_methodBootProtocol

Returns the value of the assignment_method attribute.

Returns:



6492
6493
6494
# File 'lib/ovirtsdk4/types.rb', line 6492

def assignment_method
  @assignment_method
end

#assignment_method=(value) ⇒ Object

Sets the value of the assignment_method attribute.

Parameters:



6501
6502
6503
# File 'lib/ovirtsdk4/types.rb', line 6501

def assignment_method=(value)
  @assignment_method = value
end

#hashObject

Generates a hash value for this object.



6560
6561
6562
6563
6564
# File 'lib/ovirtsdk4/types.rb', line 6560

def hash
  super +
  @assignment_method.hash +
  @ip.hash
end

#ipIp

Returns the value of the ip attribute.

Returns:



6510
6511
6512
# File 'lib/ovirtsdk4/types.rb', line 6510

def ip
  @ip
end

#ip=(value) ⇒ Object

Sets the value of the ip attribute.

The value parameter can be an instance of OvirtSDK4::Ip or a hash. If it is a hash then a new instance will be created passing the hash as the opts parameter to the constructor.

Parameters:

  • value (Ip, Hash)


6523
6524
6525
6526
6527
6528
# File 'lib/ovirtsdk4/types.rb', line 6523

def ip=(value)
  if value.is_a?(Hash)
    value = Ip.new(value)
  end
  @ip = value
end