Skip to content

SystemRoutePointExternalSystemApplicationControllerGetRequest

Bases: OCIRequest

Get a list of Application Controllers assigned to the Route Point External Systems specified. The response is either SystemRoutePointExternalSystemApplicationControllerGetResponse or ErrorResponse.

Attributes:

external_system (str):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemRoutePointExternalSystemApplicationControllerGetRequest(OCIRequest):
    """Get a list of Application Controllers assigned to the Route Point External Systems specified.
      The response is either SystemRoutePointExternalSystemApplicationControllerGetResponse or ErrorResponse.

    Attributes:

        external_system (str):

    """

    external_system: str = field(metadata={"alias": "externalSystem"})

Responses

Bases: OCIDataResponse

Response to the SystemRoutePointExternalSystemApplicationControllerGetRequest.

Attributes:

application_controller (Optional[List[str]]):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemRoutePointExternalSystemApplicationControllerGetResponse(OCIDataResponse):
    """Response to the SystemRoutePointExternalSystemApplicationControllerGetRequest.

    Attributes:

        application_controller (Optional[List[str]]):

    """

    application_controller: Optional[List[str]] = field(
        default=None, metadata={"alias": "applicationController"}
    )

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 SystemRoutePointExternalSystemApplicationControllerGetRequest

client = Client()

command = SystemRoutePointExternalSystemApplicationControllerGetRequest(
    external_system=...,
)

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip_fast.client import Client

client = Client()

response = client.raw_command("SystemRoutePointExternalSystemApplicationControllerGetRequest",
    external_system=...,
)

print(response)