SystemProvisioningValidationModifyRequest
Bases: OCIRequest
Request to modify the system's provisioning validation attributes. 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:
denyMobilityNumberAsRedirectionDestination
denyEnterpriseNumberAsNetworkLocationDestination
denyAutoAttendantIdentityAsAutoAttendantTransferNumber
Attributes:
is_active (Optional[bool]):
is_network_server_query_active (Optional[bool]):
timeout_seconds (Optional[int]):
deny_mobility_number_as_redirection_destination (Optional[bool]):
deny_enterprise_number_as_network_location_destination (Optional[bool]):
deny_auto_attendant_identity_as_auto_attendant_transfer_number (Optional[bool]):
Source code in src/mercury_ocip/commands/commands.py
92693 92694 92695 92696 92697 92698 92699 92700 92701 92702 92703 92704 92705 92706 92707 92708 92709 92710 92711 92712 92713 92714 92715 92716 92717 92718 92719 92720 92721 92722 92723 92724 92725 92726 92727 92728 92729 92730 92731 92732 92733 92734 92735 92736 92737 92738 92739 92740 92741 92742 92743 92744 92745 | |
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemProvisioningValidationModifyRequest
client = Client()
command = SystemProvisioningValidationModifyRequest(
is_active=...,
is_network_server_query_active=...,
timeout_seconds=...,
deny_mobility_number_as_redirection_destination=...,
deny_enterprise_number_as_network_location_destination=...,
deny_auto_attendant_identity_as_auto_attendant_transfer_number=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("SystemProvisioningValidationModifyRequest",
is_active=...,
is_network_server_query_active=...,
timeout_seconds=...,
deny_mobility_number_as_redirection_destination=...,
deny_enterprise_number_as_network_location_destination=...,
deny_auto_attendant_identity_as_auto_attendant_transfer_number=...,
)
print(response)