mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 20:31:27 -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
|
@ -34,37 +34,44 @@ options:
|
|||
contract:
|
||||
description:
|
||||
- The name of the contract.
|
||||
type: str
|
||||
required: yes
|
||||
aliases: [ contract_name, name ]
|
||||
description:
|
||||
description:
|
||||
- Description for the contract.
|
||||
type: str
|
||||
aliases: [ descr ]
|
||||
tenant:
|
||||
description:
|
||||
- The name of the tenant.
|
||||
type: str
|
||||
required: yes
|
||||
aliases: [ tenant_name ]
|
||||
scope:
|
||||
description:
|
||||
- The scope of a service contract.
|
||||
- The APIC defaults to C(context) when unset during creation.
|
||||
type: str
|
||||
choices: [ application-profile, context, global, tenant ]
|
||||
priority:
|
||||
description:
|
||||
- The desired QoS class to be used.
|
||||
- The APIC defaults to C(unspecified) when unset during creation.
|
||||
type: str
|
||||
choices: [ level1, level2, level3, unspecified ]
|
||||
dscp:
|
||||
description:
|
||||
- The target Differentiated Service (DSCP) value.
|
||||
- The APIC defaults to C(unspecified) when unset during creation.
|
||||
type: str
|
||||
choices: [ AF11, AF12, AF13, AF21, AF22, AF23, AF31, AF32, AF33, AF41, AF42, AF43, CS0, CS1, CS2, CS3, CS4, CS5, CS6, CS7, EF, VA, unspecified ]
|
||||
aliases: [ target ]
|
||||
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