SystemXsiPolicyProfileGetListRequest
Bases: OCIRequest
Get the system Xsi policy profile list. The response is either SystemXsiPolicyProfileGetListResponse or ErrorResponse.
Attributes:
xsi_policy_profile_level (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemXsiPolicyProfileGetListRequest Contains a table with column headings: "Name", "Level", "Description", "Default".
Attributes:
xsi_policy_profile_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 SystemXsiPolicyProfileGetListRequest
client = Client()
command = SystemXsiPolicyProfileGetListRequest(
xsi_policy_profile_level=...,
)
response = client.command(command)
print(response)