mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
mysql_info: fix documentation (#67)
This commit is contained in:
parent
549c7fe15a
commit
ea54a44c76
1 changed files with 2 additions and 2 deletions
|
@ -34,7 +34,7 @@ options:
|
||||||
exclude_fields:
|
exclude_fields:
|
||||||
description:
|
description:
|
||||||
- List of fields which are not needed to collect.
|
- List of fields which are not needed to collect.
|
||||||
- "Supports elements: C(db_size). Unsupported elements will be ignored"
|
- "Supports elements: C(db_size). Unsupported elements will be ignored."
|
||||||
type: list
|
type: list
|
||||||
elements: str
|
elements: str
|
||||||
version_added: '0.1.0'
|
version_added: '0.1.0'
|
||||||
|
@ -47,6 +47,7 @@ options:
|
||||||
notes:
|
notes:
|
||||||
- Calculating the size of a database might be slow, depending on the number and size of tables in it.
|
- Calculating the size of a database might be slow, depending on the number and size of tables in it.
|
||||||
To avoid this, use I(exclude_fields=db_size).
|
To avoid this, use I(exclude_fields=db_size).
|
||||||
|
- Supports C(check_mode).
|
||||||
|
|
||||||
seealso:
|
seealso:
|
||||||
- module: community.mysql.mysql_variables
|
- module: community.mysql.mysql_variables
|
||||||
|
@ -59,7 +60,6 @@ author:
|
||||||
|
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
- community.mysql.mysql
|
- community.mysql.mysql
|
||||||
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = r'''
|
EXAMPLES = r'''
|
||||||
|
|
Loading…
Add table
Reference in a new issue