SystemCallProcessingPolicyProfileVoicePortalProfileModifyRequest
Bases: OCIRequest
Modify a call processing policy profile voice portal type profile in system. 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: useMaxCallsPerSecond maxCallsPerSecond
Attributes:
call_processing_policy_profile_name (str):
use_clid_policy (Optional[bool]):
clid_policy (Optional[str]):
use_group_name (Optional[bool]):
block_calling_name_for_external_calls (Optional[bool]):
allow_configurable_clid_for_redirecting_identity (Optional[bool]):
allow_department_clid_name_override (Optional[bool]):
enterprise_calls_clid_policy (Optional[str]):
enterprise_group_calls_clid_policy (Optional[str]):
service_provider_group_calls_clid_policy (Optional[str]):
use_call_limits_policy (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]):
max_redirection_depth (Optional[int]):
use_translation_routing_policy (Optional[bool]):
network_usage_selection (Optional[str]):
enable_enterprise_extension_dialing (Optional[bool]):
allow_enterprise_group_call_typing_for_private_dialing_plan (Optional[bool]):
allow_enterprise_group_call_typing_for_public_dialing_plan (Optional[bool]):
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]):
use_max_calls_per_second (Optional[bool]):
max_calls_per_second (Optional[int]):
Source code in src/mercury_ocip/commands/commands.py
80638 80639 80640 80641 80642 80643 80644 80645 80646 80647 80648 80649 80650 80651 80652 80653 80654 80655 80656 80657 80658 80659 80660 80661 80662 80663 80664 80665 80666 80667 80668 80669 80670 80671 80672 80673 80674 80675 80676 80677 80678 80679 80680 80681 80682 80683 80684 80685 80686 80687 80688 80689 80690 80691 80692 80693 80694 80695 80696 80697 80698 80699 80700 80701 80702 80703 80704 80705 80706 80707 80708 80709 80710 80711 80712 80713 80714 80715 80716 80717 80718 80719 80720 80721 80722 80723 80724 80725 80726 80727 80728 80729 80730 80731 80732 80733 80734 80735 80736 80737 80738 80739 80740 80741 80742 80743 80744 80745 80746 80747 80748 80749 80750 80751 80752 80753 80754 80755 80756 80757 80758 80759 80760 80761 80762 80763 80764 80765 80766 80767 80768 80769 80770 80771 80772 80773 80774 80775 80776 80777 80778 80779 80780 80781 80782 80783 80784 80785 80786 80787 80788 80789 80790 80791 80792 80793 80794 80795 80796 80797 80798 80799 80800 80801 80802 80803 80804 80805 80806 80807 80808 80809 80810 80811 80812 80813 80814 80815 80816 80817 80818 80819 80820 80821 80822 80823 80824 80825 80826 80827 | |
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemCallProcessingPolicyProfileVoicePortalProfileModifyRequest
client = Client()
command = SystemCallProcessingPolicyProfileVoicePortalProfileModifyRequest(
call_processing_policy_profile_name=...,
use_clid_policy=...,
clid_policy=...,
use_group_name=...,
block_calling_name_for_external_calls=...,
allow_configurable_clid_for_redirecting_identity=...,
allow_department_clid_name_override=...,
enterprise_calls_clid_policy=...,
enterprise_group_calls_clid_policy=...,
service_provider_group_calls_clid_policy=...,
use_call_limits_policy=...,
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=...,
max_redirection_depth=...,
use_translation_routing_policy=...,
network_usage_selection=...,
enable_enterprise_extension_dialing=...,
allow_enterprise_group_call_typing_for_private_dialing_plan=...,
allow_enterprise_group_call_typing_for_public_dialing_plan=...,
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=...,
use_max_calls_per_second=...,
max_calls_per_second=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("SystemCallProcessingPolicyProfileVoicePortalProfileModifyRequest",
call_processing_policy_profile_name=...,
use_clid_policy=...,
clid_policy=...,
use_group_name=...,
block_calling_name_for_external_calls=...,
allow_configurable_clid_for_redirecting_identity=...,
allow_department_clid_name_override=...,
enterprise_calls_clid_policy=...,
enterprise_group_calls_clid_policy=...,
service_provider_group_calls_clid_policy=...,
use_call_limits_policy=...,
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=...,
max_redirection_depth=...,
use_translation_routing_policy=...,
network_usage_selection=...,
enable_enterprise_extension_dialing=...,
allow_enterprise_group_call_typing_for_private_dialing_plan=...,
allow_enterprise_group_call_typing_for_public_dialing_plan=...,
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=...,
use_max_calls_per_second=...,
max_calls_per_second=...,
)
print(response)