mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Remove unused quotes - notification/pushbullet.py (#19149)
This commit is contained in:
parent
c3887138c5
commit
2adde7a6d1
1 changed files with 12 additions and 12 deletions
|
@ -77,24 +77,24 @@ EXAMPLES = '''
|
||||||
|
|
||||||
# Sends a link to a device
|
# Sends a link to a device
|
||||||
- pushbullet:
|
- pushbullet:
|
||||||
api_key: "ABC123abc123ABC123abc123ABC123ab"
|
api_key: ABC123abc123ABC123abc123ABC123ab
|
||||||
device: "Chrome"
|
device: Chrome
|
||||||
push_type: "link"
|
push_type: link
|
||||||
title: "Ansible Documentation"
|
title: Ansible Documentation
|
||||||
body: "http://docs.ansible.com/"
|
body: http://docs.ansible.com/
|
||||||
|
|
||||||
# Sends a push notification to a channel
|
# Sends a push notification to a channel
|
||||||
- pushbullet:
|
- pushbullet:
|
||||||
api_key: "ABC123abc123ABC123abc123ABC123ab"
|
api_key: ABC123abc123ABC123abc123ABC123ab
|
||||||
channel: "my-awesome-channel"
|
channel: my-awesome-channel
|
||||||
title: "Broadcasting a message to the #my-awesome-channel folks"
|
title: Broadcasting a message to the #my-awesome-channel folks
|
||||||
|
|
||||||
# Sends a push notification with title and body to a channel
|
# Sends a push notification with title and body to a channel
|
||||||
- pushbullet:
|
- pushbullet:
|
||||||
api_key: "ABC123abc123ABC123abc123ABC123ab"
|
api_key: ABC123abc123ABC123abc123ABC123ab
|
||||||
channel: "my-awesome-channel"
|
channel: my-awesome-channel
|
||||||
title: "ALERT! Signup service is down"
|
title: ALERT! Signup service is down
|
||||||
body: "Error rate on signup service is over 90% for more than 2 minutes"
|
body: Error rate on signup service is over 90% for more than 2 minutes
|
||||||
'''
|
'''
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue