Skip to content

Commit

Permalink
Undo raw string chhanges
Browse files Browse the repository at this point in the history
Signed-off-by: Alina Buzachis <[email protected]>
  • Loading branch information
alinabuzachis committed Oct 9, 2024
1 parent 7342438 commit aadbe78
Show file tree
Hide file tree
Showing 12 changed files with 37 additions and 37 deletions.
6 changes: 3 additions & 3 deletions plugins/modules/controller_token.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

__metaclass__ = type

DOCUMENTATION = r"""
DOCUMENTATION = """
---
module: controller_token
author:
Expand Down Expand Up @@ -47,7 +47,7 @@
- ansible.eda.eda_controller.auths
"""

EXAMPLES = r"""
EXAMPLES = """
- name: Create AWX token
ansible.eda.controller_token:
controller_host: https://my_eda_host/
Expand All @@ -69,7 +69,7 @@
"""


RETURN = r"""
RETURN = """
id:
description: ID of the managed AWX token.
returned: when state is 'present' and successful
Expand Down
6 changes: 3 additions & 3 deletions plugins/modules/credential.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
__metaclass__ = type


DOCUMENTATION = r"""
DOCUMENTATION = """
---
module: credential
author:
Expand Down Expand Up @@ -61,7 +61,7 @@
"""


EXAMPLES = r"""
EXAMPLES = """
- name: Create an EDA Credential
ansible.eda.credential:
name: "Example Credential"
Expand All @@ -78,7 +78,7 @@
"""


RETURN = r"""
RETURN = """
id:
description: ID of the credential.
returned: when exists
Expand Down
10 changes: 5 additions & 5 deletions plugins/modules/credential_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@


EXAMPLES = """
- name: Get information about a credential
ansible.eda.credential_info:
name: "Test"
- name: Get information about a credential
ansible.eda.credential_info:
name: "Test"
- name: List all credentials
ansible.eda.credential_info:
- name: List all credentials
ansible.eda.credential_info:
"""


Expand Down
6 changes: 3 additions & 3 deletions plugins/modules/credential_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
__metaclass__ = type


DOCUMENTATION = r"""
DOCUMENTATION = """
---
module: credential_type
author:
Expand Down Expand Up @@ -53,7 +53,7 @@
"""


EXAMPLES = r"""
EXAMPLES = """
- name: Create a credential type
ansible.eda.credential_type:
name: "Test"
Expand All @@ -75,7 +75,7 @@
"""


RETURN = r"""
RETURN = """
id:
description: ID of the credential type.
returned: when exists
Expand Down
6 changes: 3 additions & 3 deletions plugins/modules/credential_type_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
__metaclass__ = type


DOCUMENTATION = r"""
DOCUMENTATION = """
---
module: credential_type_info
author:
Expand All @@ -31,7 +31,7 @@
"""


EXAMPLES = r"""
EXAMPLES = """
- name: Get information about a credential type
ansible.eda.credential_type_info:
name: "Test"
Expand All @@ -41,7 +41,7 @@
"""


RETURN = r"""
RETURN = """
credential_types:
description: Information about the credential types.
returned: always
Expand Down
6 changes: 3 additions & 3 deletions plugins/modules/decision_environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

__metaclass__ = type

DOCUMENTATION = r"""
DOCUMENTATION = """
---
module: decision_environment
author:
Expand Down Expand Up @@ -57,7 +57,7 @@
- ansible.eda.eda_controller.auths
"""

EXAMPLES = r"""
EXAMPLES = """
- name: Create EDA Decision Environment
ansible.eda.decision_environment:
controller_host: https://my_eda_host/
Expand Down Expand Up @@ -89,7 +89,7 @@
state: absent
"""

RETURN = r"""
RETURN = """
id:
description: ID of the decision environment
returned: when exists
Expand Down
6 changes: 3 additions & 3 deletions plugins/modules/decision_environment_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

__metaclass__ = type

DOCUMENTATION = r"""
DOCUMENTATION = """
---
module: decision_environment_info
author:
Expand All @@ -26,7 +26,7 @@
- ansible.eda.eda_controller.auths
"""

EXAMPLES = r"""
EXAMPLES = """
- name: List all EDA Decision Environments
ansible.eda.decision_environment_info:
controller_host: https://my_eda_host/
Expand All @@ -41,7 +41,7 @@
name: Example
"""

RETURN = r"""
RETURN = """
decision_environments:
description: List of dict containing information about decision environments
returned: when exists
Expand Down
4 changes: 2 additions & 2 deletions plugins/modules/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

__metaclass__ = type

DOCUMENTATION = r"""
DOCUMENTATION = """
---
module: project
author:
Expand Down Expand Up @@ -64,7 +64,7 @@
- ansible.eda.eda_controller.auths
"""

EXAMPLES = r"""
EXAMPLES = """
- name: Create EDA Projects
ansible.eda.project:
controller_host: https://my_eda_host/
Expand Down
6 changes: 3 additions & 3 deletions plugins/modules/project_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

__metaclass__ = type

DOCUMENTATION = r"""
DOCUMENTATION = """
---
module: project_info
author:
Expand All @@ -27,7 +27,7 @@
- ansible.eda.eda_controller.auths
"""

EXAMPLES = r"""
EXAMPLES = """
- name: List a particular project
ansible.eda.project_info:
controller_host: https://my_eda_host/
Expand All @@ -44,7 +44,7 @@
register: r
"""

RETURN = r"""
RETURN = """
projects:
description: List of dicts containing information about projects
returned: success
Expand Down
6 changes: 3 additions & 3 deletions plugins/modules/rulebook_activation.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
__metaclass__ = type


DOCUMENTATION = r"""
DOCUMENTATION = """
---
module: rulebook_activation
author:
Expand Down Expand Up @@ -143,7 +143,7 @@
not perform any modification when an existing rulebook activation is found.
"""

EXAMPLES = r"""
EXAMPLES = """
- name: Create a rulebook activation
ansible.eda.rulebook_activation:
name: "Example Rulebook Activation"
Expand Down Expand Up @@ -175,7 +175,7 @@
"""


RETURN = r"""
RETURN = """
id:
description: ID of the rulebook activation.
returned: when exists
Expand Down
6 changes: 3 additions & 3 deletions plugins/modules/rulebook_activation_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
__metaclass__ = type


DOCUMENTATION = r"""
DOCUMENTATION = """
---
module: rulebook_activation_info
author:
Expand All @@ -29,7 +29,7 @@
"""


EXAMPLES = r"""
EXAMPLES = """
- name: Get information about a rulebook activation
ansible.eda.rulebook_activation_info:
name: "Example Rulebook Activation"
Expand All @@ -39,7 +39,7 @@
"""


RETURN = r"""
RETURN = """
activations:
description: Information about rulebook activations.
returned: always
Expand Down
6 changes: 3 additions & 3 deletions plugins/modules/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

__metaclass__ = type

DOCUMENTATION = r"""
DOCUMENTATION = """
---
module: user
author:
Expand Down Expand Up @@ -77,7 +77,7 @@
- ansible.eda.eda_controller.auths
"""

EXAMPLES = r"""
EXAMPLES = """
- name: Create EDA user
ansible.eda.user:
controller_host: https://my_eda_host/
Expand Down Expand Up @@ -111,7 +111,7 @@
"""


RETURN = r"""
RETURN = """
id:
description: ID of the managed AWX token.
returned: when state is 'present' and successful
Expand Down

0 comments on commit aadbe78

Please sign in to comment.