Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Swagger fixes as per s360 for databox. #23301

Merged
merged 1 commit into from
Mar 29, 2023
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