Update azure_rm_mysqlfirewallrule related document (#57384)
This commit is contained in:
parent
dfaa72297c
commit
9b6a295ca5
2 changed files with 10 additions and 7 deletions
|
@ -17,7 +17,7 @@ DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
module: azure_rm_mysqlfirewallrule
|
module: azure_rm_mysqlfirewallrule
|
||||||
version_added: "2.8"
|
version_added: "2.8"
|
||||||
short_description: Manage MySQL firewall rule instance.
|
short_description: Manage MySQL firewall rule instance
|
||||||
description:
|
description:
|
||||||
- Create, update and delete instance of MySQL firewall rule.
|
- Create, update and delete instance of MySQL firewall rule.
|
||||||
|
|
||||||
|
@ -37,9 +37,11 @@ options:
|
||||||
start_ip_address:
|
start_ip_address:
|
||||||
description:
|
description:
|
||||||
- The start IP address of the MySQL firewall rule. Must be IPv4 format.
|
- The start IP address of the MySQL firewall rule. Must be IPv4 format.
|
||||||
|
required: True
|
||||||
end_ip_address:
|
end_ip_address:
|
||||||
description:
|
description:
|
||||||
- The end IP address of the MySQL firewall rule. Must be IPv4 format.
|
- The end IP address of the MySQL firewall rule. Must be IPv4 format.
|
||||||
|
required: True
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- Assert the state of the MySQL firewall rule. Use C(present) to create or update a rule and C(absent) to ensure it is not present.
|
- Assert the state of the MySQL firewall rule. Use C(present) to create or update a rule and C(absent) to ensure it is not present.
|
||||||
|
@ -52,7 +54,7 @@ extends_documentation_fragment:
|
||||||
- azure
|
- azure
|
||||||
|
|
||||||
author:
|
author:
|
||||||
- "Zim Kalinowski (@zikalino)"
|
- Zim Kalinowski (@zikalino)
|
||||||
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
@ -69,7 +71,7 @@ EXAMPLES = '''
|
||||||
RETURN = '''
|
RETURN = '''
|
||||||
id:
|
id:
|
||||||
description:
|
description:
|
||||||
- Resource ID
|
- Resource ID.
|
||||||
returned: always
|
returned: always
|
||||||
type: str
|
type: str
|
||||||
sample: "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.DBforMySQL/servers/testserver/fire
|
sample: "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.DBforMySQL/servers/testserver/fire
|
||||||
|
|
|
@ -17,7 +17,7 @@ DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
module: azure_rm_mysqlfirewallrule_facts
|
module: azure_rm_mysqlfirewallrule_facts
|
||||||
version_added: "2.8"
|
version_added: "2.8"
|
||||||
short_description: Get Azure MySQL Firewall Rule facts.
|
short_description: Get Azure MySQL Firewall Rule facts
|
||||||
description:
|
description:
|
||||||
- Get facts of Azure MySQL Firewall Rule.
|
- Get facts of Azure MySQL Firewall Rule.
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ extends_documentation_fragment:
|
||||||
- azure
|
- azure
|
||||||
|
|
||||||
author:
|
author:
|
||||||
- "Zim Kalinowski (@zikalino)"
|
- Zim Kalinowski (@zikalino)
|
||||||
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
@ -57,13 +57,14 @@ EXAMPLES = '''
|
||||||
|
|
||||||
RETURN = '''
|
RETURN = '''
|
||||||
rules:
|
rules:
|
||||||
description: A list of dictionaries containing facts for MySQL Firewall Rule.
|
description:
|
||||||
|
- A list of dictionaries containing facts for MySQL Firewall Rule.
|
||||||
returned: always
|
returned: always
|
||||||
type: complex
|
type: complex
|
||||||
contains:
|
contains:
|
||||||
id:
|
id:
|
||||||
description:
|
description:
|
||||||
- Resource ID
|
- Resource ID.
|
||||||
returned: always
|
returned: always
|
||||||
type: str
|
type: str
|
||||||
sample: "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/testserver/fire
|
sample: "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/TestGroup/providers/Microsoft.DBforMySQL/servers/testserver/fire
|
||||||
|
|
Loading…
Reference in a new issue