SystemCrInterfaceGetRequest22
Bases: OCIRequest
Gets the system level attributes of the Cr Interface. The response is either a SystemCrInterfaceGetResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemCrInterfaceGetRequest22.
Attributes:
cr_audit_enabled (bool):
cr_audit_interval_milliseconds (int):
cr_audit_timeout_milliseconds (int):
cr_connection_enabled (bool):
cr_connection_timeout_milliseconds (int):
cr_tcp_connection_timeout_seconds (int):
cr_number_of_reconnection_attempts (int):
Source code in src/mercury_ocip_fast/commands/commands.py
143218 143219 143220 143221 143222 143223 143224 143225 143226 143227 143228 143229 143230 143231 143232 143233 143234 143235 143236 143237 143238 143239 143240 143241 143242 143243 143244 143245 143246 143247 143248 143249 143250 143251 143252 143253 143254 143255 143256 143257 143258 143259 143260 143261 143262 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemCrInterfaceGetRequest22
client = Client()
command = SystemCrInterfaceGetRequest22()
response = client.command(command)
print(response)