from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
from ..... import enums
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class UpdateCls:
"""
| Commands in total: 2
| Subgroups: 1
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("update", core, parent)
@property
def level(self):
"""
| Commands in total: 1
| Subgroups: 1
| Direct child commands: 0
"""
if not hasattr(self, '_level'):
from .Level import LevelCls
self._level = LevelCls(self._core, self._cmd_group)
return self._level
[docs]
def set_value(self, action_sel: enums.CalDataUpdate) -> None:
"""
``CALibration<HW>:DATA:UPDate`` \n
Snippet: ``driver.calibration.data.update.set_value(action_sel = enums.CalDataUpdate.BBFRC)`` \n
No help available
"""
param = Conversions.enum_scalar_to_str(action_sel, enums.CalDataUpdate)
self._core.io.write(f'CALibration<HwInstance>:DATA:UPDate {param}')
def clone(self) -> 'UpdateCls':
"""
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 = UpdateCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group