forked from meraki/dashboard-api-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcellularGateway.py
More file actions
194 lines (133 loc) · 6.35 KB
/
Copy pathcellularGateway.py
File metadata and controls
194 lines (133 loc) · 6.35 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
class ActionBatchCellularGateway(object):
def __init__(self):
super(ActionBatchCellularGateway, self).__init__()
def updateDeviceCellularGatewayLan(self, serial: str, **kwargs):
"""
**Update the LAN Settings for a single MG.**
https://developer.cisco.com/meraki/api-v1/#!update-device-cellular-gateway-lan
- serial (string): (required)
- reservedIpRanges (array): list of all reserved IP ranges for a single MG
- fixedIpAssignments (array): list of all fixed IP assignments for a single MG
"""
kwargs.update(locals())
metadata = {
'tags': ['cellularGateway', 'configure', 'lan'],
'operation': 'updateDeviceCellularGatewayLan'
}
resource = f'/devices/{serial}/cellularGateway/lan'
body_params = ['reservedIpRanges', 'fixedIpAssignments', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "update",
"body": payload
}
return action
def updateDeviceCellularGatewayPortForwardingRules(self, serial: str, **kwargs):
"""
**Updates the port forwarding rules for a single MG.**
https://developer.cisco.com/meraki/api-v1/#!update-device-cellular-gateway-port-forwarding-rules
- serial (string): (required)
- rules (array): An array of port forwarding params
"""
kwargs.update(locals())
metadata = {
'tags': ['cellularGateway', 'configure', 'portForwardingRules'],
'operation': 'updateDeviceCellularGatewayPortForwardingRules'
}
resource = f'/devices/{serial}/cellularGateway/portForwardingRules'
body_params = ['rules', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "update",
"body": payload
}
return action
def updateNetworkCellularGatewayConnectivityMonitoringDestinations(self, networkId: str, **kwargs):
"""
**Update the connectivity testing destinations for an MG network**
https://developer.cisco.com/meraki/api-v1/#!update-network-cellular-gateway-connectivity-monitoring-destinations
- networkId (string): (required)
- destinations (array): The list of connectivity monitoring destinations
"""
kwargs.update(locals())
metadata = {
'tags': ['cellularGateway', 'configure', 'connectivityMonitoringDestinations'],
'operation': 'updateNetworkCellularGatewayConnectivityMonitoringDestinations'
}
resource = f'/networks/{networkId}/cellularGateway/connectivityMonitoringDestinations'
body_params = ['destinations', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "update",
"body": payload
}
return action
def updateNetworkCellularGatewayDhcp(self, networkId: str, **kwargs):
"""
**Update common DHCP settings of MGs**
https://developer.cisco.com/meraki/api-v1/#!update-network-cellular-gateway-dhcp
- networkId (string): (required)
- dhcpLeaseTime (string): DHCP Lease time for all MG of the network. It can be '30 minutes', '1 hour', '4 hours', '12 hours', '1 day' or '1 week'.
- dnsNameservers (string): DNS name servers mode for all MG of the network. It can take 4 different values: 'upstream_dns', 'google_dns', 'opendns', 'custom'.
- dnsCustomNameservers (array): list of fixed IP representing the the DNS Name servers when the mode is 'custom'
"""
kwargs.update(locals())
metadata = {
'tags': ['cellularGateway', 'configure', 'dhcp'],
'operation': 'updateNetworkCellularGatewayDhcp'
}
resource = f'/networks/{networkId}/cellularGateway/dhcp'
body_params = ['dhcpLeaseTime', 'dnsNameservers', 'dnsCustomNameservers', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "update",
"body": payload
}
return action
def updateNetworkCellularGatewaySubnetPool(self, networkId: str, **kwargs):
"""
**Update the subnet pool and mask configuration for MGs in the network.**
https://developer.cisco.com/meraki/api-v1/#!update-network-cellular-gateway-subnet-pool
- networkId (string): (required)
- mask (integer): Mask used for the subnet of all MGs in this network.
- cidr (string): CIDR of the pool of subnets. Each MG in this network will automatically pick a subnet from this pool.
"""
kwargs.update(locals())
metadata = {
'tags': ['cellularGateway', 'configure', 'subnetPool'],
'operation': 'updateNetworkCellularGatewaySubnetPool'
}
resource = f'/networks/{networkId}/cellularGateway/subnetPool'
body_params = ['mask', 'cidr', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "update",
"body": payload
}
return action
def updateNetworkCellularGatewayUplink(self, networkId: str, **kwargs):
"""
**Updates the uplink settings for your MG network.**
https://developer.cisco.com/meraki/api-v1/#!update-network-cellular-gateway-uplink
- networkId (string): (required)
- bandwidthLimits (object): The bandwidth settings for the 'cellular' uplink
"""
kwargs.update(locals())
metadata = {
'tags': ['cellularGateway', 'configure', 'uplink'],
'operation': 'updateNetworkCellularGatewayUplink'
}
resource = f'/networks/{networkId}/cellularGateway/uplink'
body_params = ['bandwidthLimits', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "update",
"body": payload
}
return action