diff --git a/lib/ansible/modules/network/eos/eos_vlan.py b/lib/ansible/modules/network/eos/eos_vlan.py index 1b8ac5a32a3..c1e7a3cfb33 100644 --- a/lib/ansible/modules/network/eos/eos_vlan.py +++ b/lib/ansible/modules/network/eos/eos_vlan.py @@ -48,13 +48,13 @@ options: - List of interfaces that should be associated to the VLAN. delay: description: - - Delay the play should wait to check for declaratie intent params values. + - Delay the play should wait to check for declarative intent params values. default: 10 aggregate: - description: List of VLANs definitions + description: List of VLANs definitions. purge: description: - - Purge VLANs not defined in the aggregates parameter. + - Purge VLANs not defined in the I(aggregate) parameter. default: no state: description: diff --git a/lib/ansible/modules/network/eos/eos_vrf.py b/lib/ansible/modules/network/eos/eos_vrf.py index 5100d089393..9c7798a95b4 100644 --- a/lib/ansible/modules/network/eos/eos_vrf.py +++ b/lib/ansible/modules/network/eos/eos_vrf.py @@ -51,8 +51,13 @@ options: description: List of VRFs definitions purge: description: - - Purge VRFs not defined in the aggregates parameter. + - Purge VRFs not defined in the I(aggregate) parameter. default: no + delay: + description: + - Time in seconds to wait before checking for the operational state on remote + device. This wait is applicable for operational state arguments. + default: 10 state: description: - State of the VRF configuration. diff --git a/lib/ansible/modules/network/interface/net_interface.py b/lib/ansible/modules/network/interface/net_interface.py index b25a9b8e5b9..7033030319d 100644 --- a/lib/ansible/modules/network/interface/net_interface.py +++ b/lib/ansible/modules/network/interface/net_interface.py @@ -46,15 +46,16 @@ options: choices: ['full', 'half', 'auto'] tx_rate: description: - - Transmit rate. + - Transmit rate in bits per second (bps). rx_rate: description: - - Receiver rate. + - Receiver rate in bits per second (bps). delay: description: - Time in seconds to wait before checking for the operational state on remote device. This wait is applicable for operational state argument which are I(state) with values C(up)/C(down), I(tx_rate) and I(rx_rate). + default: 10 aggregate: description: List of Interfaces definitions. purge: diff --git a/lib/ansible/modules/network/interface/net_linkagg.py b/lib/ansible/modules/network/interface/net_linkagg.py index 7c38b0282b9..45681cbef2a 100644 --- a/lib/ansible/modules/network/interface/net_linkagg.py +++ b/lib/ansible/modules/network/interface/net_linkagg.py @@ -48,7 +48,7 @@ options: description: List of link aggregation definitions. purge: description: - - Purge link aggregation groups not defined in the aggregates parameter. + - Purge link aggregation groups not defined in the I(aggregate) parameter. default: no state: description: diff --git a/lib/ansible/modules/network/ios/ios_interface.py b/lib/ansible/modules/network/ios/ios_interface.py index d3a9cd468ed..a7749b83a10 100644 --- a/lib/ansible/modules/network/ios/ios_interface.py +++ b/lib/ansible/modules/network/ios/ios_interface.py @@ -70,6 +70,7 @@ options: - Time in seconds to wait before checking for the operational state on remote device. This wait is applicable for operational state argument which are I(state) with values C(up)/C(down), I(tx_rate) and I(rx_rate). + default: 10 state: description: - State of the Interface configuration, C(up) means present and diff --git a/lib/ansible/modules/network/ios/ios_static_route.py b/lib/ansible/modules/network/ios/ios_static_route.py index ed3c08c0cbd..d9ce02fb7bf 100644 --- a/lib/ansible/modules/network/ios/ios_static_route.py +++ b/lib/ansible/modules/network/ios/ios_static_route.py @@ -50,7 +50,7 @@ options: - Admin distance of the static route. default: 1 aggregate: - description: List of static route definitions + description: List of static route definitions. state: description: - State of the static route configuration. diff --git a/lib/ansible/modules/network/ios/ios_vrf.py b/lib/ansible/modules/network/ios/ios_vrf.py index 2d0e9cdd982..e9acb2b2481 100644 --- a/lib/ansible/modules/network/ios/ios_vrf.py +++ b/lib/ansible/modules/network/ios/ios_vrf.py @@ -69,6 +69,7 @@ options: - Time in seconds to wait before checking for the operational state on remote device. version_added: "2.4" + default: 10 purge: description: - Instructs the module to consider the diff --git a/lib/ansible/modules/network/iosxr/iosxr_interface.py b/lib/ansible/modules/network/iosxr/iosxr_interface.py index 5c5fa202b76..68d7f911110 100644 --- a/lib/ansible/modules/network/iosxr/iosxr_interface.py +++ b/lib/ansible/modules/network/iosxr/iosxr_interface.py @@ -58,6 +58,7 @@ options: - Time in seconds to wait before checking for the operational state on remote device. This wait is applicable for operational state argument which are I(state) with values C(up)/C(down), I(tx_rate) and I(rx_rate). + default: 10 state: description: - State of the Interface configuration, C(up) means present and diff --git a/lib/ansible/modules/network/junos/junos_interface.py b/lib/ansible/modules/network/junos/junos_interface.py index 0fa70202542..ac39a9b05fa 100644 --- a/lib/ansible/modules/network/junos/junos_interface.py +++ b/lib/ansible/modules/network/junos/junos_interface.py @@ -55,6 +55,7 @@ options: - Time in seconds to wait before checking for the operational state on remote device. This wait is applicable for operational state argument which are I(state) with values C(up)/C(down), I(tx_rate) and I(rx_rate). + default: 10 aggregate: description: List of Interfaces definitions. state: diff --git a/lib/ansible/modules/network/layer2/net_vlan.py b/lib/ansible/modules/network/layer2/net_vlan.py index ebecb518075..df8a8cbb829 100644 --- a/lib/ansible/modules/network/layer2/net_vlan.py +++ b/lib/ansible/modules/network/layer2/net_vlan.py @@ -36,7 +36,7 @@ options: description: List of VLANs definitions. purge: description: - - Purge VLANs not defined in the aggregates parameter. + - Purge VLANs not defined in the I(aggregate) parameter. default: no state: description: diff --git a/lib/ansible/modules/network/layer3/net_l3_interface.py b/lib/ansible/modules/network/layer3/net_l3_interface.py index c4f05d4b03a..db842e50469 100644 --- a/lib/ansible/modules/network/layer3/net_l3_interface.py +++ b/lib/ansible/modules/network/layer3/net_l3_interface.py @@ -36,7 +36,7 @@ options: description: List of L3 interfaces definitions purge: description: - - Purge L3 interfaces not defined in the aggregates parameter. + - Purge L3 interfaces not defined in the I(aggregate) parameter. default: no state: description: diff --git a/lib/ansible/modules/network/layer3/net_vrf.py b/lib/ansible/modules/network/layer3/net_vrf.py index aa385b010d9..b2bca19a485 100644 --- a/lib/ansible/modules/network/layer3/net_vrf.py +++ b/lib/ansible/modules/network/layer3/net_vrf.py @@ -33,7 +33,7 @@ options: description: List of VRFs definitions purge: description: - - Purge VRFs not defined in the aggregates parameter. + - Purge VRFs not defined in the I(aggregate) parameter. default: no state: description: diff --git a/lib/ansible/modules/network/routing/net_static_route.py b/lib/ansible/modules/network/routing/net_static_route.py index aaa597b3b72..2c98bb44e48 100644 --- a/lib/ansible/modules/network/routing/net_static_route.py +++ b/lib/ansible/modules/network/routing/net_static_route.py @@ -42,7 +42,7 @@ options: description: List of static route definitions purge: description: - - Purge static routes not defined in the aggregates parameter. + - Purge static routes not defined in the I(aggregate) parameter. default: no state: description: diff --git a/lib/ansible/modules/network/system/net_logging.py b/lib/ansible/modules/network/system/net_logging.py index 3c967c030c4..0f7f7fbdc24 100644 --- a/lib/ansible/modules/network/system/net_logging.py +++ b/lib/ansible/modules/network/system/net_logging.py @@ -41,7 +41,7 @@ options: description: List of logging definitions. purge: description: - - Purge logging not defined in the aggregates parameter. + - Purge logging not defined in the I(aggregate) parameter. default: no state: description: diff --git a/lib/ansible/modules/network/vyos/vyos_interface.py b/lib/ansible/modules/network/vyos/vyos_interface.py index 8325ea61332..d2849b80b47 100644 --- a/lib/ansible/modules/network/vyos/vyos_interface.py +++ b/lib/ansible/modules/network/vyos/vyos_interface.py @@ -57,6 +57,12 @@ options: - Interface link status. default: auto choices: ['full', 'half', 'auto'] + delay: + description: + - Time in seconds to wait before checking for the operational state on remote + device. This wait is applicable for operational state argument which are + I(state) with values C(up)/C(down) and I(neighbors). + default: 10 aggregate: description: List of Interfaces definitions. state: