blob: a5b55d9f10ca6d46150387f23e7c4edceecac612 [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.",
Sushil Singh44bfc202023-02-08 09:53:36 -06003 "TaskStarting": {
4 "TaskState": "Starting",
5 "TaskStatus": "OK"
6 },
aravinth0510350edc82022-09-30 06:33:48 +00007 "TaskRunning": {
8 "TaskState": "Running",
9 "TaskStatus": "OK"
10 },
11 "TaskCompleted": {
12 "TaskState": "Completed",
13 "TaskStatus": "OK"
14 },
15 "TaskException": {
16 "TaskState": "Exception",
17 "TaskStatus": "Warning"
18 },
19 "TaskService": {
20 "CompletedTaskOverWritePolicy": {
Patrick Williams12e33522022-12-08 06:13:12 -060021 "AllowedValues": ["Manual", "Oldest"]
Sushil Singh1560e652022-08-03 13:25:01 -050022 },
aravinth0510350edc82022-09-30 06:33:48 +000023 "Status": {
24 "Health": "OK",
25 "HealthRollup": "OK",
26 "State": "Enabled"
Sushil Singh1560e652022-08-03 13:25:01 -050027 }
aravinth0510350edc82022-09-30 06:33:48 +000028 },
29 "Task": {
30 "TaskState": {
31 "AllowedValues": [
32 "New",
33 "Starting",
34 "Running",
35 "Suspended",
36 "Interrupted",
37 "Pending",
38 "Stopping",
39 "Completed",
40 "Killed",
41 "Exception",
42 "Service",
43 "Cancelling",
44 "Cancelled"
45 ],
46 "AllowedCompletionTaskState": [
47 "Cancelled",
48 "Completed",
49 "Exception"
50 ]
51 }
52 }
Patrick Williams12e33522022-12-08 06:13:12 -060053}