ServiceProviderRoutePointExternalSystemGetAssignedGroupListRequest
Bases: OCIRequest
Requests a list of groups within a service provider that have a given external system assigned. It is possible to search by various criteria to restrict the number of rows returned. Multiple search criteria are logically ANDed together. The response is either a ServiceProviderRoutePointExternalSystemGetAssignedGroupListResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
external_system (str):
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 ServiceProviderRoutePointExternalSystemGetAssignedGroupListRequest. Contains a table with column headings: "Group Id", "Group Name" and a row for each group.
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 ServiceProviderRoutePointExternalSystemGetAssignedGroupListRequest
client = Client()
command = ServiceProviderRoutePointExternalSystemGetAssignedGroupListRequest(
service_provider_id=...,
external_system=...,
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("ServiceProviderRoutePointExternalSystemGetAssignedGroupListRequest",
service_provider_id=...,
external_system=...,
response_size_limit=...,
search_criteria_group_id=...,
search_criteria_group_name=...,
)
print(response)