SynonymMap Class
Definition
- java.lang.Object
- com.azure.search.documents.indexes.models.SynonymMap
Represents a synonym map definition.
public final class SynonymMap
Constructors
| SynonymMap(String name) |
Constructor of SynonymMap. |
| SynonymMap(String name, String synonyms) |
Constructor of SynonymMap. |
Methods
| createFromFile(String name, Path filePath) |
Creates a new instance of SynonymMap with synonyms read from the passed file. |
| getETag() |
Get the eTag property: The ETag of the synonym map. |
| getEncryptionKey() |
Get the encryptionKey property: A description of an encryption key that you create in Azure Key Vault. This key is used to provide an additional level of encryption-at-rest for your data when you want full assurance that no one, not even Microsoft, can decrypt your data in Azure Cognitive Search. Once you have encrypted your data, it will always remain encrypted. Azure Cognitive Search will ignore attempts to set this property to null. You can change this property as needed if you want to rotate your encryption key; Your data will be unaffected. Encryption with customer-managed keys is not available for free search services, and is only available for paid services created on or after January 1, 2019. |
| getName() |
Get the name property: The name of the synonym map. |
| getSynonyms() |
Get the synonyms property: A series of synonym rules in the specified synonym map format. The rules must be separated by newlines. |
| setETag(String eTag) |
Set the eTag property: The ETag of the synonym map. |
| setEncryptionKey(SearchResourceEncryptionKey encryptionKey) |
Set the encryptionKey property: A description of an encryption key that you create in Azure Key Vault. This key is used to provide an additional level of encryption-at-rest for your data when you want full assurance that no one, not even Microsoft, can decrypt your data in Azure Cognitive Search. Once you have encrypted your data, it will always remain encrypted. Azure Cognitive Search will ignore attempts to set this property to null. You can change this property as needed if you want to rotate your encryption key; Your data will be unaffected. Encryption with customer-managed keys is not available for free search services, and is only available for paid services created on or after January 1, 2019. |
| setSynonyms(String synonyms) |
Set the synonyms property: A series of synonym rules in the specified synonym map format. The rules must be separated by newlines. |