meraki_network - Added proper response documentation (#42393)
* Added proper response documentation to meraki_network * Missing colon
This commit is contained in:
parent
78fd5ce651
commit
c644e3da79
1 changed files with 37 additions and 12 deletions
|
@ -91,18 +91,43 @@ RETURN = r'''
|
||||||
data:
|
data:
|
||||||
description: Information about the created or manipulated object.
|
description: Information about the created or manipulated object.
|
||||||
returned: info
|
returned: info
|
||||||
type: list
|
type: complex
|
||||||
sample:
|
contains:
|
||||||
[
|
id:
|
||||||
{
|
description: Identification string of network.
|
||||||
"id": "N_12345",
|
returned: success
|
||||||
"name": "YourNetwork",
|
type: string
|
||||||
"organizationId": "0987654321",
|
sample: N_12345
|
||||||
"tags": " production ",
|
name:
|
||||||
"timeZone": "America/Chicago",
|
description: Written name of network.
|
||||||
"type": "switch"
|
returned: success
|
||||||
}
|
type: string
|
||||||
]
|
sample: YourNet
|
||||||
|
organizationId:
|
||||||
|
description: Organization ID which owns the network.
|
||||||
|
returned: success
|
||||||
|
type: string
|
||||||
|
sample: 0987654321
|
||||||
|
tags:
|
||||||
|
description: Space delimited tags assigned to network.
|
||||||
|
returned: success
|
||||||
|
type: string
|
||||||
|
sample: " production wireless "
|
||||||
|
timeZone:
|
||||||
|
description: Timezone where network resides.
|
||||||
|
returned: success
|
||||||
|
type: string
|
||||||
|
sample: America/Chicago
|
||||||
|
type:
|
||||||
|
description: Functional type of network.
|
||||||
|
returned: success
|
||||||
|
type: string
|
||||||
|
sample: switch
|
||||||
|
disableMyMerakiCom:
|
||||||
|
description: States whether U(my.meraki.com) and other device portals should be disabled.
|
||||||
|
returned: success
|
||||||
|
type: bool
|
||||||
|
sample: true
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
|
Loading…
Reference in a new issue