Class IndexingResult
java.lang.Object
com.azure.search.documents.models.IndexingResult
- All Implemented Interfaces:
Serializable
Status of an indexing operation for a single document.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionIndexingResult
(String key, boolean succeeded, int statusCode) Constructor ofIndexingResult
. -
Method Summary
Modifier and TypeMethodDescriptionGet the errorMessage property: The error message explaining why the indexing operation failed for the document identified by the key; null if indexing succeeded.getKey()
Get the key property: The key of a document that was in the indexing request.int
Get the statusCode property: The status code of the indexing operation.boolean
Get the succeeded property: A value indicating whether the indexing operation succeeded for the document identified by the key.
-
Constructor Details
-
IndexingResult
Constructor ofIndexingResult
.- Parameters:
key
- The key of a document that was in the indexing request.succeeded
- The error message explaining why the indexing operation failed for the document identified by the key; null if indexing succeeded.statusCode
- The status code of the indexing operation. Possible values include: 200 for a successful update or delete, 201 for successful document creation, 400 for a malformed input document, 404 for document not found, 409 for a version conflict, 422 when the index is temporarily unavailable, or 503 for when the service is too busy.
-
-
Method Details
-
getKey
Get the key property: The key of a document that was in the indexing request.- Returns:
- the key value.
-
getErrorMessage
Get the errorMessage property: The error message explaining why the indexing operation failed for the document identified by the key; null if indexing succeeded.- Returns:
- the errorMessage value.
-
isSucceeded
public boolean isSucceeded()Get the succeeded property: A value indicating whether the indexing operation succeeded for the document identified by the key.- Returns:
- the succeeded value.
-
getStatusCode
public int getStatusCode()Get the statusCode property: The status code of the indexing operation. Possible values include: 200 for a successful update or delete, 201 for successful document creation, 400 for a malformed input document, 404 for document not found, 409 for a version conflict, 422 when the index is temporarily unavailable, or 503 for when the service is too busy.- Returns:
- the statusCode value.
-