Uri

SCPI Command:

CONFigure:AFRF:MEASurement<Instance>:VOIP:URI:CMA
CONFigure:AFRF:MEASurement<Instance>:VOIP:URI:IP
CONFigure:AFRF:MEASurement<Instance>:VOIP:URI:PORT
CONFigure:AFRF:MEASurement<Instance>:VOIP:URI:USER
class UriCls[source]

Uri commands group definition. 4 total commands, 0 Subgroups, 4 group commands

get_cma() str[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:VOIP:URI:CMA
value: str = driver.configure.afRf.measurement.voip.uri.get_cma()

Specifies the <user> part of the URI of the CMA (‘sip:<user>@<IP address>’) .

return:

address: String with user part

get_ip() str[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:VOIP:URI:IP
value: str = driver.configure.afRf.measurement.voip.uri.get_ip()

Specifies the <IP address> part of the URI of the DUT (‘sip:<user>@<IP address>’) .

return:

address: IP address as string

get_port() int[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:VOIP:URI:PORT
value: int = driver.configure.afRf.measurement.voip.uri.get_port()

Specifies the URI port number of the DUT.

return:

port: Range: 1024 to 65.535E+3

get_user() str[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:VOIP:URI:USER
value: str = driver.configure.afRf.measurement.voip.uri.get_user()

Specifies the <user> part of the URI of the DUT (‘sip:<user>@<IP address>’) .

return:

user: String with user part

set_cma(address: str) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:VOIP:URI:CMA
driver.configure.afRf.measurement.voip.uri.set_cma(address = '1')

Specifies the <user> part of the URI of the CMA (‘sip:<user>@<IP address>’) .

param address:

String with user part

set_ip(address: str) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:VOIP:URI:IP
driver.configure.afRf.measurement.voip.uri.set_ip(address = '1')

Specifies the <IP address> part of the URI of the DUT (‘sip:<user>@<IP address>’) .

param address:

IP address as string

set_port(port: int) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:VOIP:URI:PORT
driver.configure.afRf.measurement.voip.uri.set_port(port = 1)

Specifies the URI port number of the DUT.

param port:

Range: 1024 to 65.535E+3

set_user(user: str) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:VOIP:URI:USER
driver.configure.afRf.measurement.voip.uri.set_user(user = '1')

Specifies the <user> part of the URI of the DUT (‘sip:<user>@<IP address>’) .

param user:

String with user part