mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
(cherry picked from commit 5cb7c2e45e
)
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
6f4167fb01
commit
65dde57c1a
4 changed files with 7 additions and 6 deletions
|
@ -56,7 +56,7 @@ EXAMPLES = '''
|
||||||
|
|
||||||
RETURN = '''
|
RETURN = '''
|
||||||
_value:
|
_value:
|
||||||
description: Whether the module or action plugin denoted by the input exists.
|
description: The dictionary having the provided key-value pairs.
|
||||||
type: boolean
|
type: boolean
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
|
@ -52,7 +52,7 @@ DOCUMENTATION = '''
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
- name: Create a list of dictionaries with map and the community.general.dict filter
|
- name: Parse a CSV file's contents
|
||||||
ansible.builtin.debug:
|
ansible.builtin.debug:
|
||||||
msg: >-
|
msg: >-
|
||||||
{{ csv_data | community.genera.from_csv(dialect='unix') }}
|
{{ csv_data | community.genera.from_csv(dialect='unix') }}
|
||||||
|
|
|
@ -116,7 +116,7 @@ EXAMPLES = '''
|
||||||
|
|
||||||
RETURN = '''
|
RETURN = '''
|
||||||
_value:
|
_value:
|
||||||
description: Whether the module or action plugin denoted by the input exists.
|
description: The result of the query.
|
||||||
type: any
|
type: any
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
|
@ -54,7 +54,7 @@ DOCUMENTATION = '''
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
- name: Create a list of dictionaries with map and the community.general.dict filter
|
- name: Merge two lists
|
||||||
ansible.builtin.debug:
|
ansible.builtin.debug:
|
||||||
msg: >-
|
msg: >-
|
||||||
{{ list1 | community.general.lists_mergeby(
|
{{ list1 | community.general.lists_mergeby(
|
||||||
|
@ -92,8 +92,9 @@ EXAMPLES = '''
|
||||||
|
|
||||||
RETURN = '''
|
RETURN = '''
|
||||||
_value:
|
_value:
|
||||||
description: Whether the module or action plugin denoted by the input exists.
|
description: The merged list.
|
||||||
type: boolean
|
type: list
|
||||||
|
elements: dictionary
|
||||||
'''
|
'''
|
||||||
|
|
||||||
from ansible.errors import AnsibleFilterError
|
from ansible.errors import AnsibleFilterError
|
||||||
|
|
Loading…
Reference in a new issue