Skip to content

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_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemApplicationControllerGetListRequest(OCIRequest):
    """Get a list of application controllers that are configured for the system.
      The response is either SystemApplicationControllerGetListResponse or ErrorResponse.

    Attributes:

    """

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_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemApplicationControllerGetListResponse(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):

    """

    application_controller_table: OCITable = field(
        metadata={"alias": "applicationControllerTable"}
    )

Bases: OCIResponse

Source code in src/mercury_ocip_fast/commands/base_command.py
class ErrorResponse(OCIResponse):
    errorCode: Optional[int] = None
    summary: str
    summaryEnglish: str
    detail: Optional[str] = None

Example Usage

from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemApplicationControllerGetListRequest

client = Client()

command = SystemApplicationControllerGetListRequest()

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip_fast.client import Client

client = Client()

response = client.raw_command("SystemApplicationControllerGetListRequest")

print(response)