[docs]classNpdschCls:"""Npdsch commands group definition. 4 total commands, 4 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("npdsch",core,parent)@propertydefirep(self):"""irep commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_irep'):from.IrepimportIrepClsself._irep=IrepCls(self._core,self._cmd_group)returnself._irep@propertydefisf(self):"""isf commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_isf'):from.IsfimportIsfClsself._isf=IsfCls(self._core,self._cmd_group)returnself._isf@propertydefnrep(self):"""nrep commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_nrep'):from.NrepimportNrepClsself._nrep=NrepCls(self._core,self._cmd_group)returnself._nrep@propertydefnsf(self):"""nsf commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_nsf'):from.NsfimportNsfClsself._nsf=NsfCls(self._core,self._cmd_group)returnself._nsfdefclone(self)->'NpdschCls':"""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=NpdschCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group