Method: OvirtSDK4::MemoryPolicy#initialize
- Defined in:
- lib/ovirtsdk4/types.rb
#initialize(opts = {}) ⇒ MemoryPolicy
Creates a new instance of the OvirtSDK4::MemoryPolicy class.
10010 10011 10012 10013 10014 10015 10016 10017 |
# File 'lib/ovirtsdk4/types.rb', line 10010 def initialize(opts = {}) super(opts) self.ballooning = opts[:ballooning] self.guaranteed = opts[:guaranteed] self.max = opts[:max] self.over_commit = opts[:over_commit] self.transparent_huge_pages = opts[:transparent_huge_pages] end |