8000 Update azure_rm_sqlfirewallrule related document by Fred-sun · Pull Request #58265 · ansible/ansible · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update azure_rm_sqlfirewallrule related document #58265

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 25, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions lib/ansible/modules/cloud/azure/azure_rm_sqlfirewallrule.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
---
module: azure_rm_sqlfirewallrule
version_added: "2.7"
short_description: Manage Firewall Rule instance.
short_description: Manage Firewall Rule instance
description:
- Create, update and delete instance of Firewall Rule.

Expand All @@ -36,24 +36,25 @@
required: True
start_ip_address:
description:
- The start IP address of the firewall rule. Must be IPv4 format. Use value C(0.0.0.0) to represent all Azure-internal IP addresses.
- The start IP address of the firewall rule.
- Must be IPv4 format. Use value C(0.0.0.0) to represent all Azure-internal IP addresses.
end_ip_address:
description:
- "The end IP address of the firewall rule. Must be IPv4 format. Must be greater than or equal to startIpAddress. Use value C(0.0.0.0) to represe
nt all Azure-internal IP addresses."
- The end IP address of the firewall rule.
- Must be IPv4 format. Must be greater than or equal to I(start_ip_address). Use value C(0.0.0.0) to represent all Azure-internal IP addresses.
state:
description:
- Assert the state of the SQL Database. Use C(present) to create or update an SQL Database and C(absent) to delete it.
default: present
choices:
- absent
- present
description:
- State of the SQL Database. Use C(present) to create or update an SQL Database and C(absent) to delete it.
default: present
choices:
- absent
- present

extends_documentation_fragment:
- azure

author:
- "Zim Kalinowski (@zikalino)"
- Zim Kalinowski (@zikalino)

'''

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
---
module: azure_rm_sqlfirewallrule_facts
version_added: "2.8"
short_description: Get Azure SQL Firewall Rule facts.
short_description: Get Azure SQL Firewall Rule facts
description:
- Get facts of SQL Firewall Rule.

Expand All @@ -38,7 +38,7 @@
- azure

author:
- "Zim Kalinowski (@zikalino)"
- Zim Kalinowski (@zikalino)

'''

Expand All @@ -57,13 +57,14 @@

RETURN = '''
rules:
description: A list of dict results containing the facts for matching SQL firewall rules.
description:
- A list of dict results containing the facts for matching SQL firewall rules.
returned: always
type: complex
contains:
id:
description:
- Resource ID
- Resource ID.
returned: always
type: str
sample: "/subscriptions/xxxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Sql/servers/testser
Expand Down Expand Up @@ -94,7 +95,7 @@
sample: 10.0.0.1
end_ip_address:
description:
- The start IP address of the firewall rule.
- The end IP address of the firewall rule.
returned: always
type: str
sample: 10.0.0.5
Expand Down
0