[PR #10398/717ef511 backport][stable-11] doc style adjustments: modules [efgh]* (#10401)

doc style adjustments: modules [efgh]* (#10398)

* doc style adjustments: modules e*

* doc style adjustments: modules f*

* doc style adjustments: modules g*

* doc style adjustments: modules h*

* Update plugins/modules/easy_install.py



---------


(cherry picked from commit 717ef51137)

Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
patchback[bot] 2025-07-13 17:36:27 +02:00 committed by GitHub
commit 1ba0a31328
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
46 changed files with 147 additions and 168 deletions

View file

@ -28,7 +28,7 @@ extends_documentation_fragment:
- community.general.attributes
notes:
- Access tokens can not be changed. If a parameter needs to be changed, an acceess token has to be recreated. Whether tokens
will be recreated is controlled by the O(recreate) option, which defaults to V(never).
are recreated or not is controlled by the O(recreate) option, which defaults to V(never).
- Token string is contained in the result only when access token is created or recreated. It can not be fetched afterwards.
- Token matching is done by comparing O(name) option.
attributes:
@ -79,17 +79,17 @@ options:
required: true
recreate:
description:
- Whether the access token will be recreated if it already exists.
- When V(never) the token will never be recreated.
- When V(always) the token will always be recreated.
- When V(state_change) the token will be recreated if there is a difference between desired state and actual state.
- Whether the access token is recreated if it already exists.
- When V(never) the token is never recreated.
- When V(always) the token is always recreated.
- When V(state_change) the token is recreated if there is a difference between desired state and actual state.
type: str
choices: ["never", "always", "state_change"]
default: never
state:
description:
- When V(present) the access token will be added to the project if it does not exist.
- When V(absent) it will be removed from the project if it exists.
- When V(present) the access token is added to the project if it does not exist.
- When V(absent) it is removed from the project if it exists.
default: present
type: str
choices: ["present", "absent"]