File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010from .api .camera import Camera
1111from .api .cellularGateway import CellularGateway
1212from .api .insight import Insight
13+ from .api .sensor import Sensor
1314from .api .sm import Sm
1415from .api .switch import Switch
1516from .api .wireless import Wireless
@@ -113,7 +114,7 @@ def __init__(self,
113114 # Configure logging
114115 if not suppress_logging :
115116 self ._logger = logging .getLogger (__name__ )
116-
117+
117118 if not inherit_logging_config :
118119 self ._logger .setLevel (logging .DEBUG )
119120
@@ -171,6 +172,7 @@ def __init__(self,
171172 self .camera = Camera (self ._session )
172173 self .cellularGateway = CellularGateway (self ._session )
173174 self .insight = Insight (self ._session )
175+ self .sensor = Sensor (self ._session )
174176 self .sm = Sm (self ._session )
175177 self .switch = Switch (self ._session )
176178 self .wireless = Wireless (self ._session )
Original file line number Diff line number Diff line change 1010from .api .insight import AsyncInsight
1111from .api .networks import AsyncNetworks
1212from .api .organizations import AsyncOrganizations
13+ from .api .sensor import AsyncSensor
1314from .api .sm import AsyncSm
1415from .api .switch import AsyncSwitch
1516from .api .wireless import AsyncWireless
@@ -171,6 +172,7 @@ def __init__(self,
171172 self .camera = AsyncCamera (self ._session )
172173 self .cellularGateway = AsyncCellularGateway (self ._session )
173174 self .insight = AsyncInsight (self ._session )
175+ self .sensor = AsyncSensor (self ._session )
174176 self .switch = AsyncSwitch (self ._session )
175177 self .sm = AsyncSm (self ._session )
176178 self .wireless = AsyncWireless (self ._session )
Original file line number Diff line number Diff line change 55from .camera import ActionBatchCamera
66from .cellularGateway import ActionBatchCellularGateway
77from .insight import ActionBatchInsight
8+ from .sensor import ActionBatchSensor
89from .sm import ActionBatchSm
910from .switch import ActionBatchSwitch
1011from .wireless import ActionBatchWireless
@@ -21,6 +22,7 @@ def __init__(self):
2122 self .camera = ActionBatchCamera ()
2223 self .cellularGateway = ActionBatchCellularGateway ()
2324 self .insight = ActionBatchInsight ()
25+ self .sensor = ActionBatchSensor ()
2426 self .sm = ActionBatchSm ()
2527 self .switch = ActionBatchSwitch ()
2628 self .wireless = ActionBatchWireless ()
You can’t perform that action at this time.
0 commit comments