blob: f9b6c0a6d7329229c89a7b0063c11b5cc56d0f69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright (c) 2021, Cisco Systems
# GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt)
DOCUMENTATION = r"""
---
module: networks_snmp
short_description: Resource module for networks _snmp
description:
- Manage operation update of the resource networks _snmp.
- Update the SNMP settings for a network.
version_added: '2.16.0'
extends_documentation_fragment:
- cisco.meraki.module
author: Francisco Munoz (@fmunoz)
options:
access:
description: The type of SNMP access. Can be one of 'none' (disabled), 'community'
(V1/V2c), or 'users' (V3).
type: str
communityString:
description: The SNMP community string. Only relevant if 'access' is set to 'community'.
type: str
networkId:
description: NetworkId path parameter. Network ID.
type: str
users:
description: The list of SNMP users. Only relevant if 'access' is set to 'users'.
elements: dict
suboptions:
passphrase:
description: The passphrase for the SNMP user. Required.
type: str
username:
description: The username for the SNMP user. Required.
type: str
type: list
requirements:
- meraki >= 2.4.9
- python >= 3.5
seealso:
- name: Cisco Meraki documentation for networks updateNetworkSnmp
description: Complete reference of the updateNetworkSnmp API.
link: https://developer.cisco.com/meraki/api-v1/#!update-network-snmp
notes:
- SDK Method used are
networks.Networks.update_network_snmp,
- Paths used are
put /networks/{networkId}/snmp,
"""
EXAMPLES = r"""
- name: Update all
cisco.meraki.networks_snmp:
meraki_api_key: "{{meraki_api_key}}"
meraki_base_url: "{{meraki_base_url}}"
meraki_single_request_timeout: "{{meraki_single_request_timeout}}"
meraki_certificate_path: "{{meraki_certificate_path}}"
meraki_requests_proxy: "{{meraki_requests_proxy}}"
meraki_wait_on_rate_limit: "{{meraki_wait_on_rate_limit}}"
meraki_nginx_429_retry_wait_time: "{{meraki_nginx_429_retry_wait_time}}"
meraki_action_batch_retry_wait_time: "{{meraki_action_batch_retry_wait_time}}"
meraki_retry_4xx_error: "{{meraki_retry_4xx_error}}"
meraki_retry_4xx_error_wait_time: "{{meraki_retry_4xx_error_wait_time}}"
meraki_maximum_retries: "{{meraki_maximum_retries}}"
meraki_output_log: "{{meraki_output_log}}"
meraki_log_file_prefix: "{{meraki_log_file_prefix}}"
meraki_log_path: "{{meraki_log_path}}"
meraki_print_console: "{{meraki_print_console}}"
meraki_suppress_logging: "{{meraki_suppress_logging}}"
meraki_simulate: "{{meraki_simulate}}"
meraki_be_geo_id: "{{meraki_be_geo_id}}"
meraki_use_iterator_for_get_pages: "{{meraki_use_iterator_for_get_pages}}"
meraki_inherit_logging_config: "{{meraki_inherit_logging_config}}"
state: present
access: users
communityString: sample
networkId: string
users:
- passphrase: hunter2
username: AzureDiamond
"""
RETURN = r"""
meraki_response:
description: A dictionary or list with the response returned by the Cisco Meraki Python SDK
returned: always
type: dict
sample: >
{
"access": "string",
"communityString": "string",
"users": [
{
"passphrase": "string",
"username": "string"
}
]
}
"""
|