Skip to content

Commit 5120450

Browse files
committed
fixed build validation errors
1 parent 2c971b3 commit 5120450

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

articles/search/search-howto-incremental-index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ POST https://[service name].search.windows.net/indexers?api-version=2024-05-01-p
106106

107107
### Step 3: Reset the indexer
108108

109-
[Reset Indexer](rest/api/searchservice/indexers/reset) is required when setting up incremental enrichment for existing indexers to ensure all documents are in a consistent state. You can use the portal or an API client for this task.
109+
[Reset Indexer](/rest/api/searchservice/indexers/reset) is required when setting up incremental enrichment for existing indexers to ensure all documents are in a consistent state. You can use the portal or an API client for this task.
110110

111111
```https
112112
POST https://[YOUR-SEARCH-SERVICE].search.windows.net/indexers/[YOUR-INDEXER-NAME]/reset?api-version=2024-05-01-preview

articles/search/search-howto-run-reset-indexers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,9 +202,9 @@ If the document is enriched through a skillset and has cached data, the skillse
202202

203203
When you're testing this API for the first time, the following APIs can help you validate and test the behaviors. You can use preview API version 2020-06-30-preview and later. We recommend using the latest preview API.
204204

205-
1. Call [Indexers - Get Status](/rest/api/searchservice/indexers/get-status?view=rest-searchservice-2024-05-01-preview&preserve-version=true) with a preview API version to check reset status and execution status. You can find information about the reset request at the end of the status response.
205+
1. Call [Indexers - Get Status](/rest/api/searchservice/indexers/get-status?view=rest-searchservice-2024-05-01-preview&preserve-view=true) with a preview API version to check reset status and execution status. You can find information about the reset request at the end of the status response.
206206

207-
1. Call [Indexers - Reset Docs](/rest/api/searchservice/indexers/reset-docs?view=rest-searchservice-2024-05-01-preview&preserve-version=true) with a preview API version to specify which documents to process.
207+
1. Call [Indexers - Reset Docs](/rest/api/searchservice/indexers/reset-docs?view=rest-searchservice-2024-05-01-preview&preserve-view=true) with a preview API version to specify which documents to process.
208208

209209
```http
210210
POST https://[service name].search.windows.net/indexers/[indexer name]/resetdocs?api-version=2024-05-01-preview

articles/search/search-indexer-howto-access-private.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ On the Azure AI Search side, you can confirm request approval by revisiting the
315315

316316
:::image type="content" source="media/search-indexer-howto-secure-access/new-shared-private-link-resource-approved.png" alt-text="Screenshot of the Azure portal, showing an Approved shared private link resource.":::
317317

318-
Alternatively, you can also obtain connection state by using the [GET Shared Private Link API](/rest/api/searchmanagement/2021-06-01-preview/shared-private-link-resources/get).
318+
Alternatively, you can also obtain connection state by using the [Shared Private Link Resources - Get](/rest/api/searchmanagement/shared-private-link-resources/get).
319319

320320
```dotnetcli
321321
az rest --method get --uri https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso/providers/Microsoft.Search/searchServices/contoso-search/sharedPrivateLinkResources/blob-pe?api-version=2023-11-01

articles/search/search-security-manage-encryption-keys.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -299,9 +299,9 @@ Encryption keys are added when you create an object. To add a customer-managed k
299299
300300
+ [Create Index](/rest/api/searchservice/indexes/create)
301301
+ [Create Synonym Map](/rest/api/searchservice/synonym-maps/create)
302-
+ [Create Indexer](//rest/api/searchservice/indexers/create)
302+
+ [Create Indexer](/rest/api/searchservice/indexers/create)
303303
+ [Create Data Source](/rest/api/searchservice/data-sources/create)
304-
+ [Create Skillset](/rest/api/searchservice/skillsets/create).
304+
+ [Create Skillset](/rest/api/searchservice/skillsets/create)
305305
306306
1. Insert the encryptionKey construct into the object definition. This property is a first-level property, on the same level as name and description. The following [REST examples](#rest-examples) show property placement. If you're using the same vault, key, and version, you can paste in the same "encryptionKey" construct into each object definition.
307307
@@ -379,7 +379,7 @@ This section shows the JSON for several objects so that you can see where to loc
379379

380380
### Index encryption
381381

382-
The details of creating a new index via the REST API could be found at [Create Index (REST API)](/rest/api/searchservice/index/create), where the only difference is specifying the encryption key details as part of the index definition:
382+
The details of creating a new index via the REST API could be found at [Create Index (REST API)](/rest/api/searchservice/indexes/create), where the only difference is specifying the encryption key details as part of the index definition:
383383

384384
```json
385385
{
@@ -436,7 +436,7 @@ You can now send the synonym map creation request, and then start using it norma
436436

437437
### Data source encryption
438438

439-
Create an encrypted data source using the [Create Data Source (REST API)](rest/api/searchservice/data-sources/create). Use the "encryptionKey" property to specify which encryption key to use.
439+
Create an encrypted data source using the [Create Data Source (REST API)](/rest/api/searchservice/data-sources/create). Use the "encryptionKey" property to specify which encryption key to use.
440440

441441
```json
442442
{

0 commit comments

Comments
 (0)