Enables querying of an index.
The name of the index to enable querying for.
Optional
options: AllowSearchQueryingOptionsOptional parameters for this operation.
Optional
callback: NodeCallback<void>A node-style callback to be invoked after execution.
Performs analysis of a specific document by an index.
The name of the index to use for the analysis.
The document to analyze.
Optional
options: AnalyzeSearchDocumentOptionsOptional parameters for this operation.
Optional
callback: NodeCallback<any>A node-style callback to be invoked after execution.
Disables querying of an index.
The name of the index to disable querying for.
Optional
options: DisallowSearchQueryingOptionsOptional parameters for this operation.
Optional
callback: NodeCallback<void>A node-style callback to be invoked after execution.
Drops an index.
The name of the index to drop.
Optional
options: DropSearchIndexOptionsOptional parameters for this operation.
Optional
callback: NodeCallback<void>A node-style callback to be invoked after execution.
Freezes the indexing plan for execution of queries.
The name of the index to freeze the plan of.
Optional
options: FreezeSearchPlanOptionsOptional parameters for this operation.
Optional
callback: NodeCallback<void>A node-style callback to be invoked after execution.
Returns a list of all existing indexes.
Optional
options: GetAllSearchIndexesOptionsOptional parameters for this operation.
Optional
callback: NodeCallback<SearchIndex[]>A node-style callback to be invoked after execution.
Returns an index by it's name.
The index to retrieve.
Optional
options: GetSearchIndexOptionsOptional parameters for this operation.
Optional
callback: NodeCallback<SearchIndex>A node-style callback to be invoked after execution.
Returns the number of documents that have been indexed.
The name of the index to return the count for.
Optional
options: GetSearchIndexedDocumentsCountOptionsOptional parameters for this operation.
Optional
callback: NodeCallback<number>A node-style callback to be invoked after execution.
Pauses the ingestion of documents into an index.
The name of the index to pause.
Optional
options: PauseSearchIngestOptionsOptional parameters for this operation.
Optional
callback: NodeCallback<void>A node-style callback to be invoked after execution.
Resumes the ingestion of documents into an index.
The name of the index to resume.
Optional
options: ResumeSearchIngestOptionsOptional parameters for this operation.
Optional
callback: NodeCallback<void>A node-style callback to be invoked after execution.
Unfreezes the indexing plan for execution of queries.
The name of the index to freeze the plan of.
Optional
options: UnfreezeSearchPlanOptionsOptional parameters for this operation.
Optional
callback: NodeCallback<void>A node-style callback to be invoked after execution.
Creates or updates an existing index.
The index to update.
Optional
options: UpsertSearchIndexOptionsOptional parameters for this operation.
Optional
callback: NodeCallback<void>A node-style callback to be invoked after execution.
SearchIndexManager provides an interface for managing the search indexes on the cluster.