[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

@ -10,8 +10,7 @@ from __future__ import absolute_import, division, print_function
__metaclass__ = type
DOCUMENTATION = r'''
---
DOCUMENTATION = r"""
module: influxdb_user
short_description: Manage InfluxDB users
description:
@ -44,7 +43,7 @@ options:
state:
description:
- State of the user.
choices: [ absent, present ]
choices: [absent, present]
default: present
type: str
grants:
@ -58,10 +57,9 @@ options:
extends_documentation_fragment:
- community.general.influxdb
- community.general.attributes
"""
'''
EXAMPLES = r'''
EXAMPLES = r"""
- name: Create a user on localhost using default login credentials
community.general.influxdb_user:
user_name: john
@ -101,11 +99,11 @@ EXAMPLES = r'''
login_username: "{{ influxdb_username }}"
login_password: "{{ influxdb_password }}"
state: absent
'''
"""
RETURN = r'''
RETURN = r"""
#only defaults
'''
"""
import json