summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Breit <kevin.breit@kevinbreit.net>2018-06-09 21:44:42 -0500
committerMatt Clay <matt@mystile.com>2018-06-21 15:13:37 -0700
commit8ad8db42e3f5099f3f8ff41b67f9565fb8910f0f (patch)
tree814f0c93d40c1c2e6663531a788473783f247193
parent544c9e1f32f30a4b3ec10cec0dfb23bb49514c22 (diff)
downloadansible-8ad8db42e3f5099f3f8ff41b67f9565fb8910f0f.tar.gz
Add proper response documentation
- Added response documentation for organizations - Additional information is likely to be added later (cherry picked from commit 57b589d152105376136e3f6a8bf5f02134569464)
-rw-r--r--lib/ansible/modules/network/meraki/meraki_organization.py20
1 files changed, 16 insertions, 4 deletions
diff --git a/lib/ansible/modules/network/meraki/meraki_organization.py b/lib/ansible/modules/network/meraki/meraki_organization.py
index 9589ef8a52..bfc9fed0da 100644
--- a/lib/ansible/modules/network/meraki/meraki_organization.py
+++ b/lib/ansible/modules/network/meraki/meraki_organization.py
@@ -82,10 +82,22 @@ EXAMPLES = r'''
'''
RETURN = r'''
-response:
- description: Data returned from Meraki dashboard.
- type: dict
- returned: info
+data:
+ description: Information about the organization which was created or modified
+ returned: success
+ type: complex
+ contains:
+ id:
+ description: Unique identification number of organization
+ returned: success
+ type: int
+ sample: 2930418
+ name:
+ description: Name of organization
+ returned: success
+ type: string
+ sample: YourOrg
+
'''
import os