UserServiceGetAssignmentListRequest
Bases: OCIRequest
Requests the user's service and service pack assignment list with status. The response is either UserServiceGetAssignmentListResponse or ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to UserServiceGetAssignmentListRequest. Contains two tables, one for the service packs, and one for the user services. The user table has the column headings: "Service Name", "Assigned", The service pack table's column headings are: "Service Pack Name", "Assigned", "Description". The "Assigned" column has either a true or false value
Attributes:
service_packs_assignment_table (OCITable):
user_services_assignment_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import UserServiceGetAssignmentListRequest
client = Client()
command = UserServiceGetAssignmentListRequest(
user_id=...,
)
response = client.command(command)
print(response)