SystemPasswordSecurityParametersGetRequest
Bases: OCIRequest
Get the password security parameters for the system. The response is either a SystemPasswordSecurityParametersGetResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemPasswordSecurityParametersGetResponse. The response contains the password security parameters for the system.
Attributes:
use_existing_hashing (bool):
enforce_password_change_on_expiry (bool):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemPasswordSecurityParametersGetRequest
client = Client()
command = SystemPasswordSecurityParametersGetRequest()
response = client.command(command)
print(response)