[docs]classSsearchCls:"""Ssearch commands group definition. 7 total commands, 6 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("ssearch",core,parent)@propertydefstype(self):"""stype commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_stype'):from.StypeimportStypeClsself._stype=StypeCls(self._core,self._cmd_group)returnself._stype@propertydeffplan(self):"""fplan commands group. 1 Sub-classes, 1 commands."""ifnothasattr(self,'_fplan'):from.FplanimportFplanClsself._fplan=FplanCls(self._core,self._cmd_group)returnself._fplan@propertydefmspur(self):"""mspur commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_mspur'):from.MspurimportMspurClsself._mspur=MspurCls(self._core,self._cmd_group)returnself._mspur@propertydefrremove(self):"""rremove commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_rremove'):from.RremoveimportRremoveClsself._rremove=RremoveCls(self._core,self._cmd_group)returnself._rremove@propertydefrmark(self):"""rmark commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_rmark'):from.RmarkimportRmarkClsself._rmark=RmarkCls(self._core,self._cmd_group)returnself._rmark@propertydefcontrol(self):"""control commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_control'):from.ControlimportControlClsself._control=ControlCls(self._core,self._cmd_group)returnself._controldefclone(self)->'SsearchCls':"""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=SsearchCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group