| Package | Description |
|---|---|
| com.azure.search.documents.indexes |
Package containing classes for creating
SearchIndexClient,
SearchIndexAsyncClient,
SearchIndexerClient, or
SearchIndexerAsyncClient used to perform resource management operations
on an Azure Cognitive Search service. |
| com.azure.search.documents.indexes.models |
Package containing classes used for resource management operations that are being sent-to and received-from an
Azure Cognitive Search service.
|
| Modifier and Type | Method and Description |
|---|---|
SearchIndexer |
SearchIndexerClient.createIndexer(SearchIndexer indexer)
Creates a new Azure Cognitive Search indexer.
|
SearchIndexer |
SearchIndexerClient.createOrUpdateIndexer(SearchIndexer indexer)
Creates a new Azure Cognitive Search indexer or updates an indexer if it already exists.
|
SearchIndexer |
SearchIndexerClient.getIndexer(String indexerName)
Retrieves an indexer definition.
|
| Modifier and Type | Method and Description |
|---|---|
SearchIndexer |
SearchIndexerClient.createIndexer(SearchIndexer indexer)
Creates a new Azure Cognitive Search indexer.
|
Mono<SearchIndexer> |
SearchIndexerAsyncClient.createIndexer(SearchIndexer indexer)
Creates a new Azure Cognitive Search indexer.
|
Mono<com.azure.core.http.rest.Response<SearchIndexer>> |
SearchIndexerAsyncClient.createIndexerWithResponse(SearchIndexer indexer)
Creates a new Azure Cognitive Search indexer.
|
com.azure.core.http.rest.Response<SearchIndexer> |
SearchIndexerClient.createIndexerWithResponse(SearchIndexer indexer,
com.azure.core.util.Context context)
Creates a new Azure Cognitive Search indexer.
|
SearchIndexer |
SearchIndexerClient.createOrUpdateIndexer(SearchIndexer indexer)
Creates a new Azure Cognitive Search indexer or updates an indexer if it already exists.
|
Mono<SearchIndexer> |
SearchIndexerAsyncClient.createOrUpdateIndexer(SearchIndexer indexer)
Creates a new Azure Cognitive Search indexer or updates an indexer if it already exists.
|
Mono<com.azure.core.http.rest.Response<SearchIndexer>> |
SearchIndexerAsyncClient.createOrUpdateIndexerWithResponse(SearchIndexer indexer,
boolean onlyIfUnchanged)
Creates a new Azure Cognitive Search indexer or updates an indexer if it already exists.
|
com.azure.core.http.rest.Response<SearchIndexer> |
SearchIndexerClient.createOrUpdateIndexerWithResponse(SearchIndexer indexer,
boolean onlyIfUnchanged,
com.azure.core.util.Context context)
Creates a new Azure Cognitive Search indexer or updates an indexer if it already exists.
|
Mono<com.azure.core.http.rest.Response<Void>> |
SearchIndexerAsyncClient.deleteIndexerWithResponse(SearchIndexer indexer,
boolean onlyIfUnchanged)
Deletes an Azure Cognitive Search indexer.
|
com.azure.core.http.rest.Response<Void> |
SearchIndexerClient.deleteIndexerWithResponse(SearchIndexer indexer,
boolean onlyIfUnchanged,
com.azure.core.util.Context context)
Deletes an Azure Cognitive Search indexer.
|
| Modifier and Type | Method and Description |
|---|---|
SearchIndexer |
SearchIndexer.setDataSourceName(String dataSourceName)
Set the dataSourceName property: The name of the datasource from which
this indexer reads data.
|
SearchIndexer |
SearchIndexer.setDescription(String description)
Set the description property: The description of the indexer.
|
SearchIndexer |
SearchIndexer.setETag(String eTag)
Set the eTag property: The ETag of the indexer.
|
SearchIndexer |
SearchIndexer.setFieldMappings(FieldMapping... fieldMappings)
Set the fieldMappings property: Defines mappings between fields in the
data source and corresponding target fields in the index.
|
SearchIndexer |
SearchIndexer.setFieldMappings(List<FieldMapping> fieldMappings)
Set the fieldMappings property: Defines mappings between fields in the
data source and corresponding target fields in the index.
|
SearchIndexer |
SearchIndexer.setIsDisabled(Boolean isDisabled)
Set the isDisabled property: A value indicating whether the indexer is
disabled.
|
SearchIndexer |
SearchIndexer.setOutputFieldMappings(FieldMapping... outputFieldMappings)
Set the outputFieldMappings property: Output field mappings are applied
after enrichment and immediately before indexing.
|
SearchIndexer |
SearchIndexer.setOutputFieldMappings(List<FieldMapping> outputFieldMappings)
Set the outputFieldMappings property: Output field mappings are applied
after enrichment and immediately before indexing.
|
SearchIndexer |
SearchIndexer.setParameters(IndexingParameters parameters)
Set the parameters property: Parameters for indexer execution.
|
SearchIndexer |
SearchIndexer.setSchedule(IndexingSchedule schedule)
Set the schedule property: The schedule for this indexer.
|
SearchIndexer |
SearchIndexer.setSkillsetName(String skillsetName)
Set the skillsetName property: The name of the skillset executing with
this indexer.
|
SearchIndexer |
SearchIndexer.setTargetIndexName(String targetIndexName)
Set the targetIndexName property: The name of the index to which this
indexer writes data.
|
Copyright © 2020 Microsoft Corporation. All rights reserved.