SystemBwDiameterRoutingPeerGetListRequest
Bases: OCIRequest
Requests the list of Diameter routing peers associated with the specified realm. The response is either SystemBwDiameterRoutingPeerGetListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Contains a 6 column table with column headings 'Instance', 'Realm', 'ApplicationID', 'Identity, 'Priority', and 'Weight'. One row is present for each Diameter Routing Peer.
Attributes:
routing_peer_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemBwDiameterRoutingPeerGetListRequest
client = Client()
command = SystemBwDiameterRoutingPeerGetListRequest()
response = client.command(command)
print(response)