SystemApplicationControllerGetListRequest
Bases: OCIRequest
Get a list of application controllers that are configured for the system. The response is either SystemApplicationControllerGetListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemApplicationControllerGetListRequest. Contains a table with column headings: "Name", "Subscriber Id", "Channel Set Id", "Status". The column values for "Status" can either be "ready" or "notReady".
Attributes:
application_controller_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemApplicationControllerGetListRequest
client = Client()
command = SystemApplicationControllerGetListRequest()
response = client.command(command)
print(response)