[PR #9393/84655b0d backport][stable-10] i[b-n]*.py: normalize docs (#9412)

i[b-n]*.py: normalize docs (#9393)

* i[b-n]*.py: normalize docs

* Update plugins/modules/ilo_redfish_command.py

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

---------

Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit 84655b0d0f)

Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
patchback[bot] 2024-12-26 22:44:45 +01:00 committed by GitHub
parent 0df708b15a
commit 05ba79c5fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
25 changed files with 1036 additions and 1100 deletions

View file

@ -8,8 +8,7 @@ from __future__ import absolute_import, division, print_function
__metaclass__ = type
DOCUMENTATION = r'''
---
DOCUMENTATION = r"""
module: influxdb_query
short_description: Query data points from InfluxDB
description:
@ -36,10 +35,9 @@ options:
extends_documentation_fragment:
- community.general.influxdb
- community.general.attributes
"""
'''
EXAMPLES = r'''
EXAMPLES = r"""
- name: Query connections
community.general.influxdb_query:
hostname: "{{ influxdb_ip_address }}"
@ -57,17 +55,17 @@ EXAMPLES = r'''
- name: Print results from the query
ansible.builtin.debug:
var: connection.query_results
'''
"""
RETURN = r'''
RETURN = r"""
query_results:
description: Result from the query
description: Result from the query.
returned: success
type: list
sample:
- mean: 1245.5333333333333
time: "1970-01-01T00:00:00Z"
'''
"""
from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.common.text.converters import to_native