Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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