mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 20:01:25 -07:00
implemented loop pausing (#17289)
* implemented loop pausing - added loop pause to changelog - only pause between iterations, avoid 1st/last - added example to docs * fixed note placement * else * added docs for loop_control: label
This commit is contained in:
parent
e6e541fcb3
commit
f39799fbcd
4 changed files with 42 additions and 0 deletions
|
@ -30,6 +30,7 @@ class LoopControl(Base):
|
|||
|
||||
_loop_var = FieldAttribute(isa='str')
|
||||
_label = FieldAttribute(isa='str')
|
||||
_pause = FieldAttribute(isa='int')
|
||||
|
||||
def __init__(self):
|
||||
super(LoopControl, self).__init__()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue