from .........Internal.Core import Core
from .........Internal.CommandsGroup import CommandsGroup
from .........Internal.RepeatedCapability import RepeatedCapability
from ......... import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class CfgCls:
"""Cfg commands group definition. 5 total commands, 5 Subgroups, 0 group commands
Repeated Capability: ConfigurationNull, default value after init: ConfigurationNull.Nr0"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("cfg", core, parent)
self._cmd_group.rep_cap = RepeatedCapability(self._cmd_group.group_name, 'repcap_configurationNull_get', 'repcap_configurationNull_set', repcap.ConfigurationNull.Nr0)
def repcap_configurationNull_set(self, configurationNull: repcap.ConfigurationNull) -> None:
"""Repeated Capability default value numeric suffix.
This value is used, if you do not explicitely set it in the child set/get methods, or if you leave it to ConfigurationNull.Default
Default value after init: ConfigurationNull.Nr0"""
self._cmd_group.set_repcap_enum_value(configurationNull)
def repcap_configurationNull_get(self) -> repcap.ConfigurationNull:
"""Returns the current default repeated capability for the child set/get methods"""
# noinspection PyTypeChecker
return self._cmd_group.get_repcap_enum_value()
@property
def perd(self):
"""perd commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_perd'):
from .Perd import PerdCls
self._perd = PerdCls(self._core, self._cmd_group)
return self._perd
@property
def rep(self):
"""rep commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_rep'):
from .Rep import RepCls
self._rep = RepCls(self._core, self._cmd_group)
return self._rep
@property
def scof(self):
"""scof commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_scof'):
from .Scof import ScofCls
self._scof = ScofCls(self._core, self._cmd_group)
return self._scof
@property
def sttm(self):
"""sttm commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_sttm'):
from .Sttm import SttmCls
self._sttm = SttmCls(self._core, self._cmd_group)
return self._sttm
@property
def subc(self):
"""subc commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_subc'):
from .Subc import SubcCls
self._subc = SubcCls(self._core, self._cmd_group)
return self._subc
def clone(self) -> 'CfgCls':
"""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 = CfgCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group