mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 12:21:26 -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,27 +32,33 @@ options:
|
|||
tenant:
|
||||
description:
|
||||
- The name of the Tenant the VRF should belong to.
|
||||
type: str
|
||||
aliases: [ tenant_name ]
|
||||
vrf:
|
||||
description:
|
||||
- The name of the VRF.
|
||||
type: str
|
||||
aliases: [ context, name, vrf_name ]
|
||||
policy_control_direction:
|
||||
description:
|
||||
- Determines if the policy should be enforced by the fabric on ingress or egress.
|
||||
type: str
|
||||
choices: [ egress, ingress ]
|
||||
policy_control_preference:
|
||||
description:
|
||||
- Determines if the fabric should enforce contract policies to allow routing and packet forwarding.
|
||||
type: str
|
||||
choices: [ enforced, unenforced ]
|
||||
description:
|
||||
description:
|
||||
- The description for the VRF.
|
||||
type: str
|
||||
aliases: [ descr ]
|
||||
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