mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-06 08:24:02 -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
|
@ -32,6 +32,7 @@ options:
|
|||
serial:
|
||||
description:
|
||||
- Serial Number for the new Fabric Node Member.
|
||||
type: str
|
||||
aliases: [ serial_number ]
|
||||
node_id:
|
||||
description:
|
||||
|
@ -40,20 +41,24 @@ options:
|
|||
switch:
|
||||
description:
|
||||
- Switch Name for the new Fabric Node Member.
|
||||
type: str
|
||||
aliases: [ name, switch_name ]
|
||||
description:
|
||||
description:
|
||||
- Description for the new Fabric Node Member.
|
||||
type: str
|
||||
aliases: [ descr ]
|
||||
role:
|
||||
description:
|
||||
- Role for the new Fabric Node Member.
|
||||
type: str
|
||||
aliases: [ role_name ]
|
||||
choices: [ leaf, spine, unspecified ]
|
||||
state:
|
||||
description:
|
||||
- Use C(present) or C(absent) for adding or removing.
|
||||
- Use C(query) for listing an object or multiple objects.
|
||||
type: str
|
||||
choices: [ absent, present, query ]
|
||||
default: present
|
||||
extends_documentation_fragment: aci
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue