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 @@ -3275,11 +3275,26 @@
"errorMessage": {
"type": "string",
"readOnly": true,
"description": "The message describing the error that occurred while attempting to index the item."
"description": "The message describing the error that occurred while processing the item."
}
},
"description": "Represents an item- or document-level indexing error."
},
"ItemWarning": {
"properties": {
"key": {
"type": "string",
"readOnly": true,
"description": "The key of the item which generated a warning."
},
"message": {
"type": "string",
"readOnly": true,
"description": "The message describing the warning that occurred while processing the item."
}
},
"description": "Represents an item-level warning."
},
"IndexerExecutionResult": {
"properties": {
"status": {
Expand Down Expand Up @@ -3312,6 +3327,14 @@
},
"description": "The item-level indexing errors."
},
"warnings": {
"type": "array",
"readOnly": true,
"items": {
"$ref": "#/definitions/ItemWarning"
},
"description": "The item-level indexing warnings."
},
"itemsProcessed": {
"x-ms-client-name": "ItemCount",
"type": "integer",
Expand Down