Package version:

Interface SearchIndexerWarning

Represents an item-level warning.

interface SearchIndexerWarning {
    details?: string;
    documentationLink?: string;
    key?: string;
    message: string;
    name?: string;
}

Properties

details?: string

Additional, verbose details about the warning to assist in debugging the indexer. This may not be always available. NOTE: This property will not be serialized. It can only be populated by the server.

documentationLink?: string

A link to a troubleshooting guide for these classes of warnings. This may not be always available. NOTE: This property will not be serialized. It can only be populated by the server.

key?: string

The key of the item which generated a warning. NOTE: This property will not be serialized. It can only be populated by the server.

message: string

The message describing the warning that occurred while processing the item. NOTE: This property will not be serialized. It can only be populated by the server.

name?: string

The name of the source at which the warning originated. For example, this could refer to a particular skill in the attached skillset. This may not be always available. NOTE: This property will not be serialized. It can only be populated by the server.