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 @@ -131,7 +131,8 @@
"UploadTransientError",
"ConfigurationUnsupported",
"ContentMalformed",
"ContentUnsupported"
"ContentUnsupported",
"IdentityUnsupported"
],
"x-ms-enum": {
"name": "MediaJobErrorCode",
Expand Down Expand Up @@ -171,6 +172,10 @@
{
"value": "ContentUnsupported",
"description": "There was a problem with the format of the input (not valid media file, or an unsupported file/codec), check the validity of the input files."
},
{
"value": "IdentityUnsupported",
"description": "There is an error verifying to the account identity. Check and fix the identity configurations and retry. If unsuccessful, please contact support."
}
],
"modelAsExtensible": true
Expand All @@ -191,7 +196,8 @@
"Download",
"Upload",
"Configuration",
"Content"
"Content",
"Account"
],
"x-ms-enum": {
"name": "MediaJobErrorCategory",
Expand All @@ -215,6 +221,10 @@
{
"value": "Content",
"description": "The error is related to data in the input files."
},
{
"value": "Account",
"description": "The error is related to account information."
}
],
"modelAsExtensible": true
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add "modelAsString": true to each of the affected models.

Expand Down