mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Update azure_rm_devtestlab related module document (#56681)
* update azure_rm_devtestlab documention
This commit is contained in:
parent
8495e3d9e4
commit
41cc198b61
2 changed files with 10 additions and 9 deletions
|
@ -17,7 +17,7 @@ DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
module: azure_rm_devtestlab
|
module: azure_rm_devtestlab
|
||||||
version_added: "2.8"
|
version_added: "2.8"
|
||||||
short_description: Manage Azure DevTest Lab instance.
|
short_description: Manage Azure DevTest Lab instance
|
||||||
description:
|
description:
|
||||||
- Create, update and delete instance of Azure DevTest Lab.
|
- Create, update and delete instance of Azure DevTest Lab.
|
||||||
|
|
||||||
|
@ -35,18 +35,18 @@ options:
|
||||||
- The location of the resource.
|
- The location of the resource.
|
||||||
storage_type:
|
storage_type:
|
||||||
description:
|
description:
|
||||||
- Type of storage used by the lab. It can be either C(premium) or C(standard). Default is C(premium).
|
- Type of storage used by the lab. It can be either C(premium) or C(standard).
|
||||||
choices:
|
choices:
|
||||||
- 'standard'
|
- 'standard'
|
||||||
- 'premium'
|
- 'premium'
|
||||||
premium_data_disks:
|
premium_data_disks:
|
||||||
description:
|
description:
|
||||||
- "Allow creation of premium data disks."
|
- Allow creation of premium data disks.
|
||||||
type: bool
|
type: bool
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- Assert the state of the DevTest Lab.
|
- Assert the state of the DevTest Lab.
|
||||||
- Use C(present) to create or update an DevTest Lab and C(absent) to delete it.
|
- Use C(present) to create or update an DevTest Lab and C(absent) to delete it.
|
||||||
default: present
|
default: present
|
||||||
choices:
|
choices:
|
||||||
- absent
|
- absent
|
||||||
|
@ -57,7 +57,7 @@ extends_documentation_fragment:
|
||||||
- azure_tags
|
- azure_tags
|
||||||
|
|
||||||
author:
|
author:
|
||||||
- "Zim Kalinowski (@zikalino)"
|
- Zim Kalinowski (@zikalino)
|
||||||
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
module: azure_rm_devtestlab_facts
|
module: azure_rm_devtestlab_facts
|
||||||
version_added: "2.8"
|
version_added: "2.8"
|
||||||
short_description: Get Azure DevTest Lab facts.
|
short_description: Get Azure DevTest Lab facts
|
||||||
description:
|
description:
|
||||||
- Get facts of Azure DevTest Lab.
|
- Get facts of Azure DevTest Lab.
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ extends_documentation_fragment:
|
||||||
- azure
|
- azure
|
||||||
|
|
||||||
author:
|
author:
|
||||||
- "Zim Kalinowski (@zikalino)"
|
- Zim Kalinowski (@zikalino)
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
|
@ -55,7 +55,8 @@ EXAMPLES = '''
|
||||||
|
|
||||||
RETURN = '''
|
RETURN = '''
|
||||||
labs:
|
labs:
|
||||||
description: A list of dictionaries containing facts for Lab.
|
description:
|
||||||
|
- A list of dictionaries containing facts for Lab.
|
||||||
returned: always
|
returned: always
|
||||||
type: complex
|
type: complex
|
||||||
contains:
|
contains:
|
||||||
|
|
Loading…
Reference in a new issue