1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
{
"testns.testcol.yolo": {
"doc": {
"collection": "testns.testcol",
"description": [
"This is always true"
],
"filename": "./collections/ansible_collections/testns/testcol/plugins/test/yolo.yml",
"name": "yolo",
"options": {
"_input": {
"description": "does not matter",
"required": true,
"type": "raw"
}
},
"plugin_name": "testns.testcol.yolo",
"seealso": [
{
"module": "ansible.builtin.test"
},
{
"description": "A fake module",
"module": "testns.testcol.fakemodule"
},
{
"plugin": "testns.testcol.noop",
"plugin_type": "lookup"
},
{
"description": "A grouped filter.",
"plugin": "testns.testcol.grouped",
"plugin_type": "filter"
},
{
"plugin": "ansible.builtin.combine",
"plugin_type": "filter"
},
{
"description": "Read a file on the controller.",
"plugin": "ansible.builtin.file",
"plugin_type": "lookup"
},
{
"description": "See also the Ansible docsite.",
"link": "https://docs.ansible.com",
"name": "Ansible docsite"
},
{
"description": "Some foo bar.",
"ref": "foo_bar"
}
],
"short_description": "you only live once"
},
"examples": "{{ 'anything' is yolo }}\n",
"metadata": null,
"return": {
"output": {
"description": "always true",
"type": "boolean"
}
}
}
}
|