SearchIndexClient.CreateSynonymMap Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| CreateSynonymMap(RequestContent, RequestContext) |
[Protocol Method] Creates a new synonym map.
|
| CreateSynonymMap(SynonymMap, CancellationToken) |
Creates a new synonym map. |
CreateSynonymMap(RequestContent, RequestContext)
- Source:
- SearchIndexClient.cs
[Protocol Method] Creates a new synonym map.
- This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual Azure.Response CreateSynonymMap(Azure.Core.RequestContent content, Azure.RequestContext context = default);
abstract member CreateSynonymMap : Azure.Core.RequestContent * Azure.RequestContext -> Azure.Response
override this.CreateSynonymMap : Azure.Core.RequestContent * Azure.RequestContext -> Azure.Response
Public Overridable Function CreateSynonymMap (content As RequestContent, Optional context As RequestContext = Nothing) As Response
Parameters
- content
- RequestContent
The content to send as the body of the request.
- context
- RequestContext
The request options, which can override default behaviors of the client pipeline on a per-call basis.
Returns
The response returned from the service.
Exceptions
content is null.
Service returned a non-success status code.
Applies to
CreateSynonymMap(SynonymMap, CancellationToken)
- Source:
- SearchIndexClient.cs
- Source:
- SearchIndexClient.cs
Creates a new synonym map.
public virtual Azure.Response<Azure.Search.Documents.Indexes.Models.SynonymMap> CreateSynonymMap(Azure.Search.Documents.Indexes.Models.SynonymMap synonymMap, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateSynonymMap : Azure.Search.Documents.Indexes.Models.SynonymMap * System.Threading.CancellationToken -> Azure.Response<Azure.Search.Documents.Indexes.Models.SynonymMap>
override this.CreateSynonymMap : Azure.Search.Documents.Indexes.Models.SynonymMap * System.Threading.CancellationToken -> Azure.Response<Azure.Search.Documents.Indexes.Models.SynonymMap>
Public Overridable Function CreateSynonymMap (synonymMap As SynonymMap, Optional cancellationToken As CancellationToken = Nothing) As Response(Of SynonymMap)
Parameters
- synonymMap
- SynonymMap
The definition of the synonym map to create.
- cancellationToken
- CancellationToken
The cancellation token that can be used to cancel the operation.
Returns
The Response<T> from the server containing the SynonymMap that was created. This may differ slightly from what was passed in since the service may return back properties set to their default values.
Exceptions
synonymMap is null.
Service returned a non-success status code.