SystemAccountingGetRadiusServerListRequest
Bases: OCIRequest
Request to get a list of Radius Servers defined in the system. The response is either a SystemAccountingGetRadiusServerListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemAccountingGetRadiusServerListRequest. The Radius Server table column headings are: "Net Address", "Port", "Description"
Attributes:
radius_server_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemAccountingGetRadiusServerListRequest
client = Client()
command = SystemAccountingGetRadiusServerListRequest()
response = client.command(command)
print(response)