Source code for RsCMX_Signaling.Implementations.Remove.Signaling.Topology.Fgs

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class FgsCls: """Fgs commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("fgs", core, parent)
[docs] def set(self, name_ta_5_g: str, name_cell: str) -> None: """SCPI: REMove:SIGNaling:TOPology:FGS \n Snippet: driver.remove.signaling.topology.fgs.set(name_ta_5_g = 'abc', name_cell = 'abc') \n Removes the link between a cell and a 5GS tracking area. \n :param name_ta_5_g: No help available :param name_cell: No help available """ param = ArgSingleList().compose_cmd_string(ArgSingle('name_ta_5_g', name_ta_5_g, DataType.String), ArgSingle('name_cell', name_cell, DataType.String)) self._core.io.write(f'REMove:SIGNaling:TOPology:FGS {param}'.rstrip())