[docs]classNiotCls:"""Niot commands group definition. 5 total commands, 5 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("niot",core,parent)@propertydefconfig(self):"""config commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_config'):from.ConfigimportConfigClsself._config=ConfigCls(self._core,self._cmd_group)returnself._config@propertydefinit(self):"""init commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_init'):from.InitimportInitClsself._init=InitCls(self._core,self._cmd_group)returnself._init@propertydefpower(self):"""power commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_power'):from.PowerimportPowerClsself._power=PowerCls(self._core,self._cmd_group)returnself._power@propertydefsfStart(self):"""sfStart commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_sfStart'):from.SfStartimportSfStartClsself._sfStart=SfStartCls(self._core,self._cmd_group)returnself._sfStart@propertydefstrt(self):"""strt commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_strt'):from.StrtimportStrtClsself._strt=StrtCls(self._core,self._cmd_group)returnself._strtdefclone(self)->'NiotCls':"""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=NiotCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group