SystemSIPAuthenticationEndpointLockoutGetRequest
Bases: OCIRequest
Request to get sip authentication endpoint lockout data in the system. The response is either a SystemSIPAuthenticationEndpointLockoutGetResponse or an ErrorResponse.
Attributes:
response_size_limit (Optional[int]):
search_criteria_service_provider_id (Optional[List[SearchCriteriaServiceProviderId]]):
search_criteria_exact_organization_type (Optional[SearchCriteriaExactOrganizationType]):
search_criteria_group_id (Optional[List[SearchCriteriaGroupId]]):
search_criteria_line_port_user_part (Optional[List[SearchCriteriaLinePortUserPart]]):
search_criteria_line_port_domain (Optional[List[SearchCriteriaLinePortDomain]]):
search_criteria_user_last_name (Optional[List[SearchCriteriaUserLastName]]):
search_criteria_user_first_name (Optional[List[SearchCriteriaUserFirstName]]):
search_criteria_user_id (Optional[List[SearchCriteriaUserId]]):
Source code in src/mercury_ocip/commands/commands.py
93593 93594 93595 93596 93597 93598 93599 93600 93601 93602 93603 93604 93605 93606 93607 93608 93609 93610 93611 93612 93613 93614 93615 93616 93617 93618 93619 93620 93621 93622 93623 93624 93625 93626 93627 93628 93629 93630 93631 93632 93633 93634 93635 93636 93637 93638 93639 93640 93641 93642 93643 93644 93645 93646 93647 93648 93649 93650 93651 93652 93653 93654 | |
Responses
Bases: OCIDataResponse
Response to SystemSIPAuthenticationEndpointLockoutGetRequest. The column headings for the lockoutTable are: "Organization Id", "Organization Type", "Group Id", "Line/Port", "User ID", "First Name", "Last Name", "Lockout Started", "Lockout Expires", "Lockout Count". Lockout times are shown in the system GMT time. When a permanent lockout is shown, the "Lockout Expires" column is empty and the "Lockout Count" column contains the word Permanent.
Attributes:
lockout_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemSIPAuthenticationEndpointLockoutGetRequest
client = Client()
command = SystemSIPAuthenticationEndpointLockoutGetRequest(
response_size_limit=...,
search_criteria_service_provider_id=...,
search_criteria_exact_organization_type=...,
search_criteria_group_id=...,
search_criteria_line_port_user_part=...,
search_criteria_line_port_domain=...,
search_criteria_user_last_name=...,
search_criteria_user_first_name=...,
search_criteria_user_id=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("SystemSIPAuthenticationEndpointLockoutGetRequest",
response_size_limit=...,
search_criteria_service_provider_id=...,
search_criteria_exact_organization_type=...,
search_criteria_group_id=...,
search_criteria_line_port_user_part=...,
search_criteria_line_port_domain=...,
search_criteria_user_last_name=...,
search_criteria_user_first_name=...,
search_criteria_user_id=...,
)
print(response)