GroupXsiPolicyProfileGetAssignedUserListRequest
Bases: OCIRequest
Get a list of user within a group that have a given user Xsi policy profile assigned. The response is either a GroupXsiPolicyProfileGetAssignedUserListResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
xsi_policy_profile (XsiPolicyProfileKey):
response_size_limit (Optional[int]):
search_criteria_user_id (Optional[List[SearchCriteriaUserId]]):
search_criteria_user_last_name (Optional[List[SearchCriteriaUserLastName]]):
search_criteria_user_first_name (Optional[List[SearchCriteriaUserFirstName]]):
search_criteria_dn (Optional[List[SearchCriteriaDn]]):
search_criteria_extension (Optional[List[SearchCriteriaExtension]]):
Source code in src/mercury_ocip_fast/commands/commands.py
60048 60049 60050 60051 60052 60053 60054 60055 60056 60057 60058 60059 60060 60061 60062 60063 60064 60065 60066 60067 60068 60069 60070 60071 60072 60073 60074 60075 60076 60077 60078 60079 60080 60081 60082 60083 60084 60085 60086 60087 60088 60089 60090 60091 60092 60093 60094 60095 60096 60097 60098 60099 60100 60101 60102 60103 60104 60105 60106 60107 | |
Responses
Bases: OCIDataResponse
Response to GroupXsiPolicyProfileGetAssignedUserListRequest. Contains a table of user that have the user Xsi Policy Profile assigned. The column headings are: "User Id", "Last Name", "First Name", "Phone Number" "Department" and "Extension".
Attributes:
user_table (OCITable):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupXsiPolicyProfileGetAssignedUserListRequest
client = Client()
command = GroupXsiPolicyProfileGetAssignedUserListRequest(
service_provider_id=...,
group_id=...,
xsi_policy_profile=...,
response_size_limit=...,
search_criteria_user_id=...,
search_criteria_user_last_name=...,
search_criteria_user_first_name=...,
search_criteria_dn=...,
search_criteria_extension=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("GroupXsiPolicyProfileGetAssignedUserListRequest",
service_provider_id=...,
group_id=...,
xsi_policy_profile=...,
response_size_limit=...,
search_criteria_user_id=...,
search_criteria_user_last_name=...,
search_criteria_user_first_name=...,
search_criteria_dn=...,
search_criteria_extension=...,
)
print(response)