[docs]classSyInfoCls:"""SyInfo commands group definition. 5 total commands, 5 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("syInfo",core,parent)@propertydefhacbook(self):"""hacbook commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_hacbook'):from.HacbookimportHacbookClsself._hacbook=HacbookCls(self._core,self._cmd_group)returnself._hacbook@propertydefhacr(self):"""hacr commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_hacr'):from.HacrimportHacrClsself._hacr=HacrCls(self._core,self._cmd_group)returnself._hacr@propertydefindSize(self):"""indSize commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_indSize'):from.IndSizeimportIndSizeClsself._indSize=IndSizeCls(self._core,self._cmd_group)returnself._indSize@propertydefis02(self):"""is02 commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_is02'):from.Is02importIs02Clsself._is02=Is02Cls(self._core,self._cmd_group)returnself._is02@propertydefsul(self):"""sul commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_sul'):from.SulimportSulClsself._sul=SulCls(self._core,self._cmd_group)returnself._suldefclone(self)->'SyInfoCls':"""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=SyInfoCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group