mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
redfish: docs: Add type for options (#56809)
* add type: for options in docs for Redfish modules * add changelog fragment
This commit is contained in:
parent
a58570f1bc
commit
9151f343da
7 changed files with 43 additions and 0 deletions
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
bugfixes:
|
||||
- "add options type info for Redfish modules (https://github.com/ansible/ansible/issues/54688)"
|
|
@ -25,22 +25,27 @@ options:
|
|||
required: true
|
||||
description:
|
||||
- Category to execute on OOB controller
|
||||
type: str
|
||||
command:
|
||||
required: true
|
||||
description:
|
||||
- List of commands to execute on OOB controller
|
||||
type: list
|
||||
baseuri:
|
||||
required: true
|
||||
description:
|
||||
- Base URI of OOB controller
|
||||
type: str
|
||||
username:
|
||||
required: true
|
||||
description:
|
||||
- User for authentication with OOB controller
|
||||
type: str
|
||||
password:
|
||||
required: true
|
||||
description:
|
||||
- Password for authentication with OOB controller
|
||||
type: str
|
||||
timeout:
|
||||
description:
|
||||
- Timeout in seconds for URL requests to OOB controller
|
||||
|
|
|
@ -30,28 +30,34 @@ options:
|
|||
required: true
|
||||
description:
|
||||
- List of commands to execute on iDRAC
|
||||
type: list
|
||||
baseuri:
|
||||
required: true
|
||||
description:
|
||||
- Base URI of iDRAC
|
||||
type: str
|
||||
username:
|
||||
required: true
|
||||
description:
|
||||
- User for authentication with iDRAC
|
||||
type: str
|
||||
password:
|
||||
required: true
|
||||
description:
|
||||
- Password for authentication with iDRAC
|
||||
type: str
|
||||
manager_attribute_name:
|
||||
required: false
|
||||
description:
|
||||
- name of iDRAC attribute to update
|
||||
default: 'null'
|
||||
type: str
|
||||
manager_attribute_value:
|
||||
required: false
|
||||
description:
|
||||
- value of iDRAC attribute to update
|
||||
default: 'null'
|
||||
type: str
|
||||
timeout:
|
||||
description:
|
||||
- Timeout in seconds for URL requests to iDRAC controller
|
||||
|
|
|
@ -25,22 +25,27 @@ options:
|
|||
required: true
|
||||
description:
|
||||
- Category to execute on iDRAC controller
|
||||
type: str
|
||||
command:
|
||||
required: true
|
||||
description:
|
||||
- List of commands to execute on iDRAC controller
|
||||
type: list
|
||||
baseuri:
|
||||
required: true
|
||||
description:
|
||||
- Base URI of iDRAC controller
|
||||
type: str
|
||||
username:
|
||||
required: true
|
||||
description:
|
||||
- User for authentication with iDRAC controller
|
||||
type: str
|
||||
password:
|
||||
required: true
|
||||
description:
|
||||
- Password for authentication with iDRAC controller
|
||||
type: str
|
||||
timeout:
|
||||
description:
|
||||
- Timeout in seconds for URL requests to OOB controller
|
||||
|
|
|
@ -27,47 +27,57 @@ options:
|
|||
required: true
|
||||
description:
|
||||
- Category to execute on OOB controller
|
||||
type: str
|
||||
command:
|
||||
required: true
|
||||
description:
|
||||
- List of commands to execute on OOB controller
|
||||
type: list
|
||||
baseuri:
|
||||
required: true
|
||||
description:
|
||||
- Base URI of OOB controller
|
||||
type: str
|
||||
username:
|
||||
required: true
|
||||
description:
|
||||
- User for authentication with OOB controller
|
||||
type: str
|
||||
version_added: "2.8"
|
||||
password:
|
||||
required: true
|
||||
description:
|
||||
- Password for authentication with OOB controller
|
||||
type: str
|
||||
id:
|
||||
required: false
|
||||
description:
|
||||
- ID of user to add/delete/modify
|
||||
type: str
|
||||
version_added: "2.8"
|
||||
new_username:
|
||||
required: false
|
||||
description:
|
||||
- name of user to add/delete/modify
|
||||
type: str
|
||||
version_added: "2.8"
|
||||
new_password:
|
||||
required: false
|
||||
description:
|
||||
- password of user to add/delete/modify
|
||||
type: str
|
||||
version_added: "2.8"
|
||||
roleid:
|
||||
required: false
|
||||
description:
|
||||
- role of user to add/delete/modify
|
||||
type: str
|
||||
version_added: "2.8"
|
||||
bootdevice:
|
||||
required: false
|
||||
description:
|
||||
- bootdevice when setting boot configuration
|
||||
type: str
|
||||
timeout:
|
||||
description:
|
||||
- Timeout in seconds for URL requests to OOB controller
|
||||
|
@ -78,11 +88,13 @@ options:
|
|||
required: false
|
||||
description:
|
||||
- UEFI target when bootdevice is "UefiTarget"
|
||||
type: str
|
||||
version_added: "2.9"
|
||||
boot_next:
|
||||
required: false
|
||||
description:
|
||||
- BootNext target when bootdevice is "UefiBootNext"
|
||||
type: str
|
||||
version_added: "2.9"
|
||||
|
||||
author: "Jose Delarosa (@jose-delarosa)"
|
||||
|
|
|
@ -26,34 +26,41 @@ options:
|
|||
required: true
|
||||
description:
|
||||
- Category to execute on OOB controller
|
||||
type: str
|
||||
command:
|
||||
required: true
|
||||
description:
|
||||
- List of commands to execute on OOB controller
|
||||
type: list
|
||||
baseuri:
|
||||
required: true
|
||||
description:
|
||||
- Base URI of OOB controller
|
||||
type: str
|
||||
username:
|
||||
required: true
|
||||
description:
|
||||
- User for authentication with OOB controller
|
||||
type: str
|
||||
version_added: "2.8"
|
||||
password:
|
||||
required: true
|
||||
description:
|
||||
- Password for authentication with OOB controller
|
||||
type: str
|
||||
bios_attribute_name:
|
||||
required: false
|
||||
description:
|
||||
- name of BIOS attribute to update
|
||||
default: 'null'
|
||||
type: str
|
||||
version_added: "2.8"
|
||||
bios_attribute_value:
|
||||
required: false
|
||||
description:
|
||||
- value of BIOS attribute to update
|
||||
default: 'null'
|
||||
type: str
|
||||
version_added: "2.8"
|
||||
timeout:
|
||||
description:
|
||||
|
|
|
@ -26,23 +26,28 @@ options:
|
|||
description:
|
||||
- List of categories to execute on OOB controller
|
||||
default: ['Systems']
|
||||
type: list
|
||||
command:
|
||||
required: false
|
||||
description:
|
||||
- List of commands to execute on OOB controller
|
||||
type: list
|
||||
baseuri:
|
||||
required: true
|
||||
description:
|
||||
- Base URI of OOB controller
|
||||
type: str
|
||||
username:
|
||||
required: true
|
||||
description:
|
||||
- User for authentication with OOB controller
|
||||
type: str
|
||||
version_added: "2.8"
|
||||
password:
|
||||
required: true
|
||||
description:
|
||||
- Password for authentication with OOB controller
|
||||
type: str
|
||||
timeout:
|
||||
description:
|
||||
- Timeout in seconds for URL requests to OOB controller
|
||||
|
|
Loading…
Reference in a new issue