Bearer

SCPI Command :

[CONFigure]:SIGNaling:LTE:UE:BEARer
class BearerCls[source]

Bearer commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class GetStruct[source]

Response structure. Fields:

  • Qci: enums.Qi: Value of the quality of service class identifier. Values defined in 3GPP TS 23.203, table 6.1.7. The GUI shows the designation of each value.

  • Max_Dl_Bitrate: int: Maximum DL bit rate allowed in the network.

  • Max_Ul_Bitrate: int: Maximum UL bit rate allowed in the network.

  • Gtd_Dl_Bitrate: int: DL bit rate guaranteed by the network for the bearer.

  • Gtd_Ul_Bitrate: int: UL bit rate guaranteed by the network for the bearer.

class SetStruct[source]

Structure for setting input parameters. Contains optional setting parameters. Fields:

  • Ue_Id: str: No parameter help available

  • Bearer_Id: int: No parameter help available

  • Qci: enums.Qi: Optional setting parameter. Value of the quality of service class identifier. Values defined in 3GPP TS 23.203, table 6.1.7. The GUI shows the designation of each value.

  • Max_Dl_Bitrate: int: Optional setting parameter. Maximum DL bit rate allowed in the network.

  • Max_Ul_Bitrate: int: Optional setting parameter. Maximum UL bit rate allowed in the network.

  • Gtd_Dl_Bitrate: int: Optional setting parameter. DL bit rate guaranteed by the network for the bearer.

  • Gtd_Ul_Bitrate: int: Optional setting parameter. UL bit rate guaranteed by the network for the bearer.

get(ue_id: str, bearer_id: int) GetStruct[source]
# SCPI: [CONFigure]:SIGNaling:LTE:UE:BEARer
value: GetStruct = driver.configure.signaling.lte.ue.bearer.get(ue_id = 'abc', bearer_id = 1)

Configures the existing bearer with the <BearerId>.

param ue_id:

No help available

param bearer_id:

No help available

return:

structure: for return value, see the help for GetStruct structure arguments.

set(structure: SetStruct) None[source]
# SCPI: [CONFigure]:SIGNaling:LTE:UE:BEARer
structure = driver.configure.signaling.lte.ue.bearer.SetStruct()
structure.Ue_Id: str = 'abc'
structure.Bearer_Id: int = 1
structure.Qci: enums.Qi = enums.Qi.Q1
structure.Max_Dl_Bitrate: int = 1
structure.Max_Ul_Bitrate: int = 1
structure.Gtd_Dl_Bitrate: int = 1
structure.Gtd_Ul_Bitrate: int = 1
driver.configure.signaling.lte.ue.bearer.set(structure)

Configures the existing bearer with the <BearerId>.

param structure:

for set value, see the help for SetStruct structure arguments.