SystemBwDiameterPeerGetListRequest
Bases: OCIRequest
Requests the list of Diameter peers. The response is either SystemBwDiameterPeerGetListResponse22 or ErrorResponse
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Contains a 6 column table with column headings 'Instance', 'Identity', 'IP Address', 'Port', 'Enabled' and 'Secure'. One row is present for each peer.
Attributes:
peer_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 SystemBwDiameterPeerGetListRequest
client = Client()
command = SystemBwDiameterPeerGetListRequest()
response = client.command(command)
print(response)