File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111from meraki .api .camera import Camera
1212from meraki .api .cellularGateway import CellularGateway
1313from meraki .api .insight import Insight
14+ from meraki .api .licensing import Licensing
1415from meraki .api .sensor import Sensor
1516from meraki .api .sm import Sm
1617from meraki .api .switch import Switch
@@ -174,6 +175,7 @@ def __init__(self,
174175 self .camera = Camera (self ._session )
175176 self .cellularGateway = CellularGateway (self ._session )
176177 self .insight = Insight (self ._session )
178+ self .licensing = Licensing (self ._session )
177179 self .sensor = Sensor (self ._session )
178180 self .sm = Sm (self ._session )
179181 self .switch = Switch (self ._session )
Original file line number Diff line number Diff line change 99from meraki .aio .api .cellularGateway import AsyncCellularGateway
1010from meraki .aio .api .devices import AsyncDevices
1111from meraki .aio .api .insight import AsyncInsight
12+ from meraki .aio .api .licensing import AsyncLicensing
1213from meraki .aio .api .networks import AsyncNetworks
1314from meraki .aio .api .organizations import AsyncOrganizations
1415from meraki .aio .api .sensor import AsyncSensor
@@ -174,6 +175,7 @@ def __init__(self,
174175 self .camera = AsyncCamera (self ._session )
175176 self .cellularGateway = AsyncCellularGateway (self ._session )
176177 self .insight = AsyncInsight (self ._session )
178+ self .licensing = AsyncLicensing (self ._session )
177179 self .sensor = AsyncSensor (self ._session )
178180 self .switch = AsyncSwitch (self ._session )
179181 self .sm = AsyncSm (self ._session )
You can’t perform that action at this time.
0 commit comments