[docs]classApmCls:"""Apm commands group definition. 7 total commands, 6 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("apm",core,parent)@propertydefcbci(self):"""cbci commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_cbci'):from.CbciimportCbciClsself._cbci=CbciCls(self._core,self._cmd_group)returnself._cbci@propertydefcbIndex(self):"""cbIndex commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_cbIndex'):from.CbIndeximportCbIndexClsself._cbIndex=CbIndexCls(self._core,self._cmd_group)returnself._cbIndex@propertydefcbua(self):"""cbua commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_cbua'):from.CbuaimportCbuaClsself._cbua=CbuaCls(self._core,self._cmd_group)returnself._cbua@propertydefmapCoordinates(self):"""mapCoordinates commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_mapCoordinates'):from.MapCoordinatesimportMapCoordinatesClsself._mapCoordinates=MapCoordinatesCls(self._core,self._cmd_group)returnself._mapCoordinates@propertydefmode(self):"""mode commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_mode'):from.ModeimportModeClsself._mode=ModeCls(self._core,self._cmd_group)returnself._mode@propertydeflayer(self):"""layer commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_layer'):from.LayerimportLayerClsself._layer=LayerCls(self._core,self._cmd_group)returnself._layerdefclone(self)->'ApmCls':"""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=ApmCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group