1{ 2 "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": { 17 "AllowedValues": ["Manual", "Oldest"] 18 }, 19 "Status": { 20 "Health": "OK", 21 "HealthRollup": "OK", 22 "State": "Enabled" 23 } 24 }, 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 } 49} 50