Add version_added for all new features (#214)

* Add version_added: 1.0.0 for all new features added before pre-ansible-base.

* Add version_added: 1.0.0 for all new features.

* Next release will be 0.2.0

* Fix error.

* Remove unnecessary warnings.
This commit is contained in:
Felix Fontein 2020-06-13 15:01:19 +02:00 committed by GitHub
commit f9589d78a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
102 changed files with 220 additions and 10 deletions

View file

@ -51,6 +51,7 @@ options:
description:
- The ID of the System, Manager or Chassis to modify
type: str
version_added: '0.2.0'
author: "Jose Delarosa (@jose-delarosa)"
'''

View file

@ -60,6 +60,7 @@ options:
- dictionary of iDRAC attribute name and value pairs to update
default: {}
type: 'dict'
version_added: '0.2.0'
timeout:
description:
- Timeout in seconds for URL requests to iDRAC controller
@ -70,6 +71,7 @@ options:
description:
- The ID of the System, Manager or Chassis to modify
type: str
version_added: '0.2.0'
author: "Jose Delarosa (@jose-delarosa)"
'''

View file

@ -93,37 +93,44 @@ options:
description:
- new update user name for account_username
type: str
version_added: '0.2.0'
account_properties:
required: false
description:
- properties of account service to update
type: dict
version_added: '0.2.0'
resource_id:
required: false
description:
- The ID of the System, Manager or Chassis to modify
type: str
version_added: '0.2.0'
update_image_uri:
required: false
description:
- The URI of the image for the update
type: str
version_added: '0.2.0'
update_protocol:
required: false
description:
- The protocol for the update
type: str
version_added: '0.2.0'
update_targets:
required: false
description:
- The list of target resource URIs to apply the update to
type: list
elements: str
version_added: '0.2.0'
update_creds:
required: false
description:
- The credentials for retrieving the update image
type: dict
version_added: '0.2.0'
suboptions:
username:
required: false
@ -140,6 +147,7 @@ options:
description:
- The options for VirtualMedia commands
type: dict
version_added: '0.2.0'
suboptions:
media_types:
required: false

View file

@ -60,6 +60,7 @@ options:
- dictionary of BIOS attributes to update
default: {}
type: dict
version_added: '0.2.0'
timeout:
description:
- Timeout in seconds for URL requests to OOB controller
@ -71,27 +72,32 @@ options:
- list of BootOptionReference strings specifying the BootOrder
default: []
type: list
version_added: '0.2.0'
network_protocols:
required: false
description:
- setting dict of manager services to update
type: dict
version_added: '0.2.0'
resource_id:
required: false
description:
- The ID of the System, Manager or Chassis to modify
type: str
version_added: '0.2.0'
nic_addr:
required: false
description:
- EthernetInterface Address string on OOB controller
default: 'null'
type: str
version_added: '0.2.0'
nic_config:
required: false
description:
- setting dict of EthernetInterface on OOB controller
type: dict
version_added: '0.2.0'
author: "Jose Delarosa (@jose-delarosa)"
'''