SystemCallCenterEventRecordingFileParametersModifyRequest
Bases: OCIRequest
Request to modify Call Center Event Recording File system parameters. The response is either SuccessResponse or ErrorResponse.
Attributes:
file_retention_time_days (Optional[int]):
file_rotation_period_minutes (Optional[str]):
file_rotation_offset_minutes (Optional[int]):
remote_url (Optional[Nillable[str]]):
remote_user_id (Optional[Nillable[str]]):
remote_password (Optional[Nillable[str]]):
Source code in src/mercury_ocip/commands/commands.py
76260 76261 76262 76263 76264 76265 76266 76267 76268 76269 76270 76271 76272 76273 76274 76275 76276 76277 76278 76279 76280 76281 76282 76283 76284 76285 76286 76287 76288 76289 76290 76291 76292 76293 76294 76295 76296 76297 76298 76299 76300 76301 76302 76303 76304 76305 76306 76307 76308 76309 76310 | |
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemCallCenterEventRecordingFileParametersModifyRequest
client = Client()
command = SystemCallCenterEventRecordingFileParametersModifyRequest(
file_retention_time_days=...,
file_rotation_period_minutes=...,
file_rotation_offset_minutes=...,
remote_url=...,
remote_user_id=...,
remote_password=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("SystemCallCenterEventRecordingFileParametersModifyRequest",
file_retention_time_days=...,
file_rotation_period_minutes=...,
file_rotation_offset_minutes=...,
remote_url=...,
remote_user_id=...,
remote_password=...,
)
print(response)