SystemGeographicRedundancyUnreachableFromPrimaryGetUserListRequest22
Bases: OCIRequest
Get the list of users that are unreachable from the primary application server. The response is a SystemGeographicRedundancyUnreachableFromPrimaryGetUserListResponse22 or an ErrorResponse.
Attributes:
user_list_size_limit (Optional[int]):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemGeographicRedundancyUnreachableFromPrimaryGetUserListRequest22. The Unreachable From Primary User table column headings are: "User ID", "Lineport". The optional totalNumberOfUnreachableFromPrimaryUsers is returned only when the userListSizeLimit is set in the request and if the total number of unreachable from primary users is greater than the value of userListSizeLimit.
Attributes:
unreachable_from_primary_user_table (OCITable):
total_number_of_unreachable_from_primary_users (Optional[int]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemGeographicRedundancyUnreachableFromPrimaryGetUserListRequest22
client = Client()
command = SystemGeographicRedundancyUnreachableFromPrimaryGetUserListRequest22(
user_list_size_limit=...,
)
response = client.command(command)
print(response)