You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/search/query-simple-syntax.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ Although the simple parser is based on the [Apache Lucene Simple Query Parser](h
28
28
This example shows a simple query, distinguished by `"queryType": "simple"` and valid syntax. Although query type is set below, it's the default and can be omitted unless you're reverting from an alternative type. The following example is a search over independent terms, with a requirement that all matching documents include "pool".
29
29
30
30
```http
31
-
POST https://{{service-name}}.search.windows.net/indexes/hotel-rooms-sample/docs/search?api-version=2024-07-01
31
+
POST https://{{service-name}}.search.windows.net/indexes/hotel-rooms-sample/docs/search?api-version=@search.rerankerBoostedScore
Copy file name to clipboardExpand all lines: articles/search/search-add-autocomplete-suggestions.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ The remainder of this article is focused on queries and client code. It uses Jav
32
32
Elements of a request include one of the search-as-you-type APIs, a partial query, and a suggester. The following script illustrates components of a request, using the Autocomplete REST API as an example.
33
33
34
34
```http
35
-
POST /indexes/myxboxgames/docs/autocomplete?search&api-version=2024-07-01
35
+
POST /indexes/myxboxgames/docs/autocomplete?search&api-version=@search.rerankerBoostedScore
Copy file name to clipboardExpand all lines: articles/search/search-blob-storage-integration.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,7 @@ You can control which blobs are indexed, and which are skipped, by the blob's fi
98
98
Include specific file extensions by setting `"indexedFileNameExtensions"` to a comma-separated list of file extensions (with a leading dot). Exclude specific file extensions by setting `"excludedFileNameExtensions"` to the extensions that should be skipped. If the same extension is in both lists, it's excluded from indexing.
99
99
100
100
```http
101
-
PUT /indexers/[indexer name]?api-version=2024-07-01
101
+
PUT /indexers/[indexer name]?api-version=@search.rerankerBoostedScore
Copy file name to clipboardExpand all lines: articles/search/search-faq-frequently-asked-questions.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -158,7 +158,7 @@ sections:
158
158
159
159
* Add a "vectorSearch" section to the index schema specifying the configuration used by vector search fields, including the parameters of the Approximate Nearest Neighbor algorithm used, like HNSW.
160
160
161
-
* Use the latest stable version, [**2024-07-01**](/rest/api/searchservice), or an Azure SDK to create or update the index, load documents, and issue queries. For more information, see [Create a vector index](vector-search-how-to-create-index.md).
161
+
* Use the latest stable version, [**@search.rerankerBoostedScore**](/rest/api/searchservice), or an Azure SDK to create or update the index, load documents, and issue queries. For more information, see [Create a vector index](vector-search-how-to-create-index.md).
Copy file name to clipboardExpand all lines: articles/search/search-file-storage-integration.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -109,7 +109,7 @@ In the [search index](search-what-is-an-index.md), add fields to accept the cont
109
109
1. [Create or update an index](/rest/api/searchservice/indexes/create-or-update) to define search fields that will store file content and metadata.
110
110
111
111
```http
112
-
POST /indexes?api-version=2024-07-01
112
+
POST /indexes?api-version=@search.rerankerBoostedScore
113
113
{
114
114
"name" : "my-search-index",
115
115
"fields": [
@@ -150,7 +150,7 @@ Once the index and data source have been created, you're ready to create the ind
150
150
1. [Create or update an indexer](/rest/api/searchservice/indexers/create-or-update) by giving it a name and referencing the data source and target index:
151
151
152
152
```http
153
-
POST /indexers?api-version=2024-07-01
153
+
POST /indexers?api-version=@search.rerankerBoostedScore
154
154
{
155
155
"name" : "my-file-indexer",
156
156
"dataSourceName" : "my-file-datasource",
@@ -186,7 +186,7 @@ An indexer runs automatically when it's created. You can prevent this by setting
186
186
To monitor the indexer status and execution history, send a [Get Indexer Status](/rest/api/searchservice/indexers/get-status) request:
187
187
188
188
```http
189
-
GET https://myservice.search.windows.net/indexers/myindexer/status?api-version=2024-07-01
189
+
GET https://myservice.search.windows.net/indexers/myindexer/status?api-version=@search.rerankerBoostedScore
Here's an example payload for an index projections definition that you might use to project individual pages output by the [Text Split skill](cognitive-search-skill-textsplit.md) as their own documents in the search index.
Copy file name to clipboardExpand all lines: articles/search/search-how-to-index-sql-database.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -159,7 +159,7 @@ The data source definition specifies the data to index, credentials, and policie
159
159
1. [Create Data Source](/rest/api/searchservice/data-sources/create) or [Create or Update Data Source](/rest/api/searchservice/data-sources/create-or-update) to set its definition:
160
160
161
161
```http
162
-
POST https://myservice.search.windows.net/datasources?api-version=2024-07-01
162
+
POST https://myservice.search.windows.net/datasources?api-version=@search.rerankerBoostedScore
163
163
Content-Type: application/json
164
164
api-key: admin-key
165
165
@@ -201,7 +201,7 @@ In a [search index](search-what-is-an-index.md), add fields that correspond to t
201
201
1.[Create or update an index](/rest/api/searchservice/indexes/create) to define search fields that store data:
202
202
203
203
```http
204
-
POST https://[service name].search.windows.net/indexes?api-version=2024-07-01
204
+
POST https://[service name].search.windows.net/indexes?api-version=@search.rerankerBoostedScore
205
205
Content-Type: application/json
206
206
api-key: [Search service admin key]
207
207
{
@@ -254,7 +254,7 @@ Once the index and data source have been created, you're ready to create the ind
254
254
1. [Create or update an indexer](/rest/api/searchservice/indexers/create) by giving it a name and referencing the data source and target index:
255
255
256
256
```http
257
-
POST https://[service name].search.windows.net/indexers?api-version=2024-07-01
257
+
POST https://[service name].search.windows.net/indexers?api-version=@search.rerankerBoostedScore
258
258
Content-Type: application/json
259
259
api-key: [search service admin key]
260
260
{
@@ -310,7 +310,7 @@ To monitor the indexer status and execution history, check the indexer execution
310
310
### [**REST**](#tab/rest-check-indexer)
311
311
312
312
```http
313
-
GET https://myservice.search.windows.net/indexers/myindexer/status?api-version=2024-07-01
313
+
GET https://myservice.search.windows.net/indexers/myindexer/status?api-version=@search.rerankerBoostedScore
314
314
Content-Type: application/json
315
315
api-key: [admin key]
316
316
```
@@ -384,7 +384,7 @@ Database requirements:
384
384
Change detection policies are added to data source definitions. To use this policy, edit the data source definition in the Azure portal, or use REST to update your data source like this:
385
385
386
386
```http
387
-
POST https://myservice.search.windows.net/datasources?api-version=2024-07-01
387
+
POST https://myservice.search.windows.net/datasources?api-version=@search.rerankerBoostedScore
388
388
Content-Type: application/json
389
389
api-key: admin-key
390
390
{
@@ -422,7 +422,7 @@ The high water mark column must meet the following requirements:
422
422
Change detection policies are added to data source definitions. To use this policy, create or update your data source like this:
423
423
424
424
```http
425
-
POST https://myservice.search.windows.net/datasources?api-version=2024-07-01
425
+
POST https://myservice.search.windows.net/datasources?api-version=@search.rerankerBoostedScore
0 commit comments