Skip to content

Commit

Permalink
Add error and intervention actions. (Azure#23301)
Browse files Browse the repository at this point in the history
Add error and intervention actions.
  • Loading branch information
utsrkr authored and JoshLove-msft committed Apr 25, 2023
1 parent 1833637 commit 2caa781
Showing 1 changed file with 47 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1896,6 +1896,53 @@
"description": "To indicate if enumeration of data is in progress. \r\nUntil this is true, the TotalBytesToProcess may not be valid.",
"type": "boolean",
"readOnly": true
},
"error": {
"$ref": "#/definitions/CloudError",
"description": "Error, if any, in the stage",
"readOnly": true
},
"actions": {
"description": "Available actions on the job.",
"uniqueItems": false,
"type": "array",
"items": {
"enum": [
"None",
"MoveToCleanUpDevice",
"Resume",
"Restart",
"ReachOutToOperation"
],
"type": "string",
"x-ms-enum": {
"name": "CustomerResolutionCode",
"modelAsExtensible": true,
"values": [
{
"value": "None",
"description": "No Resolution Yet"
},
{
"value": "MoveToCleanUpDevice",
"description": "Clean the device"
},
{
"value": "Resume",
"description": "Resume the job to same stage"
},
{
"description": "Restart whole action.",
"value": "Restart"
},
{
"description": "Reach out to operation for further action.",
"value": "ReachOutToOperation"
}
]
}
},
"readOnly": true
}
}
},
Expand Down

0 comments on commit 2caa781

Please sign in to comment.