summaryrefslogtreecommitdiff
path: root/notification
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2016-12-06 02:35:25 -0800
committerToshio Kuratomi <a.badger@gmail.com>2016-12-06 07:02:56 -0800
commit6c7d63b15c77126b4d6a8a7668545555578469c5 (patch)
treecd1586d5342249214c7c565ff21ee51c0c46f051 /notification
parentca3eb7c89082682ff366546577c3db36945bf5ed (diff)
downloadansible-modules-extras-6c7d63b15c77126b4d6a8a7668545555578469c5.tar.gz
Refreshed metadata for extras modules
Diffstat (limited to 'notification')
-rw-r--r--notification/campfire.py4
-rw-r--r--notification/flowdock.py4
-rw-r--r--notification/grove.py4
-rwxr-xr-xnotification/hall.py4
-rw-r--r--notification/hipchat.py4
-rw-r--r--notification/irc.py4
-rw-r--r--notification/jabber.py4
-rw-r--r--notification/mail.py4
-rw-r--r--notification/mqtt.py4
-rw-r--r--notification/nexmo.py4
-rw-r--r--notification/osx_say.py4
-rw-r--r--notification/pushbullet.py4
-rw-r--r--notification/pushover.py4
-rw-r--r--notification/rocketchat.py4
-rw-r--r--notification/sendgrid.py4
-rw-r--r--notification/slack.py4
-rw-r--r--notification/sns.py4
-rw-r--r--notification/telegram.py4
-rw-r--r--notification/twilio.py4
-rw-r--r--notification/typetalk.py4
20 files changed, 80 insertions, 0 deletions
diff --git a/notification/campfire.py b/notification/campfire.py
index 9f9c34c5..8a7b4435 100644
--- a/notification/campfire.py
+++ b/notification/campfire.py
@@ -15,6 +15,10 @@
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['preview'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: campfire
diff --git a/notification/flowdock.py b/notification/flowdock.py
index 7297ef1f..e0584295 100644
--- a/notification/flowdock.py
+++ b/notification/flowdock.py
@@ -18,6 +18,10 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['preview'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: flowdock
diff --git a/notification/grove.py b/notification/grove.py
index 9db937c0..fe16289a 100644
--- a/notification/grove.py
+++ b/notification/grove.py
@@ -16,6 +16,10 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['preview'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: grove
diff --git a/notification/hall.py b/notification/hall.py
index 162bb515..d8766412 100755
--- a/notification/hall.py
+++ b/notification/hall.py
@@ -19,6 +19,10 @@
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['preview'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
DOCUMENTATION = """
module: hall
short_description: Send notification to Hall
diff --git a/notification/hipchat.py b/notification/hipchat.py
index 9455c095..f321a6b9 100644
--- a/notification/hipchat.py
+++ b/notification/hipchat.py
@@ -15,6 +15,10 @@
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['stableinterface'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: hipchat
diff --git a/notification/irc.py b/notification/irc.py
index 765e1555..d2fa22a4 100644
--- a/notification/irc.py
+++ b/notification/irc.py
@@ -19,6 +19,10 @@
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
#
+ANSIBLE_METADATA = {'status': ['stableinterface'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: irc
diff --git a/notification/jabber.py b/notification/jabber.py
index 4da7f829..f68790fb 100644
--- a/notification/jabber.py
+++ b/notification/jabber.py
@@ -19,6 +19,10 @@
# along with Ansible. If not, see <http://www.gnu.org/licenses/>
+ANSIBLE_METADATA = {'status': ['stableinterface'],
+ 'supported_by': 'committer',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
version_added: "1.2"
diff --git a/notification/mail.py b/notification/mail.py
index f51982f3..51902f3f 100644
--- a/notification/mail.py
+++ b/notification/mail.py
@@ -18,6 +18,10 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['stableinterface'],
+ 'supported_by': 'committer',
+ 'version': '1.0'}
+
DOCUMENTATION = """
---
author: "Dag Wieers (@dagwieers)"
diff --git a/notification/mqtt.py b/notification/mqtt.py
index b28e57dc..b13124b4 100644
--- a/notification/mqtt.py
+++ b/notification/mqtt.py
@@ -19,6 +19,10 @@
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
#
+ANSIBLE_METADATA = {'status': ['preview'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: mqtt
diff --git a/notification/nexmo.py b/notification/nexmo.py
index fa6b0b22..9fafcc03 100644
--- a/notification/nexmo.py
+++ b/notification/nexmo.py
@@ -18,6 +18,10 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['preview'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
DOCUMENTATION = """
module: nexmo
short_description: Send a SMS via nexmo
diff --git a/notification/osx_say.py b/notification/osx_say.py
index 70946228..ff6d3ae0 100644
--- a/notification/osx_say.py
+++ b/notification/osx_say.py
@@ -18,6 +18,10 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['stableinterface'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: osx_say
diff --git a/notification/pushbullet.py b/notification/pushbullet.py
index 434eb1fd..ed09be8f 100644
--- a/notification/pushbullet.py
+++ b/notification/pushbullet.py
@@ -16,6 +16,10 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['preview'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
author: "Willy Barro (@willybarro)"
diff --git a/notification/pushover.py b/notification/pushover.py
index ac924193..294da075 100644
--- a/notification/pushover.py
+++ b/notification/pushover.py
@@ -20,6 +20,10 @@
###
+ANSIBLE_METADATA = {'status': ['preview'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: pushover
diff --git a/notification/rocketchat.py b/notification/rocketchat.py
index ffce7971..f7089f79 100644
--- a/notification/rocketchat.py
+++ b/notification/rocketchat.py
@@ -20,6 +20,10 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['preview'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
DOCUMENTATION = """
module: rocketchat
short_description: Send notifications to Rocket Chat
diff --git a/notification/sendgrid.py b/notification/sendgrid.py
index ac2db6b1..b0821983 100644
--- a/notification/sendgrid.py
+++ b/notification/sendgrid.py
@@ -18,6 +18,10 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['preview'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
version_added: "2.0"
diff --git a/notification/slack.py b/notification/slack.py
index 3639b6d8..3d50e89d 100644
--- a/notification/slack.py
+++ b/notification/slack.py
@@ -20,6 +20,10 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['stableinterface'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
DOCUMENTATION = """
module: slack
short_description: Send Slack notifications
diff --git a/notification/sns.py b/notification/sns.py
index 4eb79e13..8e5a07da 100644
--- a/notification/sns.py
+++ b/notification/sns.py
@@ -18,6 +18,10 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['preview'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
DOCUMENTATION = """
module: sns
short_description: Send Amazon Simple Notification Service (SNS) messages
diff --git a/notification/telegram.py b/notification/telegram.py
index a12fd469..57746cf0 100644
--- a/notification/telegram.py
+++ b/notification/telegram.py
@@ -20,6 +20,10 @@
#
+ANSIBLE_METADATA = {'status': ['preview'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
DOCUMENTATION = """
module: telegram
diff --git a/notification/twilio.py b/notification/twilio.py
index 2c7275a3..1d7e059e 100644
--- a/notification/twilio.py
+++ b/notification/twilio.py
@@ -18,6 +18,10 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['preview'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
version_added: "1.6"
diff --git a/notification/typetalk.py b/notification/typetalk.py
index 4d4cf8a2..f638be09 100644
--- a/notification/typetalk.py
+++ b/notification/typetalk.py
@@ -15,6 +15,10 @@
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['preview'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: typetalk