Source code for RsCmwWcdmaSig.Implementations.Sense_.UesInfo_.UeAddress_.Ipv

from typing import List

from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
from .....Internal.RepeatedCapability import RepeatedCapability
from ..... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class Ipv: """Ipv commands group definition. 1 total commands, 0 Sub-groups, 1 group commands Repeated Capability: IPversion, default value after init: IPversion.IPv4""" def __init__(self, core: Core, parent): self._core = core self._base = CommandsGroup("ipv", core, parent) self._base.rep_cap = RepeatedCapability(self._base.group_name, 'repcap_iPversion_get', 'repcap_iPversion_set', repcap.IPversion.IPv4) def repcap_iPversion_set(self, enum_value: repcap.IPversion) -> 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 IPversion.Default Default value after init: IPversion.IPv4""" self._base.set_repcap_enum_value(enum_value) def repcap_iPversion_get(self) -> repcap.IPversion: """Returns the current default repeated capability for the child set/get methods""" # noinspection PyTypeChecker return self._base.get_repcap_enum_value()
[docs] def get(self, iPversion=repcap.IPversion.Default) -> List[str]: """SCPI: SENSe:WCDMa:SIGNaling<instance>:UESinfo:UEADdress:IPV<n> \n Snippet: value: List[str] = driver.sense.uesInfo.ueAddress.ipv.get(iPversion = repcap.IPversion.Default) \n Returns IPv4 address (<n> = 4) or the IPv6 prefix (<n> = 6) for each APN assigned to the UE by the R&S CMW. \n :param iPversion: optional repeated capability selector. Default value: IPv4 (settable in the interface 'Ipv') :return: ip_address: All used IP addresses/prefixes as a string""" iPversion_cmd_val = self._base.get_repcap_cmd_value(iPversion, repcap.IPversion) response = self._core.io.query_str(f'SENSe:WCDMa:SIGNaling<Instance>:UESinfo:UEADdress:IPV{iPversion_cmd_val}?') return Conversions.str_to_str_list(response)
def clone(self) -> 'Ipv': """Clones the group by creating new object from it and its whole existing sub-groups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = Ipv(self._core, self._base.parent) self._base.synchronize_repcaps(new_group) return new_group