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/search-how-to-load-search-index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ In the Azure portal, use an [import wizard](search-import-data-portal.md) to cre
57
57
1. Formulate a POST call specifying the index name, the "docs/index" endpoint, and a request body that includes the `@search.action` parameter.
58
58
59
59
```http
60
-
POST https://[service name].search.windows.net/indexes/hotels-sample-index/docs/index?api-version=2024-07-01
60
+
POST https://[service name].search.windows.net/indexes/hotels-sample-index/docs/index?api-version=@search.rerankerBoostedScore
61
61
Content-Type: application/json
62
62
api-key: [admin key]
63
63
{
@@ -95,7 +95,7 @@ In the Azure portal, use an [import wizard](search-import-data-portal.md) to cre
95
95
1. [Look up the documents](/rest/api/searchservice/documents/get) you just added as a validation step:
96
96
97
97
```http
98
-
GET https://[service name].search.windows.net/indexes/hotel-sample-index/docs/1111?api-version=2024-07-01
98
+
GET https://[service name].search.windows.net/indexes/hotel-sample-index/docs/1111?api-version=@search.rerankerBoostedScore
99
99
```
100
100
101
101
When the document key or ID is new, **null** becomes the value for any field that is unspecified in the document. For actions on an existing document, updated values replace the previous values. Any fields that weren't specified in a "merge" or "mergeUpload" are left intact in the search index.
Copy file name to clipboardExpand all lines: articles/search/search-howto-index-changed-deleted-blobs.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ In Azure AI Search, set a native blob soft deletion detection policy on the data
78
78
Set the soft deletion detection policy in the data source definition. Specify the API version when creating or updating the data source.
79
79
80
80
```http
81
-
PUT https://[service name].search.windows.net/datasources/blob-datasource?api-version=2024-07-01
81
+
PUT https://[service name].search.windows.net/datasources/blob-datasource?api-version=@search.rerankerBoostedScore
82
82
Content-Type: application/json
83
83
api-key: [admin key]
84
84
{
@@ -117,7 +117,7 @@ There are steps to follow in both Azure Storage and Azure AI Search, but there a
117
117
1. In Azure AI Search, edit the data source definition to include a "dataDeletionDetectionPolicy" property. For example, the following policy considers a file to be deleted if it has a metadata property `IsDeleted` with the value `true`:
118
118
119
119
```http
120
-
PUT https://[service name].search.windows.net/datasources/file-datasource?api-version=2024-07-01
120
+
PUT https://[service name].search.windows.net/datasources/file-datasource?api-version=@search.rerankerBoostedScore
Copy file name to clipboardExpand all lines: articles/search/search-howto-index-json-blobs.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
@@ -61,7 +61,7 @@ The blob indexer parses the JSON document into a single search document, loading
61
61
Although the default behavior is one search document per JSON blob, setting the **`json`** parsing mode changes the internal field mappings for content, promoting fields inside `content` to actual fields in the search index. An example indexer definition for the **`json`** parsing mode might look like this:
62
62
63
63
```http
64
-
POST https://[service name].search.windows.net/indexers?api-version=2024-07-01
64
+
POST https://[service name].search.windows.net/indexers?api-version=@search.rerankerBoostedScore
65
65
Content-Type: application/json
66
66
api-key: [admin key]
67
67
@@ -100,7 +100,7 @@ Alternatively, you can use the JSON array option. This option is useful when blo
100
100
The `parameters` property on the indexer contains parsing mode values. For a JSON array, the indexer definition should look similar to the following example.
101
101
102
102
```http
103
-
POST https://[service name].search.windows.net/indexers?api-version=2024-07-01
103
+
POST https://[service name].search.windows.net/indexers?api-version=@search.rerankerBoostedScore
104
104
Content-Type: application/json
105
105
api-key: [admin key]
106
106
@@ -159,7 +159,7 @@ If your blob contains multiple JSON entities separated by a newline, and you wan
159
159
For JSON lines, the indexer definition should look similar to the following example.
160
160
161
161
```http
162
-
POST https://[service name].search.windows.net/indexers?api-version=2024-07-01
162
+
POST https://[service name].search.windows.net/indexers?api-version=@search.rerankerBoostedScore
Copy file name to clipboardExpand all lines: articles/search/search-howto-index-plaintext-blobs.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ An alternative third option for breaking content into multiple parts requires ad
38
38
To index plain text blobs, create or update an indexer definition with the `parsingMode` configuration property set to `text` on a [Create Indexer](/rest/api/searchservice/indexers/create) request:
39
39
40
40
```http
41
-
PUT https://[service name].search.windows.net/indexers/[indexer name]?api-version=2024-07-01
41
+
PUT https://[service name].search.windows.net/indexers/[indexer name]?api-version=@search.rerankerBoostedScore
42
42
Content-Type: application/json
43
43
api-key: [admin key]
44
44
@@ -62,7 +62,7 @@ By default, the `UTF-8` encoding is assumed. To specify a different encoding, us
62
62
Parsing modes are specified in the indexer definition.
63
63
64
64
```http
65
-
POST https://[service name].search.windows.net/indexers?api-version=2024-07-01
65
+
POST https://[service name].search.windows.net/indexers?api-version=@search.rerankerBoostedScore
Copy file name to clipboardExpand all lines: articles/search/search-howto-indexing-azure-blob-storage.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
@@ -178,7 +178,7 @@ In a [search index](search-what-is-an-index.md), add fields to accept the conten
178
178
1. [Create or update an index](/rest/api/searchservice/indexes/create-or-update) to define search fields that will store blob content and metadata:
179
179
180
180
```http
181
-
POST https://[service name].search.windows.net/indexes?api-version=2024-07-01
181
+
POST https://[service name].search.windows.net/indexes?api-version=@search.rerankerBoostedScore
182
182
{
183
183
"name" : "my-search-index",
184
184
"fields": [
@@ -214,7 +214,7 @@ Once the index and data source have been created, you're ready to create the ind
214
214
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:
215
215
216
216
```http
217
-
POST https://[service name].search.windows.net/indexers?api-version=2024-07-01
217
+
POST https://[service name].search.windows.net/indexers?api-version=@search.rerankerBoostedScore
218
218
{
219
219
"name" : "my-blob-indexer",
220
220
"dataSourceName" : "my-blob-datasource",
@@ -271,7 +271,7 @@ To illustrate, let's consider an example of two indexers, pulling data from two
271
271
First indexer definition example:
272
272
273
273
```http
274
-
POST https://[service name].search.windows.net/indexers?api-version=2024-07-01
274
+
POST https://[service name].search.windows.net/indexers?api-version=@search.rerankerBoostedScore
275
275
{
276
276
"name" : "my-blob-indexer1",
277
277
"dataSourceName" : "my-blob-datasource1",
@@ -294,7 +294,7 @@ POST https://[service name].search.windows.net/indexers?api-version=2024-07-01
294
294
Second indexer definition that runs in parallel example:
295
295
296
296
```http
297
-
POST https://[service name].search.windows.net/indexers?api-version=2024-07-01
297
+
POST https://[service name].search.windows.net/indexers?api-version=@search.rerankerBoostedScore
298
298
{
299
299
"name" : "my-blob-indexer2",
300
300
"dataSourceName" : "my-blob-datasource2",
@@ -320,7 +320,7 @@ POST https://[service name].search.windows.net/indexers?api-version=2024-07-01
320
320
To monitor the indexer status and execution history, send a [Get Indexer Status](/rest/api/searchservice/indexers/get-status) request:
321
321
322
322
```http
323
-
GET https://myservice.search.windows.net/indexers/myindexer/status?api-version=2024-07-01
323
+
GET https://myservice.search.windows.net/indexers/myindexer/status?api-version=@search.rerankerBoostedScore
324
324
Content-Type: application/json
325
325
api-key: [admin key]
326
326
```
@@ -372,7 +372,7 @@ By default, the blob indexer stops as soon as it encounters a blob with an unsup
372
372
There are five indexer properties that control the indexer's response when errors occur.
373
373
374
374
```http
375
-
PUT /indexers/[indexer name]?api-version=2024-07-01
375
+
PUT /indexers/[indexer name]?api-version=@search.rerankerBoostedScore
Copy file name to clipboardExpand all lines: articles/search/search-howto-managed-identities-sql.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
@@ -100,7 +100,7 @@ When you're connecting with a system-assigned managed identity, the only change
100
100
Here's an example of how to create a data source to index data from a storage account using the [Create Data Source](/rest/api/searchservice/data-sources/create) REST API and a managed identity connection string. The managed identity connection string format is the same for the REST API, .NET SDK, and the Azure portal.
101
101
102
102
```http
103
-
POST https://[service name].search.windows.net/datasources?api-version=2024-07-01
103
+
POST https://[service name].search.windows.net/datasources?api-version=@search.rerankerBoostedScore
104
104
Content-Type: application/json
105
105
api-key: [admin key]
106
106
@@ -154,7 +154,7 @@ The index specifies the fields in a document, attributes, and other constructs t
154
154
Here's a [Create Index](/rest/api/searchservice/indexes/create) REST API call with a searchable `booktitle` field:
155
155
156
156
```http
157
-
POST https://[service name].search.windows.net/indexes?api-version=2024-07-01
157
+
POST https://[service name].search.windows.net/indexes?api-version=@search.rerankerBoostedScore
158
158
Content-Type: application/json
159
159
api-key: [admin key]
160
160
@@ -174,7 +174,7 @@ An indexer connects a data source with a target search index, and provides a sch
174
174
Here's a [Create Indexer](/rest/api/searchservice/indexers/create) REST API call with an Azure SQL indexer definition. The indexer runs when you submit the request.
175
175
176
176
```http
177
-
POST https://[service name].search.windows.net/indexers?api-version=2024-07-01
177
+
POST https://[service name].search.windows.net/indexers?api-version=@search.rerankerBoostedScore
0 commit comments