mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-23 19:01:26 -07:00
[PR #9353/70b62ed7 backport][stable-9] s[a-c]*: normalize docs (#9375)
s[a-c]*: normalize docs (#9353)
* s[a-c]*: normalize docs
* Apply suggestions from code review
Co-authored-by: Felix Fontein <felix@fontein.de>
---------
Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit 70b62ed745
)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
parent
595c105a29
commit
1ccfc3b821
29 changed files with 336 additions and 382 deletions
|
@ -11,8 +11,7 @@ from __future__ import absolute_import, division, print_function
|
|||
|
||||
__metaclass__ = type
|
||||
|
||||
DOCUMENTATION = '''
|
||||
---
|
||||
DOCUMENTATION = r"""
|
||||
module: scaleway_container_registry_info
|
||||
short_description: Scaleway Container registry info module
|
||||
version_added: 5.8.0
|
||||
|
@ -46,18 +45,18 @@ options:
|
|||
description:
|
||||
- Name of the container registry.
|
||||
required: true
|
||||
'''
|
||||
"""
|
||||
|
||||
EXAMPLES = '''
|
||||
EXAMPLES = r"""
|
||||
- name: Get a container registry info
|
||||
community.general.scaleway_container_registry_info:
|
||||
project_id: '{{ scw_project }}'
|
||||
region: fr-par
|
||||
name: my-awesome-container-registry
|
||||
register: container_registry_info_task
|
||||
'''
|
||||
"""
|
||||
|
||||
RETURN = '''
|
||||
RETURN = r"""
|
||||
container_registry:
|
||||
description: The container registry information.
|
||||
returned: always
|
||||
|
@ -77,7 +76,7 @@ container_registry:
|
|||
status: ready
|
||||
status_message: ""
|
||||
updated_at: "2022-10-14T09:51:07.949716Z"
|
||||
'''
|
||||
"""
|
||||
|
||||
from ansible_collections.community.general.plugins.module_utils.scaleway import (
|
||||
SCALEWAY_REGIONS, scaleway_argument_spec, Scaleway,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue