Class: Ansible::Ruby::Modules::Aireos_config
- Inherits:
-
Base
- Object
- Ansible::Ruby::Models::Base
- Base
- Ansible::Ruby::Modules::Aireos_config
- Defined in:
- lib/ansible/ruby/modules/generated/network/aireos/aireos_config.rb
Overview
AireOS does not use a block indent file syntax, so there are no sections or parents. This module provides an implementation for working with AireOS configurations in a deterministic way.
Instance Method Summary collapse
-
#after ⇒ Object?
The ordered set of commands to append to the end of the command stack if a change needs to be made.
-
#backup ⇒ :yes, ...
This argument will cause the module to create a full backup of the current C(running-config) from the remote device before any changes are made.
-
#before ⇒ String?
The ordered set of commands to push on to the command stack if a change needs to be made.
-
#diff_against ⇒ :intended, ...
When using the C(ansible-playbook –diff) command line argument the module can generate diffs against different sources.,When this option is configured as I(intended), the module will return the diff of the running-config against the configuration provided in the C(intended_config) argument.,When this option is configured as I(running), the module will return the before and after diff of the running-config with respect to any changes made to the device configuration.
-
#diff_ignore_lines ⇒ Object?
Use this argument to specify one or more lines that should be ignored during the diff.
-
#intended_config ⇒ Object?
The C(intended_config) provides the master configuration that the node should conform to and is used to check the final running-config against.
-
#lines ⇒ Array<String>, ...
The ordered set of commands that should be configured.
-
#match ⇒ :line, ...
Instructs the module on the way to perform the matching of the set of commands against the current device config.
-
#running_config ⇒ Object?
The module, by default, will connect to the remote device and retrieve the current running-config to use as a base for comparing against the contents of source.
-
#save ⇒ :yes, ...
The C(save) argument instructs the module to save the running-config to startup-config.
-
#save_when ⇒ :always, ...
When changes are made to the device running-configuration, the changes are not copied to non-volatile storage by default.
-
#src ⇒ Object?
Specifies the source path to the file that contains the configuration or configuration template to load.
Methods inherited from Base
Methods inherited from Ansible::Ruby::Models::Base
attr_option, attr_options, attribute, #initialize, remove_existing_validations, #to_h, validates
Constructor Details
This class inherits a constructor from Ansible::Ruby::Models::Base
Instance Method Details
#after ⇒ Object?
23 |
# File 'lib/ansible/ruby/modules/generated/network/aireos/aireos_config.rb', line 23 attribute :after |
#backup ⇒ :yes, ...
30 |
# File 'lib/ansible/ruby/modules/generated/network/aireos/aireos_config.rb', line 30 attribute :backup |
#before ⇒ String?
19 |
# File 'lib/ansible/ruby/modules/generated/network/aireos/aireos_config.rb', line 19 attribute :before |
#diff_against ⇒ :intended, ...
45 |
# File 'lib/ansible/ruby/modules/generated/network/aireos/aireos_config.rb', line 45 attribute :diff_against |
#diff_ignore_lines ⇒ Object?
49 |
# File 'lib/ansible/ruby/modules/generated/network/aireos/aireos_config.rb', line 49 attribute :diff_ignore_lines |
#intended_config ⇒ Object?
52 |
# File 'lib/ansible/ruby/modules/generated/network/aireos/aireos_config.rb', line 52 attribute :intended_config |
#lines ⇒ Array<String>, ...
12 |
# File 'lib/ansible/ruby/modules/generated/network/aireos/aireos_config.rb', line 12 attribute :lines |
#match ⇒ :line, ...
26 |
# File 'lib/ansible/ruby/modules/generated/network/aireos/aireos_config.rb', line 26 attribute :match |
#running_config ⇒ Object?
34 |
# File 'lib/ansible/ruby/modules/generated/network/aireos/aireos_config.rb', line 34 attribute :running_config |
#save ⇒ :yes, ...
37 |
# File 'lib/ansible/ruby/modules/generated/network/aireos/aireos_config.rb', line 37 attribute :save |
#save_when ⇒ :always, ...
41 |
# File 'lib/ansible/ruby/modules/generated/network/aireos/aireos_config.rb', line 41 attribute :save_when |
#src ⇒ Object?
16 |
# File 'lib/ansible/ruby/modules/generated/network/aireos/aireos_config.rb', line 16 attribute :src |