[docs]classStreamCls:"""Stream commands group definition. 6 total commands, 6 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("stream",core,parent)@propertydefbuffilled(self):"""buffilled commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_buffilled'):from.BuffilledimportBuffilledClsself._buffilled=BuffilledCls(self._core,self._cmd_group)returnself._buffilled@propertydefbufRemain(self):"""bufRemain commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_bufRemain'):from.BufRemainimportBufRemainClsself._bufRemain=BufRemainCls(self._core,self._cmd_group)returnself._bufRemain@propertydefdrop(self):"""drop commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_drop'):from.DropimportDropClsself._drop=DropCls(self._core,self._cmd_group)returnself._drop@propertydefexec(self):"""exec commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_exec'):from.ExecimportExecClsself._exec=ExecCls(self._core,self._cmd_group)returnself._exec@propertydefwrdRead(self):"""wrdRead commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_wrdRead'):from.WrdReadimportWrdReadClsself._wrdRead=WrdReadCls(self._core,self._cmd_group)returnself._wrdRead@propertydefwrdWrite(self):"""wrdWrite commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_wrdWrite'):from.WrdWriteimportWrdWriteClsself._wrdWrite=WrdWriteCls(self._core,self._cmd_group)returnself._wrdWritedefclone(self)->'StreamCls':"""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=StreamCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group