Skip to content

SystemShInterfaceParametersGetRequest17

Bases: OCIRequest

Retrieves the Sh Interface system parameters. The response is either a SystemShInterfaceParametersGetResponse or an ErrorResponse.

Attributes:

Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemShInterfaceParametersGetRequest17(OCIRequest):
    """Retrieves the Sh Interface system parameters.
        The response is either a SystemShInterfaceParametersGetResponse or an ErrorResponse.

    Attributes:

    """

Responses

Bases: OCIDataResponse

Response to SystemShInterfaceParametersGetRequest. Contains the Sh Interface system parameters.

Attributes:

hss_realm (Optional[str]):

public_identity_refresh_delay_seconds (int):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemShInterfaceParametersGetResponse17(OCIDataResponse):
    """Response to SystemShInterfaceParametersGetRequest.  Contains the Sh Interface system parameters.

    Attributes:

        hss_realm (Optional[str]):

        public_identity_refresh_delay_seconds (int):

    """

    hss_realm: Optional[str] = field(default=None, metadata={"alias": "hssRealm"})

    public_identity_refresh_delay_seconds: int = field(
        metadata={"alias": "publicIdentityRefreshDelaySeconds"}
    )

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 SystemShInterfaceParametersGetRequest17

client = Client()

command = SystemShInterfaceParametersGetRequest17()

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip_fast.client import Client

client = Client()

response = client.raw_command("SystemShInterfaceParametersGetRequest17")

print(response)