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/includes/quickstarts/full-text-powershell.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ To connect to your search service:
92
92
1. Create a `$url` object that targets the indexes collection on your search service. Replace `<YOUR-SEARCH-SERVICE>` with the value you obtained in [Get endpoint](#get-endpoint).
3. Run `Invoke-RestMethod` to create the index on your search service.
@@ -275,7 +275,7 @@ To upload documents to your index:
275
275
2. Update the `$url` object to target the indexing endpoint. Replace `<YOUR-SEARCH-SERVICE>` with the value you obtained in [Get endpoint](#get-endpoint).
3. Run `Invoke-RestMethod` to send the upload request to your search service.
@@ -301,7 +301,7 @@ To run a full-text query against your index:
301
301
1. Update the `$url` object to specify search parameters. Replace `<YOUR-SEARCH-SERVICE>` with the value you obtained in [Get endpoint](#get-endpoint).
Copy file name to clipboardExpand all lines: articles/search/search-howto-managed-identities-storage.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
@@ -74,7 +74,7 @@ For connections made using a system-assigned managed identity, the only change t
74
74
Provide a connection string that contains a `ResourceId`, with no account key or password. The `ResourceId` must include the subscription ID of the storage account, the resource group of the storage account, and the storage account name.
75
75
76
76
```http
77
-
POST https://[service name].search.windows.net/datasources?api-version=2024-07-01
77
+
POST https://[service name].search.windows.net/datasources?api-version=@search.rerankerBoostedScore
Copy file name to clipboardExpand all lines: articles/search/search-howto-powerapps.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
@@ -74,7 +74,7 @@ A connector in Power Apps is a data source connection. In this step, create a cu
74
74
* For the URL, enter a sample query for your search index (`search=*` returns all documents, `$select=` lets you choose fields). The API version is required. Fully specified, a URL might look like the following example. Notice that the `https://` prefix is omitted.
Copy file name to clipboardExpand all lines: articles/search/search-howto-reindex.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
@@ -161,12 +161,12 @@ Here's a [REST API example](search-get-started-text.md) demonstrating these tips
161
161
162
162
```rest
163
163
### Get Stay-Kay City Hotel by ID
164
-
GET {{baseUrl}}/indexes/hotels-vector-quickstart/docs('1')?api-version=2024-07-01 HTTP/1.1
164
+
GET {{baseUrl}}/indexes/hotels-vector-quickstart/docs('1')?api-version=@search.rerankerBoostedScore HTTP/1.1
165
165
Content-Type: application/json
166
166
api-key: {{apiKey}}
167
167
168
168
### Change the description, city, and tags for Stay-Kay City Hotel
169
-
POST {{baseUrl}}/indexes/hotels-vector-quickstart/docs/search.index?api-version=2024-07-01 HTTP/1.1
169
+
POST {{baseUrl}}/indexes/hotels-vector-quickstart/docs/search.index?api-version=@search.rerankerBoostedScore HTTP/1.1
170
170
Content-Type: application/json
171
171
api-key: {{apiKey}}
172
172
@@ -185,7 +185,7 @@ POST {{baseUrl}}/indexes/hotels-vector-quickstart/docs/search.index?api-version=
185
185
}
186
186
187
187
### Retrieve the same document, confirm the overwrites and retention of all other values
188
-
GET {{baseUrl}}/indexes/hotels-vector-quickstart/docs('1')?api-version=2024-07-01 HTTP/1.1
188
+
GET {{baseUrl}}/indexes/hotels-vector-quickstart/docs('1')?api-version=@search.rerankerBoostedScore HTTP/1.1
189
189
Content-Type: application/json
190
190
api-key: {{apiKey}}
191
191
```
@@ -329,17 +329,17 @@ Deleting a document doesn't immediately free up space in the index. Every few mi
329
329
1.[Look up the document](/rest/api/searchservice/documents/get) to verify the value of the document ID and to review its content before deleting it. Specify the key or document ID in the request. The following examples illustrate a simple string for the [Hotels sample index](search-get-started-portal.md) and a base-64 encoded string for the metadata_storage_path key of the [cog-search-demo index](tutorial-skillset.md).
330
330
331
331
```http
332
-
GET https://[service name].search.windows.net/indexes/hotel-sample-index/docs/1111?api-version=2024-07-01
332
+
GET https://[service name].search.windows.net/indexes/hotel-sample-index/docs/1111?api-version=@search.rerankerBoostedScore
333
333
```
334
334
335
335
```http
336
-
GET https://[service name].search.windows.net/indexes/cog-search-demo/docs/aHR0cHM6Ly9oZWlkaWJsb2JzdG9yYWdlMi5ibG9iLmNvcmUud2luZG93cy5uZXQvY29nLXNlYXJjaC1kZW1vL2d1dGhyaWUuanBn0?api-version=2024-07-01
336
+
GET https://[service name].search.windows.net/indexes/cog-search-demo/docs/aHR0cHM6Ly9oZWlkaWJsb2JzdG9yYWdlMi5ibG9iLmNvcmUud2luZG93cy5uZXQvY29nLXNlYXJjaC1kZW1vL2d1dGhyaWUuanBn0?api-version=@search.rerankerBoostedScore
337
337
```
338
338
339
339
1. [Delete the document](/rest/api/searchservice/documents) using a delete `@search.action` to remove it from the search index.
340
340
341
341
```http
342
-
POST https://[service name].search.windows.net/indexes/hotels-sample-index/docs/index?api-version=2024-07-01
342
+
POST https://[service name].search.windows.net/indexes/hotels-sample-index/docs/index?api-version=@search.rerankerBoostedScore
Copy file name to clipboardExpand all lines: articles/search/search-index-azure-sql-managed-instance-with-managed-identity.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
@@ -101,7 +101,7 @@ When you're connecting with a system-assigned managed identity, the only change
101
101
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.
102
102
103
103
```http
104
-
POST https://[service name].search.windows.net/datasources?api-version=2024-07-01
104
+
POST https://[service name].search.windows.net/datasources?api-version=@search.rerankerBoostedScore
105
105
Content-Type: application/json
106
106
api-key: [admin key]
107
107
@@ -124,7 +124,7 @@ The index specifies the fields in a document, attributes, and other constructs t
124
124
Here's a [Create Index](/rest/api/searchservice/indexes/create) REST API call with a searchable `booktitle` field:
125
125
126
126
```http
127
-
POST https://[service name].search.windows.net/indexes?api-version=2024-07-01
127
+
POST https://[service name].search.windows.net/indexes?api-version=@search.rerankerBoostedScore
128
128
Content-Type: application/json
129
129
api-key: [admin key]
130
130
@@ -144,7 +144,7 @@ An indexer connects a data source with a target search index, and provides a sch
144
144
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.
145
145
146
146
```http
147
-
POST https://[service name].search.windows.net/indexers?api-version=2024-07-01
147
+
POST https://[service name].search.windows.net/indexers?api-version=@search.rerankerBoostedScore
0 commit comments