vmware_httpapi: version_added==2.10
`vmware_httpapi` hierachy will actually be released with Ansible 2.10, not 2.9. This commit fixes the `version_added` field.
This commit is contained in:
parent
0706782e4e
commit
1fd79240db
9 changed files with 21 additions and 21 deletions
|
@ -20,7 +20,7 @@ description:
|
||||||
- This module can be used to gather information about the four modes of accessing the VCSA.
|
- This module can be used to gather information about the four modes of accessing the VCSA.
|
||||||
- This module is based on REST API and uses httpapi connection plugin for persistent connection.
|
- This module is based on REST API and uses httpapi connection plugin for persistent connection.
|
||||||
- The Appliance API works against the VCSA and uses the "administrator@vsphere.local" user.
|
- The Appliance API works against the VCSA and uses the "administrator@vsphere.local" user.
|
||||||
version_added: '2.9'
|
version_added: '2.10'
|
||||||
author:
|
author:
|
||||||
- Paul Knight (@n3pjk)
|
- Paul Knight (@n3pjk)
|
||||||
notes:
|
notes:
|
||||||
|
|
|
@ -20,7 +20,7 @@ description:
|
||||||
- This module can be used to gather information about VCSA health.
|
- This module can be used to gather information about VCSA health.
|
||||||
- This module is based on REST API and uses httpapi connection plugin for persistent connection.
|
- This module is based on REST API and uses httpapi connection plugin for persistent connection.
|
||||||
- The Appliance API works against the VCSA and uses the "administrator@vsphere.local" user.
|
- The Appliance API works against the VCSA and uses the "administrator@vsphere.local" user.
|
||||||
version_added: '2.9'
|
version_added: '2.10'
|
||||||
author:
|
author:
|
||||||
- Paul Knight (@n3pjk)
|
- Paul Knight (@n3pjk)
|
||||||
notes:
|
notes:
|
||||||
|
|
|
@ -20,7 +20,7 @@ description:
|
||||||
- This module can be used to gather information about a specific category.
|
- This module can be used to gather information about a specific category.
|
||||||
- This module can also gather facts about all categories.
|
- This module can also gather facts about all categories.
|
||||||
- This module is based on REST API and uses httpapi connection plugin for persistent connection.
|
- This module is based on REST API and uses httpapi connection plugin for persistent connection.
|
||||||
version_added: '2.9'
|
version_added: '2.10'
|
||||||
author:
|
author:
|
||||||
- Paul Knight (@n3pjk)
|
- Paul Knight (@n3pjk)
|
||||||
notes:
|
notes:
|
||||||
|
|
|
@ -20,7 +20,7 @@ short_description: Gathers info about various VMware inventory objects using RES
|
||||||
description:
|
description:
|
||||||
- This module can be used to gather information about various VMware inventory objects.
|
- This module can be used to gather information about various VMware inventory objects.
|
||||||
- This module is based on REST API and uses httpapi connection plugin for persistent connection.
|
- This module is based on REST API and uses httpapi connection plugin for persistent connection.
|
||||||
version_added: '2.9'
|
version_added: '2.10'
|
||||||
author:
|
author:
|
||||||
- Abhijeet Kasurde (@Akasurde)
|
- Abhijeet Kasurde (@Akasurde)
|
||||||
- Paul Knight (@n3pjk)
|
- Paul Knight (@n3pjk)
|
||||||
|
|
|
@ -15,21 +15,21 @@ options:
|
||||||
- Indicates whether get_id() can return multiple IDs for a given name.
|
- Indicates whether get_id() can return multiple IDs for a given name.
|
||||||
- Typically, this should be false when updating or deleting; otherwise, all named objects could be affected.
|
- Typically, this should be false when updating or deleting; otherwise, all named objects could be affected.
|
||||||
required: true
|
required: true
|
||||||
version_added: "2.9"
|
version_added: "2.10"
|
||||||
type: bool
|
type: bool
|
||||||
log_level:
|
log_level:
|
||||||
description:
|
description:
|
||||||
- If ANSIBLE_DEBUG is set, this will be forced to 'debug', but can be user-defined otherwise.
|
- If ANSIBLE_DEBUG is set, this will be forced to 'debug', but can be user-defined otherwise.
|
||||||
required: True
|
required: True
|
||||||
choices: ['debug', 'info', 'normal']
|
choices: ['debug', 'info', 'normal']
|
||||||
version_added: "2.9"
|
version_added: "2.10"
|
||||||
type: str
|
type: str
|
||||||
default: 'normal'
|
default: 'normal'
|
||||||
status_code:
|
status_code:
|
||||||
description:
|
description:
|
||||||
- A list of integer status codes considered to be successful for the this module.
|
- A list of integer status codes considered to be successful for the this module.
|
||||||
required: true
|
required: true
|
||||||
version_added: "2.9"
|
version_added: "2.10"
|
||||||
type: list
|
type: list
|
||||||
default: [200]
|
default: [200]
|
||||||
'''
|
'''
|
||||||
|
|
|
@ -15,27 +15,27 @@ options:
|
||||||
- Indicates whether get_id() can return multiple IDs for a given name.
|
- Indicates whether get_id() can return multiple IDs for a given name.
|
||||||
- Typically, this should be false when updating or deleting; otherwise, all named objects could be affected.
|
- Typically, this should be false when updating or deleting; otherwise, all named objects could be affected.
|
||||||
required: true
|
required: true
|
||||||
version_added: "2.9"
|
version_added: "2.10"
|
||||||
type: bool
|
type: bool
|
||||||
filters:
|
filters:
|
||||||
description:
|
description:
|
||||||
- The key/value pairs describing filters to be applied to the request(s) made by this instance.
|
- The key/value pairs describing filters to be applied to the request(s) made by this instance.
|
||||||
required: false
|
required: false
|
||||||
version_added: "2.9"
|
version_added: "2.10"
|
||||||
type: dict
|
type: dict
|
||||||
log_level:
|
log_level:
|
||||||
description:
|
description:
|
||||||
- If ANSIBLE_DEBUG is set, this will be forced to 'debug', but can be user-defined otherwise.
|
- If ANSIBLE_DEBUG is set, this will be forced to 'debug', but can be user-defined otherwise.
|
||||||
required: True
|
required: True
|
||||||
choices: ['debug', 'info', 'normal']
|
choices: ['debug', 'info', 'normal']
|
||||||
version_added: "2.9"
|
version_added: "2.10"
|
||||||
type: str
|
type: str
|
||||||
default: 'normal'
|
default: 'normal'
|
||||||
status_code:
|
status_code:
|
||||||
description:
|
description:
|
||||||
- A list of integer status codes considered to be successful for the this module.
|
- A list of integer status codes considered to be successful for the this module.
|
||||||
required: true
|
required: true
|
||||||
version_added: "2.9"
|
version_added: "2.10"
|
||||||
type: list
|
type: list
|
||||||
default: [200]
|
default: [200]
|
||||||
'''
|
'''
|
||||||
|
|
|
@ -15,20 +15,20 @@ options:
|
||||||
- Indicates whether get_id() can return multiple IDs for a given name.
|
- Indicates whether get_id() can return multiple IDs for a given name.
|
||||||
- Typically, this should be false when updating or deleting; otherwise, all named objects could be affected.
|
- Typically, this should be false when updating or deleting; otherwise, all named objects could be affected.
|
||||||
required: true
|
required: true
|
||||||
version_added: "2.9"
|
version_added: "2.10"
|
||||||
type: bool
|
type: bool
|
||||||
filters:
|
filters:
|
||||||
description:
|
description:
|
||||||
- The key/value pairs describing filters to be applied to the request(s) made by this instance.
|
- The key/value pairs describing filters to be applied to the request(s) made by this instance.
|
||||||
required: false
|
required: false
|
||||||
version_added: "2.9"
|
version_added: "2.10"
|
||||||
type: dict
|
type: dict
|
||||||
log_level:
|
log_level:
|
||||||
description:
|
description:
|
||||||
- If ANSIBLE_DEBUG is set, this will be forced to 'debug', but can be user-defined otherwise.
|
- If ANSIBLE_DEBUG is set, this will be forced to 'debug', but can be user-defined otherwise.
|
||||||
required: True
|
required: True
|
||||||
choices: ['debug', 'info', 'normal']
|
choices: ['debug', 'info', 'normal']
|
||||||
version_added: "2.9"
|
version_added: "2.10"
|
||||||
type: str
|
type: str
|
||||||
default: 'normal'
|
default: 'normal'
|
||||||
state:
|
state:
|
||||||
|
@ -36,14 +36,14 @@ options:
|
||||||
- Either 'absent' or 'present', depending on whether object should be removed or created.
|
- Either 'absent' or 'present', depending on whether object should be removed or created.
|
||||||
required: false
|
required: false
|
||||||
choices: ['absent', 'present', 'query']
|
choices: ['absent', 'present', 'query']
|
||||||
version_added: "2.9"
|
version_added: "2.10"
|
||||||
type: str
|
type: str
|
||||||
default: 'present'
|
default: 'present'
|
||||||
status_code:
|
status_code:
|
||||||
description:
|
description:
|
||||||
- A list of integer status codes considered to be successful for the this module.
|
- A list of integer status codes considered to be successful for the this module.
|
||||||
required: true
|
required: true
|
||||||
version_added: "2.9"
|
version_added: "2.10"
|
||||||
type: list
|
type: list
|
||||||
default: [200]
|
default: [200]
|
||||||
'''
|
'''
|
||||||
|
|
|
@ -15,14 +15,14 @@ options:
|
||||||
- Indicates whether get_id() can return multiple IDs for a given name.
|
- Indicates whether get_id() can return multiple IDs for a given name.
|
||||||
- Typically, this should be false when updating or deleting; otherwise, all named objects could be affected.
|
- Typically, this should be false when updating or deleting; otherwise, all named objects could be affected.
|
||||||
required: true
|
required: true
|
||||||
version_added: "2.9"
|
version_added: "2.10"
|
||||||
type: bool
|
type: bool
|
||||||
log_level:
|
log_level:
|
||||||
description:
|
description:
|
||||||
- If ANSIBLE_DEBUG is set, this will be forced to 'debug', but can be user-defined otherwise.
|
- If ANSIBLE_DEBUG is set, this will be forced to 'debug', but can be user-defined otherwise.
|
||||||
required: True
|
required: True
|
||||||
choices: ['debug', 'info', 'normal']
|
choices: ['debug', 'info', 'normal']
|
||||||
version_added: "2.9"
|
version_added: "2.10"
|
||||||
type: str
|
type: str
|
||||||
default: 'normal'
|
default: 'normal'
|
||||||
state:
|
state:
|
||||||
|
@ -30,14 +30,14 @@ options:
|
||||||
- Either 'absent' or 'present', depending on whether object should be removed or created.
|
- Either 'absent' or 'present', depending on whether object should be removed or created.
|
||||||
required: false
|
required: false
|
||||||
choices: ['absent', 'present', 'query']
|
choices: ['absent', 'present', 'query']
|
||||||
version_added: "2.9"
|
version_added: "2.10"
|
||||||
type: str
|
type: str
|
||||||
default: 'present'
|
default: 'present'
|
||||||
status_code:
|
status_code:
|
||||||
description:
|
description:
|
||||||
- A list of integer status codes considered to be successful for the this module.
|
- A list of integer status codes considered to be successful for the this module.
|
||||||
required: true
|
required: true
|
||||||
version_added: "2.9"
|
version_added: "2.10"
|
||||||
type: list
|
type: list
|
||||||
default: [200]
|
default: [200]
|
||||||
'''
|
'''
|
||||||
|
|
|
@ -13,7 +13,7 @@ httpapi : vmware
|
||||||
short_description: HttpApi Plugin for VMware REST API
|
short_description: HttpApi Plugin for VMware REST API
|
||||||
description:
|
description:
|
||||||
- This HttpApi plugin provides methods to connect to VMware vCenter over a HTTP(S)-based APIs.
|
- This HttpApi plugin provides methods to connect to VMware vCenter over a HTTP(S)-based APIs.
|
||||||
version_added: "2.9"
|
version_added: "2.10"
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import json
|
import json
|
||||||
|
|
Loading…
Reference in a new issue