SystemDeviceManagementGetEventStatusSummaryCountRequest
Bases: OCIRequest
Request a summary table of the number of events in state 'Pending', 'Queued Internally', and 'Completed' in the system per action. One row is returned per action. Actions are as per the DeviceManagementEventActionType (ex: Delete, Download, Rebuild, Reset, Upload). The state 'Queued Internally' includes total for events with status equal to 'Queued' and 'In Progress' as per DeviceManagementEventStatus. The response is either SystemDeviceManagementGetEventStatusSummaryCountResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemDeviceManagementGetEventStatusSummaryCountRequest. The column headings are "Action, "Pending", "Queued Internally", and "Completed"
Attributes:
status_count_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 SystemDeviceManagementGetEventStatusSummaryCountRequest
client = Client()
command = SystemDeviceManagementGetEventStatusSummaryCountRequest()
response = client.command(command)
print(response)