mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-22 18:31:25 -07:00
[PR #8628/cac55beb backport][stable-9] Type options of callback plugins (#8663)
Type options of callback plugins (#8628)
Type options of callback plugins.
(cherry picked from commit cac55beb4f
)
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
2261bd62de
commit
a89ca23ecc
12 changed files with 35 additions and 0 deletions
|
@ -25,6 +25,7 @@ DOCUMENTATION = '''
|
|||
options:
|
||||
token:
|
||||
description: HipChat API token for v1 or v2 API.
|
||||
type: str
|
||||
required: true
|
||||
env:
|
||||
- name: HIPCHAT_TOKEN
|
||||
|
@ -33,6 +34,10 @@ DOCUMENTATION = '''
|
|||
key: token
|
||||
api_version:
|
||||
description: HipChat API version, v1 or v2.
|
||||
type: str
|
||||
choices:
|
||||
- v1
|
||||
- v2
|
||||
required: false
|
||||
default: v1
|
||||
env:
|
||||
|
@ -42,6 +47,7 @@ DOCUMENTATION = '''
|
|||
key: api_version
|
||||
room:
|
||||
description: HipChat room to post in.
|
||||
type: str
|
||||
default: ansible
|
||||
env:
|
||||
- name: HIPCHAT_ROOM
|
||||
|
@ -50,6 +56,7 @@ DOCUMENTATION = '''
|
|||
key: room
|
||||
from:
|
||||
description: Name to post as
|
||||
type: str
|
||||
default: ansible
|
||||
env:
|
||||
- name: HIPCHAT_FROM
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue