다음을 통해 공유


SearchIndexerError Class

Definition

Represents an item- or document-level indexing error.

public class SearchIndexerError
public class SearchIndexerError : System.ClientModel.Primitives.IJsonModel<Azure.Search.Documents.Indexes.Models.SearchIndexerError>, System.ClientModel.Primitives.IPersistableModel<Azure.Search.Documents.Indexes.Models.SearchIndexerError>
type SearchIndexerError = class
type SearchIndexerError = class
    interface IJsonModel<SearchIndexerError>
    interface IPersistableModel<SearchIndexerError>
Public Class SearchIndexerError
Public Class SearchIndexerError
Implements IJsonModel(Of SearchIndexerError), IPersistableModel(Of SearchIndexerError)
Inheritance
SearchIndexerError
Implements

Properties

Details

Additional, verbose details about the error to assist in debugging the indexer. This may not be always available.

DocumentationLink

A link to a troubleshooting guide for these classes of errors. This may not be always available.

ErrorMessage

The message describing the error that occurred while processing the item.

Key

The key of the item for which indexing failed.

Name

The name of the source at which the error originated. For example, this could refer to a particular skill in the attached skillset. This may not be always available.

StatusCode

The status code indicating why the indexing operation failed. Possible values include: 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.

Methods

JsonModelWriteCore(Utf8JsonWriter, ModelReaderWriterOptions)

Explicit Interface Implementations

IJsonModel<SearchIndexerError>.Create(Utf8JsonReader, ModelReaderWriterOptions)

Reads one JSON value (including objects or arrays) from the provided reader and converts it to a model.

IJsonModel<SearchIndexerError>.Write(Utf8JsonWriter, ModelReaderWriterOptions)

Writes the model to the provided Utf8JsonWriter.

IPersistableModel<SearchIndexerError>.Create(BinaryData, ModelReaderWriterOptions)

Converts the provided BinaryData into a model.

IPersistableModel<SearchIndexerError>.GetFormatFromOptions(ModelReaderWriterOptions)

Gets the data interchange format (JSON, Xml, etc) that the model uses when communicating with the service.

IPersistableModel<SearchIndexerError>.Write(ModelReaderWriterOptions)

Writes the model into a BinaryData.

Applies to