@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
21 lines • 716 B
TypeScript
/**
* Specifies the supported indexing modes.
*/
export declare enum IndexingMode {
/**
* Index is updated synchronously with a create or update operation.
*
* With consistent indexing, query behavior is the same as the default consistency level for the container.
* The index is always kept up to date with the data.
*/
consistent = "consistent",
/**
* Index is updated asynchronously with respect to a create or update operation.
*
* With lazy indexing, queries are eventually consistent. The index is updated when the container is idle.
*/
lazy = "lazy",
/** No Index is provided. */
none = "none"
}
//# sourceMappingURL=IndexingMode.d.ts.map