[docs]classDetectCls:"""Detect commands group definition. 7 total commands, 6 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("detect",core,parent)@propertydefburst(self):"""burst commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_burst'):from.BurstimportBurstClsself._burst=BurstCls(self._core,self._cmd_group)returnself._burst@propertydefdefault(self):"""default commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_default'):from.DefaultimportDefaultClsself._default=DefaultCls(self._core,self._cmd_group)returnself._default@propertydefevaluation(self):"""evaluation commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_evaluation'):from.EvaluationimportEvaluationClsself._evaluation=EvaluationCls(self._core,self._cmd_group)returnself._evaluation@propertydefoff(self):"""off commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_off'):from.OffimportOffClsself._off=OffCls(self._core,self._cmd_group)returnself._off@propertydefreference(self):"""reference commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_reference'):from.ReferenceimportReferenceClsself._reference=ReferenceCls(self._core,self._cmd_group)returnself._reference@propertydefthreshold(self):"""threshold commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_threshold'):from.ThresholdimportThresholdClsself._threshold=ThresholdCls(self._core,self._cmd_group)returnself._thresholddefclone(self)->'DetectCls':"""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=DetectCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group