SystemOCIReportingParametersGetRequest22
Bases: OCIRequest
Request to get the list of OCIReporting system parameters. The response is either SystemOCIReportingParametersGetResponse22 or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemOCIReportingParametersGetRequest22. Contains a list of system OCI Reporting parameters.
Attributes:
server_port (int):
enable_connection_ping (bool):
connection_ping_interval_seconds (int):
alter_passwords (bool):
enable_public_identity_reporting (bool):
secure (bool):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemOCIReportingParametersGetRequest22
client = Client()
command = SystemOCIReportingParametersGetRequest22()
response = client.command(command)
print(response)