Class: Ansible::Ruby::Modules::Ios_config
- Inherits:
-
Base
- Object
- Ansible::Ruby::Models::Base
- Base
- Ansible::Ruby::Modules::Ios_config
- Defined in:
- lib/ansible/ruby/modules/generated/network/ios/ios_config.rb
Overview
Cisco IOS configurations use a simple block indent file syntax for segmenting configuration into sections. This module provides an implementation for working with IOS 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 ⇒ :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.
-
#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.
-
#force ⇒ :yes, ...
The force argument instructs the module to not consider the current devices running-config.
-
#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 IOS device.
-
#parents ⇒ Array<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 ⇒ :yes, ...
The C(save) argument instructs the module to save the running- config to the startup-config at the conclusion of the module running.
-
#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/ios/ios_config.rb', line 27 attribute :after |
#backup ⇒ :yes, ...
46 |
# File 'lib/ansible/ruby/modules/generated/network/ios/ios_config.rb', line 46 attribute :backup |
#before ⇒ String?
23 |
# File 'lib/ansible/ruby/modules/generated/network/ios/ios_config.rb', line 23 attribute :before |
#defaults ⇒ :yes, ...
53 |
# File 'lib/ansible/ruby/modules/generated/network/ios/ios_config.rb', line 53 attribute :defaults |
#diff_against ⇒ :running, ...
65 |
# File 'lib/ansible/ruby/modules/generated/network/ios/ios_config.rb', line 65 attribute :diff_against |
#diff_ignore_lines ⇒ Array<String>, ...
69 |
# File 'lib/ansible/ruby/modules/generated/network/ios/ios_config.rb', line 69 attribute :diff_ignore_lines |
#force ⇒ :yes, ...
42 |
# File 'lib/ansible/ruby/modules/generated/network/ios/ios_config.rb', line 42 attribute :force |
#intended_config ⇒ String?
73 |
# File 'lib/ansible/ruby/modules/generated/network/ios/ios_config.rb', line 73 attribute :intended_config |
#lines ⇒ Array<String>, ...
12 |
# File 'lib/ansible/ruby/modules/generated/network/ios/ios_config.rb', line 12 attribute :lines |
#match ⇒ :line, ...
30 |
# File 'lib/ansible/ruby/modules/generated/network/ios/ios_config.rb', line 30 attribute :match |
#multiline_delimiter ⇒ String?
38 |
# File 'lib/ansible/ruby/modules/generated/network/ios/ios_config.rb', line 38 attribute :multiline_delimiter |
#parents ⇒ Array<String>, ...
16 |
# File 'lib/ansible/ruby/modules/generated/network/ios/ios_config.rb', line 16 attribute :parents |
#replace ⇒ :line, ...
34 |
# File 'lib/ansible/ruby/modules/generated/network/ios/ios_config.rb', line 34 attribute :replace |
#running_config ⇒ Object?
50 |
# File 'lib/ansible/ruby/modules/generated/network/ios/ios_config.rb', line 50 attribute :running_config |
#save ⇒ :yes, ...
57 |
# File 'lib/ansible/ruby/modules/generated/network/ios/ios_config.rb', line 57 attribute :save |
#save_when ⇒ :always, ...
61 |
# File 'lib/ansible/ruby/modules/generated/network/ios/ios_config.rb', line 61 attribute :save_when |
#src ⇒ Object?
20 |
# File 'lib/ansible/ruby/modules/generated/network/ios/ios_config.rb', line 20 attribute :src |