Class: Ansible::Ruby::Modules::Bigip_config
- Inherits:
-
Base
- Object
- Ansible::Ruby::Models::Base
- Base
- Ansible::Ruby::Modules::Bigip_config
- Defined in:
- lib/ansible/ruby/modules/generated/network/f5/bigip_config.rb
Overview
Manages a BIG-IP configuration by allowing TMSH commands that modify running configuration, or merge SCF formatted files into the running configuration. Additionally, this module is of significant importance because it allows you to save your running configuration to disk. Since the F5 module only manipulate running configuration, it is important that you utilize this module to save that running config.
Instance Method Summary collapse
-
#merge_content ⇒ String?
Loads the specified configuration that you want to merge into the running configuration.
-
#reset ⇒ Symbol?
Loads the default configuration on the device.,If this option is specified, the default configuration will be loaded before any commands or other provided configuration is run.
-
#save ⇒ Boolean?
The C(save) argument instructs the module to save the running-config to startup-config.,This operation is performed after any changes are made to the current running config.
-
#verify ⇒ Symbol?
Validates the specified configuration to see whether they are valid to replace the running configuration.,The running configuration will not be changed.,When this parameter is set to C(yes), no change will be reported by the module.
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
#merge_content ⇒ String?
Returns Loads the specified configuration that you want to merge into the running configuration. This is equivalent to using the C(tmsh) command C(load sys config from-terminal merge).,If you need to read configuration from a file or template, use Ansible’s C(file) or C(template) lookup plugins respectively.
20 |
# File 'lib/ansible/ruby/modules/generated/network/f5/bigip_config.rb', line 20 attribute :merge_content |
#reset ⇒ Symbol?
Returns Loads the default configuration on the device.,If this option is specified, the default configuration will be loaded before any commands or other provided configuration is run.
16 |
# File 'lib/ansible/ruby/modules/generated/network/f5/bigip_config.rb', line 16 attribute :reset |
#save ⇒ Boolean?
Returns The C(save) argument instructs the module to save the running-config to startup-config.,This operation is performed after any changes are made to the current running config. If no changes are made, the configuration is still saved to the startup config.,This option will always cause the module to return changed.
12 |
# File 'lib/ansible/ruby/modules/generated/network/f5/bigip_config.rb', line 12 attribute :save |
#verify ⇒ Symbol?
Returns Validates the specified configuration to see whether they are valid to replace the running configuration.,The running configuration will not be changed.,When this parameter is set to C(yes), no change will be reported by the module.
24 |
# File 'lib/ansible/ruby/modules/generated/network/f5/bigip_config.rb', line 24 attribute :verify |