mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 04:11:25 -07:00
ACI: Add types to modules and doc fragment (#49997)
* ACI: Add types to module doc fragment * Add types to ACI modules too
This commit is contained in:
parent
b3f062b5ca
commit
e8885ee4e8
56 changed files with 386 additions and 36 deletions
|
@ -45,13 +45,15 @@ options:
|
|||
- Using C(delete) is typically used for deleting objects.
|
||||
- Using C(get) is typically used for querying objects.
|
||||
- Using C(post) is typically used for modifying objects.
|
||||
default: get
|
||||
type: str
|
||||
choices: [ delete, get, post ]
|
||||
default: get
|
||||
aliases: [ action ]
|
||||
path:
|
||||
description:
|
||||
- URI being used to execute API calls.
|
||||
- Must end in C(.xml) or C(.json).
|
||||
type: str
|
||||
required: yes
|
||||
aliases: [ uri ]
|
||||
content:
|
||||
|
@ -60,6 +62,7 @@ options:
|
|||
- This may be convenient to template simple requests.
|
||||
- For anything complex use the C(template) lookup plugin (see examples)
|
||||
or the M(template) module with parameter C(src).
|
||||
type: str
|
||||
src:
|
||||
description:
|
||||
- Name of the absolute path of the filname that includes the body
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue