mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
Document module returned values
This commit is contained in:
parent
8cf6c2b749
commit
7496167be4
1 changed files with 7 additions and 1 deletions
|
@ -204,13 +204,19 @@ databases:
|
||||||
returned: if not excluded by filter
|
returned: if not excluded by filter
|
||||||
type: dict
|
type: dict
|
||||||
sample:
|
sample:
|
||||||
- { "mysql": { "size": 656594 }, "information_schema": { "size": 73728 } }
|
- { "mysql": { "size": 656594, "tables": 31 }, "information_schema": { "size": 73728, "tables": 79 } }
|
||||||
contains:
|
contains:
|
||||||
size:
|
size:
|
||||||
description: Database size in bytes.
|
description: Database size in bytes.
|
||||||
returned: if not excluded by filter
|
returned: if not excluded by filter
|
||||||
type: dict
|
type: dict
|
||||||
sample: { 'size': 656594 }
|
sample: { 'size': 656594 }
|
||||||
|
tables:
|
||||||
|
description: Count of tables and views in that database.
|
||||||
|
returned: if not excluded by filter
|
||||||
|
type: dict
|
||||||
|
sample: { 'tables': 12 }
|
||||||
|
version_added: '3.11.0'
|
||||||
settings:
|
settings:
|
||||||
description: Global settings (variables) information.
|
description: Global settings (variables) information.
|
||||||
returned: if not excluded by filter
|
returned: if not excluded by filter
|
||||||
|
|
Loading…
Add table
Reference in a new issue