Update azure_rm_mysqlserver related document (#57382)

This commit is contained in:
Fred-sun 2019-06-05 09:10:12 -04:00 committed by Sandra McCann
parent 9b6a295ca5
commit 206f18dcca
2 changed files with 27 additions and 20 deletions

View file

@ -17,7 +17,7 @@ DOCUMENTATION = '''
---
module: azure_rm_mysqlserver_facts
version_added: "2.7"
short_description: Get Azure MySQL Server facts.
short_description: Get Azure MySQL Server facts
description:
- Get facts of MySQL Server.
@ -37,7 +37,7 @@ extends_documentation_fragment:
- azure
author:
- "Zim Kalinowski (@zikalino)"
- Zim Kalinowski (@zikalino)
'''
@ -54,13 +54,14 @@ EXAMPLES = '''
RETURN = '''
servers:
description: A list of dictionaries containing facts for MySQL servers.
description:
- A list of dictionaries containing facts for MySQL servers.
returned: always
type: complex
contains:
id:
description:
- Resource ID
- Resource ID.
returned: always
type: str
sample: /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.DBforMySQL/servers/myabdud1223
@ -90,13 +91,13 @@ servers:
contains:
name:
description:
- The name of the SKU
- The name of the SKU.
returned: always
type: str
sample: GP_Gen4_2
tier:
description:
- The tier of the particular SKU
- The tier of the particular SKU.
returned: always
type: str
sample: GeneralPurpose
@ -120,7 +121,7 @@ servers:
sample: False
admin_username:
description:
- "The administrator's login name of a server."
- The administrator's login name of a server.
returned: always
type: str
sample: serveradmin
@ -143,7 +144,8 @@ servers:
type: str
sample: myabdud1223.mys.database.azure.com
tags:
description: Tags assigned to the resource. Dictionary of string:string pairs.
description:
- Tags assigned to the resource. Dictionary of string:string pairs.
type: dict
sample: { tag1: abc }
'''