Source code for RsSmbv.Implementations.System.Security.Mmem.Protect.State

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
from ......Internal.Types import DataType
from ......Internal.ArgSingleList import ArgSingleList
from ......Internal.ArgSingle import ArgSingle


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class StateCls: """State commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("state", core, parent)
[docs] def set(self, sec_pass_word: str, mmem_prot_state: bool) -> None: """SCPI: SYSTem:SECurity:MMEM:PROTect:[STATe] \n Snippet: driver.system.security.mmem.protect.state.set(sec_pass_word = 'abc', mmem_prot_state = False) \n No command help available \n :param sec_pass_word: No help available :param mmem_prot_state: No help available """ param = ArgSingleList().compose_cmd_string(ArgSingle('sec_pass_word', sec_pass_word, DataType.String), ArgSingle('mmem_prot_state', mmem_prot_state, DataType.Boolean)) self._core.io.write(f'SYSTem:SECurity:MMEM:PROTect:STATe {param}'.rstrip())
[docs] def get(self) -> bool: """SCPI: SYSTem:SECurity:MMEM:PROTect:[STATe] \n Snippet: value: bool = driver.system.security.mmem.protect.state.get() \n No command help available \n :return: mmem_prot_state: No help available""" response = self._core.io.query_str(f'SYSTem:SECurity:MMEM:PROTect:STATe?') return Conversions.str_to_bool(response)