1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

modules: improve documentation (#528)

* modules: improve documentation

* Update plugins/modules/cloud/digital_ocean/digital_ocean_tag.py

Co-authored-by: Felix Fontein <felix@fontein.de>

* Update plugins/modules/database/postgresql/postgresql_privs.py

Co-authored-by: Felix Fontein <felix@fontein.de>

* Update plugins/modules/notification/slack.py

Co-authored-by: Felix Fontein <felix@fontein.de>

Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
Andrew Klychkov 2020-06-17 14:14:19 +03:00 committed by GitHub
parent 736f2ecac0
commit 09e2b89d5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View file

@ -24,7 +24,7 @@ options:
resource_id: resource_id:
description: description:
- The ID of the resource to operate on. - The ID of the resource to operate on.
- The data type of resource_id is changed from integer to string, from version 2.5. - The data type of resource_id is changed from integer to string since Ansible 2.5.
aliases: ['droplet_id'] aliases: ['droplet_id']
resource_type: resource_type:
description: description:

View file

@ -42,8 +42,8 @@ options:
description: description:
- Type of database object to set privileges on. - Type of database object to set privileges on.
- The C(default_privs) choice is available starting at version 2.7. - The C(default_privs) choice is available starting at version 2.7.
- The C(foreign_data_wrapper) and C(foreign_server) object types are available from Ansible version '2.8'. - The C(foreign_data_wrapper) and C(foreign_server) object types are available since Ansible version '2.8'.
- The C(type) choice is available from Ansible version '2.10'. - The C(type) choice is available since Ansible version '2.10'.
type: str type: str
default: table default: table
choices: [ database, default_privs, foreign_data_wrapper, foreign_server, function, choices: [ database, default_privs, foreign_data_wrapper, foreign_server, function,
@ -55,7 +55,7 @@ options:
the special valueC(ALL_IN_SCHEMA) can be provided instead to specify all the special valueC(ALL_IN_SCHEMA) can be provided instead to specify all
database objects of type I(type) in the schema specified via I(schema). database objects of type I(type) in the schema specified via I(schema).
(This also works with PostgreSQL < 9.0.) (C(ALL_IN_SCHEMA) is available (This also works with PostgreSQL < 9.0.) (C(ALL_IN_SCHEMA) is available
for C(function) and C(partition table) from version 2.8) for C(function) and C(partition table) since Ansible 2.8)
- If I(type) is C(database), this parameter can be omitted, in which case - If I(type) is C(database), this parameter can be omitted, in which case
privileges are set for the database specified via I(database). privileges are set for the database specified via I(database).
- 'If I(type) is I(function), colons (":") in object names will be - 'If I(type) is I(function), colons (":") in object names will be

View file

@ -95,7 +95,7 @@ options:
description: description:
- Allow text to use default colors - use the default of 'normal' to not send a custom color bar at the start of the message. - Allow text to use default colors - use the default of 'normal' to not send a custom color bar at the start of the message.
- Allowed values for color can be one of 'normal', 'good', 'warning', 'danger', any valid 3 digit or 6 digit hex color value. - Allowed values for color can be one of 'normal', 'good', 'warning', 'danger', any valid 3 digit or 6 digit hex color value.
- Specifying value in hex is supported from version 2.8. - Specifying value in hex is supported since Ansible 2.8.
default: 'normal' default: 'normal'
attachments: attachments:
description: description: