ServiceProviderXsiPolicyProfileGetAssignedGroupListRequest
Bases: OCIRequest
Get a list of group within a service provider that have a given group Xsi policy profile assigned. The response is either a ServiceProviderXsiPolicyProfileGetAssignedGroupListResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
xsi_policy_profile (XsiPolicyProfileKey):
response_size_limit (Optional[int]):
search_criteria_group_id (Optional[List[SearchCriteriaGroupId]]):
search_criteria_group_name (Optional[List[SearchCriteriaGroupName]]):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ServiceProviderXsiPolicyProfileGetAssignedGroupListRequest. Contains a table of group that have the group Xsi Policy Profile assigned. The column headings are: "Group Id", "Group Name".
Attributes:
group_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 ServiceProviderXsiPolicyProfileGetAssignedGroupListRequest
client = Client()
command = ServiceProviderXsiPolicyProfileGetAssignedGroupListRequest(
service_provider_id=...,
xsi_policy_profile=...,
response_size_limit=...,
search_criteria_group_id=...,
search_criteria_group_name=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("ServiceProviderXsiPolicyProfileGetAssignedGroupListRequest",
service_provider_id=...,
xsi_policy_profile=...,
response_size_limit=...,
search_criteria_group_id=...,
search_criteria_group_name=...,
)
print(response)