class OvirtSDK4::DnsResolverConfiguration

def ==(other)


Returns `true` if `self` and `other` have the same attributes and values.
def ==(other)
  super &&
  @name_servers == other.name_servers
end

def hash


Generates a hash value for this object.
def hash
  super +
  @name_servers.hash
end

def initialize(opts = {})

Options Hash: (**opts)
  • :name_servers (Array, Array) -- The values of attribute `name_servers`.

Parameters:
  • opts (Hash) -- A hash containing the attributes of the object. The keys of the hash
def initialize(opts = {})
  super(opts)
  self.name_servers = opts[:name_servers]
end

def name_servers

Returns:
  • (Array) -
def name_servers
  @name_servers
end

def name_servers=(list)

Parameters:
  • list (Array) --
def name_servers=(list)
  @name_servers = list
end