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 = {})
(**opts)-
:name_servers(Array) -- The values of attribute `name_servers`., Array
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
-
(Array-)
def name_servers @name_servers end
def name_servers=(list)
-
list(Array) --
def name_servers=(list) @name_servers = list end