Class: Ansible::Ruby::Modules::Virt_pool
- Inherits:
-
Base
- Object
- Ansible::Ruby::Models::Base
- Base
- Ansible::Ruby::Modules::Virt_pool
- Defined in:
- lib/ansible/ruby/modules/generated/cloud/misc/virt_pool.rb
Overview
Manage I(libvirt) storage pools.
Instance Method Summary collapse
-
#autostart ⇒ Symbol?
Specify if a given storage pool should be started automatically on system boot.
-
#command ⇒ :define, ...
In addition to state management, various non-idempotent commands are available.
-
#mode ⇒ :new, ...
Pass additional parameters to ‘build’ or ‘delete’ commands.
-
#name ⇒ String?
Name of the storage pool being managed.
-
#state ⇒ :active, ...
Specify which state you want a storage pool to be in.
-
#uri ⇒ String?
I(libvirt) connection uri.
-
#xml ⇒ String?
XML document used with the define command.
Methods inherited from Base
Methods inherited from Ansible::Ruby::Models::Base
attr_option, attr_options, attribute, fix_inclusion, #initialize, remove_existing_validations, #to_h, validates
Constructor Details
This class inherits a constructor from Ansible::Ruby::Models::Base
Instance Method Details
#autostart ⇒ Symbol?
Returns Specify if a given storage pool should be started automatically on system boot.
24 |
# File 'lib/ansible/ruby/modules/generated/cloud/misc/virt_pool.rb', line 24 attribute :autostart |
#command ⇒ :define, ...
Returns in addition to state management, various non-idempotent commands are available. See examples.
20 |
# File 'lib/ansible/ruby/modules/generated/cloud/misc/virt_pool.rb', line 20 attribute :command |
#mode ⇒ :new, ...
Returns Pass additional parameters to ‘build’ or ‘delete’ commands.
36 |
# File 'lib/ansible/ruby/modules/generated/cloud/misc/virt_pool.rb', line 36 attribute :mode |
#name ⇒ String?
Returns name of the storage pool being managed. Note that pool must be previously defined with xml.
12 |
# File 'lib/ansible/ruby/modules/generated/cloud/misc/virt_pool.rb', line 12 attribute :name |
#state ⇒ :active, ...
Returns specify which state you want a storage pool to be in. If ‘active’, pool will be started. If ‘present’, ensure that pool is present but do not change its state; if it’s missing, you need to specify xml argument. If ‘inactive’, pool will be stopped. If ‘undefined’ or ‘absent’, pool will be removed from I(libvirt) configuration. If ‘deleted’, pool contents will be deleted and then pool undefined.
16 |
# File 'lib/ansible/ruby/modules/generated/cloud/misc/virt_pool.rb', line 16 attribute :state |
#uri ⇒ String?
Returns I(libvirt) connection uri.
28 |
# File 'lib/ansible/ruby/modules/generated/cloud/misc/virt_pool.rb', line 28 attribute :uri |
#xml ⇒ String?
Returns XML document used with the define command.
32 |
# File 'lib/ansible/ruby/modules/generated/cloud/misc/virt_pool.rb', line 32 attribute :xml |