mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
[stable-6] Add attributes to SAP modules (#6068)
Add attributes to SAP modules.
This commit is contained in:
@@ -13,6 +13,13 @@ module: hana_query
|
|||||||
short_description: Execute SQL on HANA
|
short_description: Execute SQL on HANA
|
||||||
version_added: 3.2.0
|
version_added: 3.2.0
|
||||||
description: This module executes SQL statements on HANA with hdbsql.
|
description: This module executes SQL statements on HANA with hdbsql.
|
||||||
|
extends_documentation_fragment:
|
||||||
|
- community.general.attributes
|
||||||
|
attributes:
|
||||||
|
check_mode:
|
||||||
|
support: none
|
||||||
|
diff_mode:
|
||||||
|
support: none
|
||||||
options:
|
options:
|
||||||
sid:
|
sid:
|
||||||
description: The system ID.
|
description: The system ID.
|
||||||
@@ -65,8 +72,6 @@ options:
|
|||||||
It is better to supply a one-element list instead to avoid mangled input.
|
It is better to supply a one-element list instead to avoid mangled input.
|
||||||
type: list
|
type: list
|
||||||
elements: str
|
elements: str
|
||||||
notes:
|
|
||||||
- Does not support C(check_mode).
|
|
||||||
author:
|
author:
|
||||||
- Rainer Leber (@rainerleber)
|
- Rainer Leber (@rainerleber)
|
||||||
'''
|
'''
|
||||||
|
|||||||
@@ -18,6 +18,13 @@ description:
|
|||||||
have these available.
|
have these available.
|
||||||
- Tasks in the task list which requires manual activities will be confirmed automatically.
|
- Tasks in the task list which requires manual activities will be confirmed automatically.
|
||||||
- This module will use the RFC package C(STC_TM_API).
|
- This module will use the RFC package C(STC_TM_API).
|
||||||
|
extends_documentation_fragment:
|
||||||
|
- community.general.attributes
|
||||||
|
attributes:
|
||||||
|
check_mode:
|
||||||
|
support: none
|
||||||
|
diff_mode:
|
||||||
|
support: none
|
||||||
|
|
||||||
requirements:
|
requirements:
|
||||||
- pyrfc >= 2.4.0
|
- pyrfc >= 2.4.0
|
||||||
@@ -87,8 +94,6 @@ options:
|
|||||||
default: false
|
default: false
|
||||||
type: bool
|
type: bool
|
||||||
|
|
||||||
notes:
|
|
||||||
- Does not support C(check_mode).
|
|
||||||
author:
|
author:
|
||||||
- Rainer Leber (@rainerleber)
|
- Rainer Leber (@rainerleber)
|
||||||
'''
|
'''
|
||||||
|
|||||||
@@ -15,6 +15,15 @@ version_added: "3.2.0"
|
|||||||
description:
|
description:
|
||||||
- Provides support for unpacking C(sar)/C(car) files with the SAPCAR binary from SAP and pulling
|
- Provides support for unpacking C(sar)/C(car) files with the SAPCAR binary from SAP and pulling
|
||||||
information back into Ansible.
|
information back into Ansible.
|
||||||
|
extends_documentation_fragment:
|
||||||
|
- community.general.attributes
|
||||||
|
attributes:
|
||||||
|
check_mode:
|
||||||
|
support: partial
|
||||||
|
details:
|
||||||
|
- Always returns C(changed=true) in check mode.
|
||||||
|
diff_mode:
|
||||||
|
support: none
|
||||||
options:
|
options:
|
||||||
path:
|
path:
|
||||||
description: The path to the SAR/CAR file.
|
description: The path to the SAR/CAR file.
|
||||||
@@ -51,8 +60,6 @@ options:
|
|||||||
type: bool
|
type: bool
|
||||||
author:
|
author:
|
||||||
- Rainer Leber (@RainerLeber)
|
- Rainer Leber (@RainerLeber)
|
||||||
notes:
|
|
||||||
- Always returns C(changed=true) in C(check_mode).
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = """
|
EXAMPLES = """
|
||||||
|
|||||||
Reference in New Issue
Block a user