[docs]classBandwidthCls:"""Bandwidth commands group definition. 8 total commands, 6 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("bandwidth",core,parent)@propertydefchannel(self):"""channel commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_channel'):from.ChannelimportChannelClsself._channel=ChannelCls(self._core,self._cmd_group)returnself._channel@propertydefachannel(self):"""achannel commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_achannel'):from.AchannelimportAchannelClsself._achannel=AchannelCls(self._core,self._cmd_group)returnself._achannel@propertydefuaChannel(self):"""uaChannel commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_uaChannel'):from.UaChannelimportUaChannelClsself._uaChannel=UaChannelCls(self._core,self._cmd_group)returnself._uaChannel@propertydefalternate(self):"""alternate commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_alternate'):from.AlternateimportAlternateClsself._alternate=AlternateCls(self._core,self._cmd_group)returnself._alternate@propertydefualternate(self):"""ualternate commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_ualternate'):from.UalternateimportUalternateClsself._ualternate=UalternateCls(self._core,self._cmd_group)returnself._ualternate@propertydefgap(self):"""gap commands group. 2 Sub-classes, 0 commands."""ifnothasattr(self,'_gap'):from.GapimportGapClsself._gap=GapCls(self._core,self._cmd_group)returnself._gapdefclone(self)->'BandwidthCls':"""Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group"""new_group=BandwidthCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group