Skip to content

SystemOCICallControlApplicationGetListRequest

Bases: OCIRequest

Get the OCI call control application list. The response is either SystemOCICallControlApplicationGetListResponse or ErrorResponse.

Attributes:

Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SystemOCICallControlApplicationGetListRequest(OCIRequest):
    """Get the OCI call control application list.
        The response is either SystemOCICallControlApplicationGetListResponse or ErrorResponse.

    Attributes:

    """

Responses

Bases: OCIDataResponse

Response to SystemOCICallControlApplicationGetListRequest. The table columns are: "Application Id", "Enabled System Wide", "Description" "Notification Timeout Seconds", "Max Event Channels Per Set" and "Channel Set Grace Period Seconds".

Attributes:

app_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SystemOCICallControlApplicationGetListResponse(OCIDataResponse):
    """Response to SystemOCICallControlApplicationGetListRequest. The table columns are:
        \"Application Id\", \"Enabled System Wide\", \"Description\" \"Notification Timeout Seconds\", \"Max Event Channels Per Set\"
        and \"Channel Set Grace Period Seconds\".

    Attributes:

        app_table (OCITable):

    """

    app_table: OCITable = field(metadata={"alias": "appTable"})

Bases: OCIResponse

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

Example Usage

from mercury_ocip.client import Client
from mercury_ocip.commands import SystemOCICallControlApplicationGetListRequest

client = Client()

command = SystemOCICallControlApplicationGetListRequest()

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip.client import Client

client = Client()

response = client.raw_command("SystemOCICallControlApplicationGetListRequest")

print(response)