Interface ISearchIndexManager
Assembly: Couchbase.NetClient.dll
Syntax
public interface ISearchIndexManager
Methods
|
Edit this page
View Source
AllowQueryingAsync(string, AllowQueryingSearchIndexOptions?, IScope?)
Declaration
Task AllowQueryingAsync(string indexName, AllowQueryingSearchIndexOptions? options = null, IScope? scope = null)
Parameters
Returns
|
Edit this page
View Source
DisallowQueryingAsync(string, DisallowQueryingSearchIndexOptions?, IScope?)
Declaration
Task DisallowQueryingAsync(string indexName, DisallowQueryingSearchIndexOptions? options = null, IScope? scope = null)
Parameters
Returns
|
Edit this page
View Source
DropIndexAsync(string, DropSearchIndexOptions?, IScope?)
Declaration
Task DropIndexAsync(string indexName, DropSearchIndexOptions? options = null, IScope? scope = null)
Parameters
Returns
|
Edit this page
View Source
FreezePlanAsync(string, FreezePlanSearchIndexOptions?, IScope?)
Declaration
Task FreezePlanAsync(string indexName, FreezePlanSearchIndexOptions? options = null, IScope? scope = null)
Parameters
Returns
|
Edit this page
View Source
GetAllIndexesAsync(GetAllSearchIndexesOptions?, IScope?)
Declaration
Task<IEnumerable<SearchIndex>> GetAllIndexesAsync(GetAllSearchIndexesOptions? options = null, IScope? scope = null)
Parameters
Returns
|
Edit this page
View Source
GetIndexAsync(string, GetSearchIndexOptions?, IScope?)
Declaration
Task<SearchIndex> GetIndexAsync(string indexName, GetSearchIndexOptions? options = null, IScope? scope = null)
Parameters
Returns
|
Edit this page
View Source
GetIndexedDocumentsCountAsync(string, GetSearchIndexDocumentCountOptions?, IScope?)
Declaration
Task<int> GetIndexedDocumentsCountAsync(string indexName, GetSearchIndexDocumentCountOptions? options = null, IScope? scope = null)
Parameters
Returns
|
Edit this page
View Source
PauseIngestAsync(string, PauseIngestSearchIndexOptions?, IScope?)
Declaration
Task PauseIngestAsync(string indexName, PauseIngestSearchIndexOptions? options = null, IScope? scope = null)
Parameters
Returns
|
Edit this page
View Source
ResumeIngestAsync(string, ResumeIngestSearchIndexOptions?, IScope?)
Declaration
Task ResumeIngestAsync(string indexName, ResumeIngestSearchIndexOptions? options = null, IScope? scope = null)
Parameters
Returns
|
Edit this page
View Source
UnfreezePlanAsync(string, UnfreezePlanSearchIndexOptions?, IScope?)
Declaration
Task UnfreezePlanAsync(string indexName, UnfreezePlanSearchIndexOptions? options = null, IScope? scope = null)
Parameters
Returns
|
Edit this page
View Source
UpsertIndexAsync(SearchIndex, UpsertSearchIndexOptions?, IScope?)
Declaration
Task UpsertIndexAsync(SearchIndex indexDefinition, UpsertSearchIndexOptions? options = null, IScope? scope = null)
Parameters
Returns
Extension Methods