Uri

SCPI Command:

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

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

get_cma() str[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:VOIP:URI:CMA
value: str = driver.source.afRf.generator.voip.uri.get_cma()

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

return:

cma_uri: String with user part

get_ip() str[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:VOIP:URI:IP
value: str = driver.source.afRf.generator.voip.uri.get_ip()

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

return:

uri_ip: IP address as string

get_port() int[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:VOIP:URI:PORT
value: int = driver.source.afRf.generator.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: SOURce:AFRF:GENerator<Instance>:VOIP:URI:USER
value: str = driver.source.afRf.generator.voip.uri.get_user()

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

return:

uri_user: String with user part

set_cma(cma_uri: str) None[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:VOIP:URI:CMA
driver.source.afRf.generator.voip.uri.set_cma(cma_uri = '1')

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

param cma_uri:

String with user part

set_ip(uri_ip: str) None[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:VOIP:URI:IP
driver.source.afRf.generator.voip.uri.set_ip(uri_ip = '1')

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

param uri_ip:

IP address as string

set_port(port: int) None[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:VOIP:URI:PORT
driver.source.afRf.generator.voip.uri.set_port(port = 1)

Specifies the URI port number of the DUT.

param port:

Range: 1024 to 65.535E+3

set_user(uri_user: str) None[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:VOIP:URI:USER
driver.source.afRf.generator.voip.uri.set_user(uri_user = '1')

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

param uri_user:

String with user part