mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Native YAML (#3574)
This commit is contained in:
parent
53448af053
commit
ccb9cb38d9
1 changed files with 12 additions and 10 deletions
|
@ -67,18 +67,20 @@ notes:
|
|||
|
||||
EXAMPLES = '''
|
||||
# Pause the check with the ID of 12345.
|
||||
- pingdom: uid=example@example.com
|
||||
passwd=password123
|
||||
key=apipassword123
|
||||
checkid=12345
|
||||
state=paused
|
||||
- pingdom:
|
||||
uid: example@example.com
|
||||
passwd: password123
|
||||
key: apipassword123
|
||||
checkid: 12345
|
||||
state: paused
|
||||
|
||||
# Unpause the check with the ID of 12345.
|
||||
- pingdom: uid=example@example.com
|
||||
passwd=password123
|
||||
key=apipassword123
|
||||
checkid=12345
|
||||
state=running
|
||||
- pingdom:
|
||||
uid: example@example.com
|
||||
passwd: password123
|
||||
key: apipassword123
|
||||
checkid: 12345
|
||||
state: running
|
||||
'''
|
||||
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue