Skip to content

SystemRoutePointExternalSystemGetListRequest

Bases: OCIRequest

Get a list of Route Point External Systems that are configured for the system. The response is either SystemRoutePointExternalSystemGetListResponse or ErrorResponse.

Attributes:

Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SystemRoutePointExternalSystemGetListRequest(OCIRequest):
    """Get a list of Route Point External Systems that are configured for the system.
      The response is either SystemRoutePointExternalSystemGetListResponse or ErrorResponse.

    Attributes:

    """

Responses

Bases: OCIDataResponse

Response to the SystemRoutePointExternalSystemGetListRequest.

Contains a table with column headings: "External System", "Description".

Attributes:

external_system_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SystemRoutePointExternalSystemGetListResponse(OCIDataResponse):
    """Response to the SystemRoutePointExternalSystemGetListRequest.

      Contains a table with column headings:
      \"External System\", \"Description\".

    Attributes:

        external_system_table (OCITable):

    """

    external_system_table: OCITable = field(metadata={"alias": "externalSystemTable"})

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 SystemRoutePointExternalSystemGetListRequest

client = Client()

command = SystemRoutePointExternalSystemGetListRequest()

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip.client import Client

client = Client()

response = client.raw_command("SystemRoutePointExternalSystemGetListRequest")

print(response)