forked from meraki/dashboard-api-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
26 lines (24 loc) · 1018 Bytes
/
Copy path__init__.py
File metadata and controls
26 lines (24 loc) · 1018 Bytes
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
from .organizations import ActionBatchOrganizations
from .networks import ActionBatchNetworks
from .devices import ActionBatchDevices
from .appliance import ActionBatchAppliance
from .camera import ActionBatchCamera
from .cellularGateway import ActionBatchCellularGateway
from .insight import ActionBatchInsight
from .sm import ActionBatchSm
from .switch import ActionBatchSwitch
from .wireless import ActionBatchWireless
# Batch class
class Batch:
def __init__(self):
# Action Batch helper API endpoints by section
self.organizations = ActionBatchOrganizations()
self.networks = ActionBatchNetworks()
self.devices = ActionBatchDevices()
self.appliance = ActionBatchAppliance()
self.camera = ActionBatchCamera()
self.cellularGateway = ActionBatchCellularGateway()
self.insight = ActionBatchInsight()
self.sm = ActionBatchSm()
self.switch = ActionBatchSwitch()
self.wireless = ActionBatchWireless()