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
|
@ -37,6 +37,7 @@ options:
|
|||
aaa_password:
|
||||
description:
|
||||
- The password of the locally-authenticated user.
|
||||
type: str
|
||||
aaa_password_lifetime:
|
||||
description:
|
||||
- The lifetime of the locally-authenticated user password.
|
||||
|
@ -48,6 +49,7 @@ options:
|
|||
aaa_user:
|
||||
description:
|
||||
- The name of the locally-authenticated user user to add.
|
||||
type: str
|
||||
aliases: [ name, user ]
|
||||
clear_password_history:
|
||||
description:
|
||||
|
@ -56,10 +58,12 @@ options:
|
|||
description:
|
||||
description:
|
||||
- Description for the AAA user.
|
||||
type: str
|
||||
aliases: [ descr ]
|
||||
email:
|
||||
description:
|
||||
- The email address of the locally-authenticated user.
|
||||
type: str
|
||||
enabled:
|
||||
description:
|
||||
- The status of the locally-authenticated user account.
|
||||
|
@ -67,6 +71,7 @@ options:
|
|||
expiration:
|
||||
description:
|
||||
- The expiration date of the locally-authenticated user account.
|
||||
type: str
|
||||
expires:
|
||||
description:
|
||||
- Whether to enable an expiration date for the locally-authenticated user account.
|
||||
|
@ -74,16 +79,20 @@ options:
|
|||
first_name:
|
||||
description:
|
||||
- The first name of the locally-authenticated user.
|
||||
type: str
|
||||
last_name:
|
||||
description:
|
||||
- The last name of the locally-authenticated user.
|
||||
type: str
|
||||
phone:
|
||||
description:
|
||||
- The phone number of the locally-authenticated user.
|
||||
type: str
|
||||
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