SystemBwDiameterRoutingRealmGetListRequest
Bases: OCIRequest
Requests the list of Diameter routing realms. The response is either SystemBwDiameterRoutingRealmGetListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Contains a 4 column table with column headings 'Instance', 'Realm', 'ApplicationID', and 'Default'. One row is present for each Diameter routing realm.
Attributes:
routing_realm_table (OCITable):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemBwDiameterRoutingRealmGetListRequest
client = Client()
command = SystemBwDiameterRoutingRealmGetListRequest()
response = client.command(command)
print(response)