ServiceProviderServiceGetAuthorizationListRequest
Bases: OCIRequest
Requests the service provider's service authorization status. The response is either ServiceProviderServiceGetAuthorizationListResponse or ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ServiceProviderServiceGetAuthorizationListRequest. Contains two tables, one for the group services and one for the user services. The Group Service table has column headings: "Service Name", "Authorized", "Assigned", "Limited", "Quantity", "Allocated", "Licensed", "Service Pack Allocation" The User Service table has column headings: "Service Name", "Authorized", "Assigned", "Limited", "Quantity", "Allocated", "Licensed", "Service Pack Allocation", "User Assignable", "Service Pack Assignable".
Attributes:
group_services_authorization_table (OCITable):
user_services_authorization_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ServiceProviderServiceGetAuthorizationListRequest
client = Client()
command = ServiceProviderServiceGetAuthorizationListRequest(
service_provider_id=...,
)
response = client.command(command)
print(response)