SystemCallRecordingModifyPlatformRequest22
Bases: OCIRequest
Modify the specified Call Recording platform. The response is either a SuccessResponse or an ErrorResponse.
The following elements are only used in AS data mode and ignored in XS data mode:
becomeResellerDefault
route
Attributes:
name (str):
net_address (Optional[str]):
port (Optional[Nillable[int]]):
media_stream (Optional[str]):
become_system_default (Optional[bool]):
become_reseller_default (Optional[str]):
transport_type (Optional[str]):
description (Optional[Nillable[str]]):
schema_version (Optional[str]):
support_video_recording (Optional[bool]):
route (Optional[Nillable[str]]):
Source code in src/mercury_ocip/commands/commands.py
81232 81233 81234 81235 81236 81237 81238 81239 81240 81241 81242 81243 81244 81245 81246 81247 81248 81249 81250 81251 81252 81253 81254 81255 81256 81257 81258 81259 81260 81261 81262 81263 81264 81265 81266 81267 81268 81269 81270 81271 81272 81273 81274 81275 81276 81277 81278 81279 81280 81281 81282 81283 81284 81285 81286 81287 81288 81289 81290 81291 81292 81293 81294 81295 81296 81297 81298 81299 81300 81301 81302 81303 81304 81305 81306 | |
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemCallRecordingModifyPlatformRequest22
client = Client()
command = SystemCallRecordingModifyPlatformRequest22(
name=...,
net_address=...,
port=...,
media_stream=...,
become_system_default=...,
become_reseller_default=...,
transport_type=...,
description=...,
schema_version=...,
support_video_recording=...,
route=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("SystemCallRecordingModifyPlatformRequest22",
name=...,
net_address=...,
port=...,
media_stream=...,
become_system_default=...,
become_reseller_default=...,
transport_type=...,
description=...,
schema_version=...,
support_video_recording=...,
route=...,
)
print(response)