mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-16 14:09:12 -07:00
update azure_rm_appserviceplan related module documents (#56348)
* update azure_rm_appserviceplan module documentation
This commit is contained in:
parent
84f5666aab
commit
22d7e7ea0b
2 changed files with 8 additions and 9 deletions
|
@ -38,10 +38,9 @@ options:
|
||||||
|
|
||||||
sku:
|
sku:
|
||||||
description:
|
description:
|
||||||
- The pricing tiers, e.g., F1, D1, B1, B2, B3, S1, P1, P1V2 etc.
|
- The pricing tiers, e.g., C(F1), C(D1), C(B1), C(B2), C(B3), C(S1), C(P1), C(P1V2) etc.
|
||||||
- Please see U(https://azure.microsoft.com/en-us/pricing/details/app-service/plans/) for more detail.
|
- Please see U(https://azure.microsoft.com/en-us/pricing/details/app-service/plans/) for more detail.
|
||||||
- For linux app service plan, please see U(https://azure.microsoft.com/en-us/pricing/details/app-service/linux/) for more detail.
|
- For Linux app service plan, please see U(https://azure.microsoft.com/en-us/pricing/details/app-service/linux/) for more detail.
|
||||||
|
|
||||||
is_linux:
|
is_linux:
|
||||||
description:
|
description:
|
||||||
- Describe whether to host webapp on Linux worker.
|
- Describe whether to host webapp on Linux worker.
|
||||||
|
@ -54,12 +53,12 @@ options:
|
||||||
|
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- Assert the state of the app service plan.
|
- Assert the state of the app service plan.
|
||||||
- Use C(present) to create or update an app service plan and C(absent) to delete it.
|
- Use C(present) to create or update an app service plan and C(absent) to delete it.
|
||||||
default: present
|
default: present
|
||||||
choices:
|
choices:
|
||||||
- absent
|
- absent
|
||||||
- present
|
- present
|
||||||
|
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
- azure
|
- azure
|
||||||
|
@ -97,7 +96,7 @@ EXAMPLES = '''
|
||||||
|
|
||||||
RETURN = '''
|
RETURN = '''
|
||||||
azure_appserviceplan:
|
azure_appserviceplan:
|
||||||
description: Facts about the current state of the app service plan
|
description: Facts about the current state of the app service plan.
|
||||||
returned: always
|
returned: always
|
||||||
type: dict
|
type: dict
|
||||||
sample: {
|
sample: {
|
||||||
|
|
|
@ -19,7 +19,7 @@ module: azure_rm_appserviceplan_facts
|
||||||
|
|
||||||
version_added: "2.7"
|
version_added: "2.7"
|
||||||
|
|
||||||
short_description: Get azure app service plan facts.
|
short_description: Get azure app service plan facts
|
||||||
|
|
||||||
description:
|
description:
|
||||||
- Get facts for a specific app service plan or all app service plans in a resource group, or all app service plan in current subscription.
|
- Get facts for a specific app service plan or all app service plans in a resource group, or all app service plan in current subscription.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue