[docs]classPuschCls:"""Pusch commands group definition. 8 total commands, 8 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("pusch",core,parent)@propertydefesupport(self):"""esupport commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_esupport'):from.EsupportimportEsupportClsself._esupport=EsupportCls(self._core,self._cmd_group)returnself._esupport@propertydefetbs(self):"""etbs commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_etbs'):from.EtbsimportEtbsClsself._etbs=EtbsCls(self._core,self._cmd_group)returnself._etbs@propertydefetrSize(self):"""etrSize commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_etrSize'):from.EtrSizeimportEtrSizeClsself._etrSize=EtrSizeCls(self._core,self._cmd_group)returnself._etrSize@propertydefphysBits(self):"""physBits commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_physBits'):from.PhysBitsimportPhysBitsClsself._physBits=PhysBitsCls(self._core,self._cmd_group)returnself._physBits@propertydefruIndex(self):"""ruIndex commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_ruIndex'):from.RuIndeximportRuIndexClsself._ruIndex=RuIndexCls(self._core,self._cmd_group)returnself._ruIndex@propertydefrvIndex(self):"""rvIndex commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_rvIndex'):from.RvIndeximportRvIndexClsself._rvIndex=RvIndexCls(self._core,self._cmd_group)returnself._rvIndex@propertydeftbIndex(self):"""tbIndex commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_tbIndex'):from.TbIndeximportTbIndexClsself._tbIndex=TbIndexCls(self._core,self._cmd_group)returnself._tbIndex@propertydeftbSize(self):"""tbSize commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_tbSize'):from.TbSizeimportTbSizeClsself._tbSize=TbSizeCls(self._core,self._cmd_group)returnself._tbSizedefclone(self)->'PuschCls':"""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=PuschCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group