Class: Ansible::Ruby::Modules::Slxos_config
- Inherits:
-
Base
- Object
- Ansible::Ruby::Models::Base
- Base
- Ansible::Ruby::Modules::Slxos_config
- Defined in:
- lib/ansible/ruby/modules/generated/network/slxos/slxos_config.rb
Overview
Extreme SLX-OS configurations use a simple block indent file syntax for segmenting configuration into sections. This module provides an implementation for working with SLX-OS configuration sections 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 ⇒ Symbol?
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.
-
#defaults ⇒ :yes, ...
This argument specifies whether or not to collect all defaults when getting the remote device running config.
-
#diff_against ⇒ :running, ...
When using the C(ansible-playbook –diff) command line argument the module can generate diffs against different sources.,When this option is configure as I(startup), the module will return the diff of the running-config against the startup-config.,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 ⇒ Array<String>, ...
Use this argument to specify one or more lines that should be ignored during the diff.
-
#intended_config ⇒ String?
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 in the section.
-
#match ⇒ :line, ...
Instructs the module on the way to perform the matching of the set of commands against the current device config.
-
#multiline_delimiter ⇒ String?
This argument is used when pushing a multiline configuration element to the SLX-OS device.
-
#parents ⇒ String?
The ordered set of parents that uniquely identify the section or hierarchy the commands should be checked against.
-
#replace ⇒ :line, ...
Instructs the module on the way to perform the configuration on the device.
-
#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_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?
27 |
# File 'lib/ansible/ruby/modules/generated/network/slxos/slxos_config.rb', line 27 attribute :after |
#backup ⇒ Symbol?
42 |
# File 'lib/ansible/ruby/modules/generated/network/slxos/slxos_config.rb', line 42 attribute :backup |
#before ⇒ String?
23 |
# File 'lib/ansible/ruby/modules/generated/network/slxos/slxos_config.rb', line 23 attribute :before |
#defaults ⇒ :yes, ...
49 |
# File 'lib/ansible/ruby/modules/generated/network/slxos/slxos_config.rb', line 49 attribute :defaults |
#diff_against ⇒ :running, ...
57 |
# File 'lib/ansible/ruby/modules/generated/network/slxos/slxos_config.rb', line 57 attribute :diff_against |
#diff_ignore_lines ⇒ Array<String>, ...
61 |
# File 'lib/ansible/ruby/modules/generated/network/slxos/slxos_config.rb', line 61 attribute :diff_ignore_lines |
#intended_config ⇒ String?
65 |
# File 'lib/ansible/ruby/modules/generated/network/slxos/slxos_config.rb', line 65 attribute :intended_config |
#lines ⇒ Array<String>, ...
12 |
# File 'lib/ansible/ruby/modules/generated/network/slxos/slxos_config.rb', line 12 attribute :lines |
#match ⇒ :line, ...
30 |
# File 'lib/ansible/ruby/modules/generated/network/slxos/slxos_config.rb', line 30 attribute :match |
#multiline_delimiter ⇒ String?
38 |
# File 'lib/ansible/ruby/modules/generated/network/slxos/slxos_config.rb', line 38 attribute :multiline_delimiter |
#parents ⇒ String?
16 |
# File 'lib/ansible/ruby/modules/generated/network/slxos/slxos_config.rb', line 16 attribute :parents |
#replace ⇒ :line, ...
34 |
# File 'lib/ansible/ruby/modules/generated/network/slxos/slxos_config.rb', line 34 attribute :replace |
#running_config ⇒ Object?
46 |
# File 'lib/ansible/ruby/modules/generated/network/slxos/slxos_config.rb', line 46 attribute :running_config |
#save_when ⇒ :always, ...
53 |
# File 'lib/ansible/ruby/modules/generated/network/slxos/slxos_config.rb', line 53 attribute :save_when |
#src ⇒ Object?
20 |
# File 'lib/ansible/ruby/modules/generated/network/slxos/slxos_config.rb', line 20 attribute :src |