SystemXsiPolicyProfileGetRequest
Bases: OCIRequest
Get an existing Xsi policy profile. The response is either a SystemXsiPolicyProfileGetResponse or an ErrorResponse.
Attributes:
xsi_policy_profile (XsiPolicyProfileKey):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemXsiPolicyProfileGetRequest. The response contains the Xsi policy profile.
Attributes:
description (Optional[str]):
max_target_subscription (int):
default (bool):
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 SystemXsiPolicyProfileGetRequest
client = Client()
command = SystemXsiPolicyProfileGetRequest(
xsi_policy_profile=...,
)
response = client.command(command)
print(response)