blob: 2fa30c60dc13f7456772689f82783dbef2234455 [file] [log] [blame]
Sushil Singh1560e652022-08-03 13:25:01 -05001{
aravinth0510350edc82022-09-30 06:33:48 +00002 "comment": "This is a generic possible redfish standard task states.",
3 "TaskRunning": {
4 "TaskState": "Running",
5 "TaskStatus": "OK"
6 },
7 "TaskCompleted": {
8 "TaskState": "Completed",
9 "TaskStatus": "OK"
10 },
11 "TaskException": {
12 "TaskState": "Exception",
13 "TaskStatus": "Warning"
14 },
15 "TaskService": {
16 "CompletedTaskOverWritePolicy": {
Patrick Williams12e33522022-12-08 06:13:12 -060017 "AllowedValues": ["Manual", "Oldest"]
Sushil Singh1560e652022-08-03 13:25:01 -050018 },
aravinth0510350edc82022-09-30 06:33:48 +000019 "Status": {
20 "Health": "OK",
21 "HealthRollup": "OK",
22 "State": "Enabled"
Sushil Singh1560e652022-08-03 13:25:01 -050023 }
aravinth0510350edc82022-09-30 06:33:48 +000024 },
25 "Task": {
26 "TaskState": {
27 "AllowedValues": [
28 "New",
29 "Starting",
30 "Running",
31 "Suspended",
32 "Interrupted",
33 "Pending",
34 "Stopping",
35 "Completed",
36 "Killed",
37 "Exception",
38 "Service",
39 "Cancelling",
40 "Cancelled"
41 ],
42 "AllowedCompletionTaskState": [
43 "Cancelled",
44 "Completed",
45 "Exception"
46 ]
47 }
48 }
Patrick Williams12e33522022-12-08 06:13:12 -060049}