SystemLicensingGetSystemLicenseListRequest22V2
Bases: OCIRequest
Request to get the list of system licenses in the system. The response is either a SystemLicensingGetSystemLicenseListResponse22V2 or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemLicensingGetSystemLicenseListRequest22V2.
Attributes:
license (Optional[List[str]]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemLicensingGetSystemLicenseListRequest22V2
client = Client()
command = SystemLicensingGetSystemLicenseListRequest22V2()
response = client.command(command)
print(response)