ServiceProviderCallProcessingModifyPolicyRequest15
Bases: OCIRequest
Modify the service provider level data associated with Call Processing Policy. The response is either a SuccessResponse or an ErrorResponse. The following elements are only used in AS data mode: useServiceProviderDCLIDSetting enableDialableCallerID allowConfigurableCLIDForRedirectingIdentity The following elements are only used in AS data mode and ignored in XS data mode: enablePhoneListLookup useMaxConcurrentTerminatingAlertingRequests maxConcurrentTerminatingAlertingRequests includeRedirectionsInMaximumNumberOfConcurrentCalls useUserPhoneNumberForGroupCallsWhenInternalCLIDUnavailable useUserPhoneNumberForEnterpriseCallsWhenInternalCLIDUnavailable allowMobileDNForRedirectingIdentity enableGatewayRoutePolicy networkCallsGatewayRouteIdentity networkURLCallsGatewayRouteIdentity emergencyCallsGatewayRouteIdentity repairCallsGatewayRouteIdentity callTypingErrorsGatewayRouteIdentity
The following elements are only used in XS data mode and ignored in AS data mode:
routeOverrideDomain
routeOverridePrefix
Attributes:
service_provider_id (str):
use_service_provider_dclid_setting (Optional[bool]):
use_max_simultaneous_calls (Optional[bool]):
max_simultaneous_calls (Optional[int]):
use_max_simultaneous_video_calls (Optional[bool]):
max_simultaneous_video_calls (Optional[int]):
use_max_call_time_for_answered_calls (Optional[bool]):
max_call_time_for_answered_calls_minutes (Optional[int]):
use_max_call_time_for_unanswered_calls (Optional[bool]):
max_call_time_for_unanswered_calls_minutes (Optional[int]):
media_policy_selection (Optional[str]):
supported_media_set_name (Optional[Nillable[str]]):
network_usage_selection (Optional[str]):
enforce_group_calling_line_identity_restriction (Optional[bool]):
allow_enterprise_group_call_typing_for_private_dialing_plan (Optional[bool]):
allow_enterprise_group_call_typing_for_public_dialing_plan (Optional[bool]):
override_clid_restriction_for_private_call_category (Optional[bool]):
use_enterprise_clid_for_private_call_category (Optional[bool]):
enable_enterprise_extension_dialing (Optional[bool]):
enforce_enterprise_calling_line_identity_restriction (Optional[bool]):
use_setting_level (Optional[str]):
conference_uri (Optional[Nillable[str]]):
use_max_concurrent_redirected_calls (Optional[bool]):
max_concurrent_redirected_calls (Optional[int]):
use_max_find_me_follow_me_depth (Optional[bool]):
max_find_me_follow_me_depth (Optional[int]):
max_redirection_depth (Optional[int]):
use_max_concurrent_find_me_follow_me_invocations (Optional[bool]):
max_concurrent_find_me_follow_me_invocations (Optional[int]):
clid_policy (Optional[str]):
emergency_clid_policy (Optional[str]):
allow_alternate_numbers_for_redirecting_identity (Optional[bool]):
enable_dialable_caller_id (Optional[bool]):
block_calling_name_for_external_calls (Optional[bool]):
allow_configurable_clid_for_redirecting_identity (Optional[bool]):
enterprise_calls_clid_policy (Optional[str]):
group_calls_clid_policy (Optional[str]):
enable_phone_list_lookup (Optional[bool]):
use_max_concurrent_terminating_alerting_requests (Optional[bool]):
max_concurrent_terminating_alerting_requests (Optional[int]):
include_redirections_in_maximum_number_of_concurrent_calls (Optional[bool]):
use_user_phone_number_for_group_calls_when_internal_clid_unavailable (Optional[bool]):
use_user_phone_number_for_enterprise_calls_when_internal_clid_unavailable (Optional[bool]):
route_override_domain (Optional[Nillable[str]]):
route_override_prefix (Optional[Nillable[str]]):
allow_mobile_dn_for_redirecting_identity (Optional[bool]):
enable_gateway_route_policy (Optional[bool]):
network_calls_gateway_route_identity (Optional[Nillable[str]]):
network_url_calls_gateway_route_identity (Optional[Nillable[str]]):
emergency_calls_gateway_route_identity (Optional[Nillable[str]]):
repair_calls_gateway_route_identity (Optional[Nillable[str]]):
call_typing_errors_gateway_route_identity (Optional[Nillable[str]]):
Source code in src/mercury_ocip_fast/commands/commands.py
64122 64123 64124 64125 64126 64127 64128 64129 64130 64131 64132 64133 64134 64135 64136 64137 64138 64139 64140 64141 64142 64143 64144 64145 64146 64147 64148 64149 64150 64151 64152 64153 64154 64155 64156 64157 64158 64159 64160 64161 64162 64163 64164 64165 64166 64167 64168 64169 64170 64171 64172 64173 64174 64175 64176 64177 64178 64179 64180 64181 64182 64183 64184 64185 64186 64187 64188 64189 64190 64191 64192 64193 64194 64195 64196 64197 64198 64199 64200 64201 64202 64203 64204 64205 64206 64207 64208 64209 64210 64211 64212 64213 64214 64215 64216 64217 64218 64219 64220 64221 64222 64223 64224 64225 64226 64227 64228 64229 64230 64231 64232 64233 64234 64235 64236 64237 64238 64239 64240 64241 64242 64243 64244 64245 64246 64247 64248 64249 64250 64251 64252 64253 64254 64255 64256 64257 64258 64259 64260 64261 64262 64263 64264 64265 64266 64267 64268 64269 64270 64271 64272 64273 64274 64275 64276 64277 64278 64279 64280 64281 64282 64283 64284 64285 64286 64287 64288 64289 64290 64291 64292 64293 64294 64295 64296 64297 64298 64299 64300 64301 64302 64303 64304 64305 64306 64307 64308 64309 64310 64311 64312 64313 64314 64315 64316 64317 64318 64319 64320 64321 64322 64323 64324 64325 64326 64327 64328 64329 64330 64331 64332 64333 64334 64335 64336 64337 64338 64339 64340 64341 64342 64343 64344 64345 64346 64347 64348 64349 64350 64351 64352 64353 64354 64355 64356 64357 64358 64359 64360 64361 64362 64363 64364 64365 64366 64367 64368 64369 64370 64371 64372 64373 64374 64375 64376 64377 64378 64379 64380 64381 64382 64383 64384 64385 64386 64387 64388 64389 64390 64391 64392 64393 64394 64395 64396 64397 64398 64399 64400 64401 64402 64403 64404 64405 64406 64407 64408 64409 64410 64411 64412 64413 64414 64415 64416 64417 64418 64419 64420 64421 64422 64423 64424 64425 64426 64427 64428 64429 64430 64431 64432 64433 64434 64435 64436 64437 64438 64439 64440 64441 64442 64443 64444 64445 64446 64447 64448 64449 64450 64451 64452 64453 64454 64455 64456 64457 64458 64459 64460 64461 64462 64463 64464 64465 64466 64467 64468 64469 64470 64471 64472 64473 64474 64475 64476 64477 64478 64479 64480 64481 64482 64483 64484 64485 64486 64487 64488 64489 64490 64491 | |
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import ServiceProviderCallProcessingModifyPolicyRequest15
client = Client()
command = ServiceProviderCallProcessingModifyPolicyRequest15(
service_provider_id=...,
use_service_provider_dclid_setting=...,
use_max_simultaneous_calls=...,
max_simultaneous_calls=...,
use_max_simultaneous_video_calls=...,
max_simultaneous_video_calls=...,
use_max_call_time_for_answered_calls=...,
max_call_time_for_answered_calls_minutes=...,
use_max_call_time_for_unanswered_calls=...,
max_call_time_for_unanswered_calls_minutes=...,
media_policy_selection=...,
supported_media_set_name=...,
network_usage_selection=...,
enforce_group_calling_line_identity_restriction=...,
allow_enterprise_group_call_typing_for_private_dialing_plan=...,
allow_enterprise_group_call_typing_for_public_dialing_plan=...,
override_clid_restriction_for_private_call_category=...,
use_enterprise_clid_for_private_call_category=...,
enable_enterprise_extension_dialing=...,
enforce_enterprise_calling_line_identity_restriction=...,
use_setting_level=...,
conference_uri=...,
use_max_concurrent_redirected_calls=...,
max_concurrent_redirected_calls=...,
use_max_find_me_follow_me_depth=...,
max_find_me_follow_me_depth=...,
max_redirection_depth=...,
use_max_concurrent_find_me_follow_me_invocations=...,
max_concurrent_find_me_follow_me_invocations=...,
clid_policy=...,
emergency_clid_policy=...,
allow_alternate_numbers_for_redirecting_identity=...,
enable_dialable_caller_id=...,
block_calling_name_for_external_calls=...,
allow_configurable_clid_for_redirecting_identity=...,
enterprise_calls_clid_policy=...,
group_calls_clid_policy=...,
enable_phone_list_lookup=...,
use_max_concurrent_terminating_alerting_requests=...,
max_concurrent_terminating_alerting_requests=...,
include_redirections_in_maximum_number_of_concurrent_calls=...,
use_user_phone_number_for_group_calls_when_internal_clid_unavailable=...,
use_user_phone_number_for_enterprise_calls_when_internal_clid_unavailable=...,
route_override_domain=...,
route_override_prefix=...,
allow_mobile_dn_for_redirecting_identity=...,
enable_gateway_route_policy=...,
network_calls_gateway_route_identity=...,
network_url_calls_gateway_route_identity=...,
emergency_calls_gateway_route_identity=...,
repair_calls_gateway_route_identity=...,
call_typing_errors_gateway_route_identity=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("ServiceProviderCallProcessingModifyPolicyRequest15",
service_provider_id=...,
use_service_provider_dclid_setting=...,
use_max_simultaneous_calls=...,
max_simultaneous_calls=...,
use_max_simultaneous_video_calls=...,
max_simultaneous_video_calls=...,
use_max_call_time_for_answered_calls=...,
max_call_time_for_answered_calls_minutes=...,
use_max_call_time_for_unanswered_calls=...,
max_call_time_for_unanswered_calls_minutes=...,
media_policy_selection=...,
supported_media_set_name=...,
network_usage_selection=...,
enforce_group_calling_line_identity_restriction=...,
allow_enterprise_group_call_typing_for_private_dialing_plan=...,
allow_enterprise_group_call_typing_for_public_dialing_plan=...,
override_clid_restriction_for_private_call_category=...,
use_enterprise_clid_for_private_call_category=...,
enable_enterprise_extension_dialing=...,
enforce_enterprise_calling_line_identity_restriction=...,
use_setting_level=...,
conference_uri=...,
use_max_concurrent_redirected_calls=...,
max_concurrent_redirected_calls=...,
use_max_find_me_follow_me_depth=...,
max_find_me_follow_me_depth=...,
max_redirection_depth=...,
use_max_concurrent_find_me_follow_me_invocations=...,
max_concurrent_find_me_follow_me_invocations=...,
clid_policy=...,
emergency_clid_policy=...,
allow_alternate_numbers_for_redirecting_identity=...,
enable_dialable_caller_id=...,
block_calling_name_for_external_calls=...,
allow_configurable_clid_for_redirecting_identity=...,
enterprise_calls_clid_policy=...,
group_calls_clid_policy=...,
enable_phone_list_lookup=...,
use_max_concurrent_terminating_alerting_requests=...,
max_concurrent_terminating_alerting_requests=...,
include_redirections_in_maximum_number_of_concurrent_calls=...,
use_user_phone_number_for_group_calls_when_internal_clid_unavailable=...,
use_user_phone_number_for_enterprise_calls_when_internal_clid_unavailable=...,
route_override_domain=...,
route_override_prefix=...,
allow_mobile_dn_for_redirecting_identity=...,
enable_gateway_route_policy=...,
network_calls_gateway_route_identity=...,
network_url_calls_gateway_route_identity=...,
emergency_calls_gateway_route_identity=...,
repair_calls_gateway_route_identity=...,
call_typing_errors_gateway_route_identity=...,
)
print(response)