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/commands/commands.py
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/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemShInterfaceParametersGetRequest17
client = Client()
command = SystemShInterfaceParametersGetRequest17()
response = client.command(command)
print(response)