Skip to content

Commit 3ddbbe7

Browse files
committed
BULK EDIT: REST API LINKS, sevices, datasource
1 parent 458bd18 commit 3ddbbe7

11 files changed

+12
-12
lines changed

articles/search/cognitive-search-tutorial-blob.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ POST {{baseUrl}}/indexers?api-version=2024-07-01 HTTP/1.1
497497

498498
Indexing and enrichment commence as soon as you submit the Create Indexer request. Depending on skillset complexity and operations, indexing can take a while.
499499

500-
To find out whether the indexer is still running, call [Get Indexer Status](/rest/api/searchservice/get-indexer-status) to check the indexer status.
500+
To find out whether the indexer is still running, call [Get Indexer Status](/rest/api/searchservice/indexers/get-status) to check the indexer status.
501501

502502
```http
503503
### Get Indexer Status (wait several minutes for the indexer to complete)

articles/search/monitor-azure-cognitive-search-data-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ The following operations can appear in a resource log.
200200
| Query.Lookup | A lookup query against an index. See [Query types and composition](search-query-overview.md). |
201201
| Query.Search | A full text search request against an index. See [Query types and composition](search-query-overview.md). |
202202
| Query.Suggest | Type ahead query against an index. See [Query types and composition](search-query-overview.md). |
203-
| ServiceStats | This operation is a routine call to [Get Service Statistics](/rest/api/searchservice/get-service-statistics), either called directly or implicitly to populate a portal overview page when it's loaded or refreshed. |
203+
| ServiceStats | This operation is a routine call to [Get Service Statistics](/rest/api/searchservice/get-service-statistics/get-service-statistics), either called directly or implicitly to populate a portal overview page when it's loaded or refreshed. |
204204
| Skillsets.* | Applies to a skillset. Can be Create, Delete, Get, List. |
205205

206206
## Related content

articles/search/search-howto-connecting-azure-sql-database-to-azure-search-using-indexers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ An indexer runs automatically when it's created. You can prevent this by setting
182182
183183
## Check indexer status
184184
185-
To monitor the indexer status and execution history, send a [Get Indexer Status](/rest/api/searchservice/get-indexer-status) request:
185+
To monitor the indexer status and execution history, send a [Get Indexer Status](/rest/api/searchservice/indexers/get-status) request:
186186
187187
```http
188188
GET https://myservice.search.windows.net/indexers/myindexer/status?api-version=2024-07-01

articles/search/search-howto-index-azure-data-lake-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ An indexer runs automatically when it's created. You can prevent this by setting
227227

228228
## Check indexer status
229229

230-
To monitor the indexer status and execution history, send a [Get Indexer Status](/rest/api/searchservice/get-indexer-status) request:
230+
To monitor the indexer status and execution history, send a [Get Indexer Status](/rest/api/searchservice/indexers/get-status) request:
231231

232232
```http
233233
GET https://myservice.search.windows.net/indexers/myindexer/status?api-version=2024-07-01

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ An indexer runs automatically when it's created. You can prevent this by setting
240240
241241
## Check indexer status
242242
243-
To monitor the indexer status and execution history, send a [Get Indexer Status](/rest/api/searchservice/get-indexer-status) request:
243+
To monitor the indexer status and execution history, send a [Get Indexer Status](/rest/api/searchservice/indexers/get-status) request:
244244
245245
```http
246246
GET https://myservice.search.windows.net/indexers/myindexer/status?api-version=2024-07-01

articles/search/search-howto-indexing-azure-tables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ To avoid a full scan, you can use table partitions to narrow the scope of each i
112112

113113
+ In the data source definition, specify a query similar to the following example: `(PartitionKey ge <TimeStamp>) and (other filters)`.
114114

115-
+ Monitor indexer progress by using [Get Indexer Status API](/rest/api/searchservice/get-indexer-status), and periodically update the `<TimeStamp>` condition of the query based on the latest successful high-water-mark value.
115+
+ Monitor indexer progress by using [Get Indexer Status API](/rest/api/searchservice/indexers/get-status), and periodically update the `<TimeStamp>` condition of the query based on the latest successful high-water-mark value.
116116

117117
+ With this approach, if you need to trigger a full reindex, reset the data source query in addition to [resetting the indexer](search-howto-run-reset-indexers.md).
118118

@@ -199,7 +199,7 @@ An indexer runs automatically when it's created. You can prevent this by setting
199199

200200
## Check indexer status
201201

202-
To monitor the indexer status and execution history, send a [Get Indexer Status](/rest/api/searchservice/get-indexer-status) request:
202+
To monitor the indexer status and execution history, send a [Get Indexer Status](/rest/api/searchservice/indexers/get-status) request:
203203

204204
```http
205205
GET https://myservice.search.windows.net/indexers/myindexer/status?api-version=2024-07-01

articles/search/search-indexer-how-to-access-private-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ This article assumes a [REST client](search-get-started-rest.md) and uses the RE
175175
176176
1. Run the indexer. If the indexer execution succeeds and the search index is populated, the shared private link is working.
177177
178-
You can monitor the status of the indexer in Azure portal or by using the [Indexer Status API](/rest/api/searchservice/get-indexer-status).
178+
You can monitor the status of the indexer in Azure portal or by using the [Indexer Status API](/rest/api/searchservice/indexers/get-status).
179179
180180
You can use [**Search explorer**](search-explorer.md) in Azure portal to check the contents of the index.
181181

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ This step shows you how to configure the indexer to run in the private environme
368368
}
369369
```
370370

371-
After the indexer is created successfully, it should connect to the Azure resource over the private endpoint connection. You can monitor the status of the indexer by using the [Indexer Status API](/rest/api/searchservice/get-indexer-status).
371+
After the indexer is created successfully, it should connect to the Azure resource over the private endpoint connection. You can monitor the status of the indexer by using the [Indexer Status API](/rest/api/searchservice/indexers/get-status).
372372

373373
> [!NOTE]
374374
> If you already have existing indexers, you can update them via the [PUT API](/rest/api/searchservice/indexers/create) by setting the `executionEnvironment` to `private` or using the JSON editor in the portal.

articles/search/search-indexer-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ For more information, see [Create an indexer](search-howto-create-indexers.md)
146146

147147
After the first indexer run, you can [rerun it on demand](search-howto-run-reset-indexers.md) or [set up a schedule](search-howto-schedule-indexers.md).
148148

149-
You can monitor [indexer status in the portal](search-howto-monitor-indexers.md) or through [Get Indexer Status API](/rest/api/searchservice/get-indexer-status). You should also [run queries on the index](search-query-create.md) to verify the result is what you expected.
149+
You can monitor [indexer status in the portal](search-howto-monitor-indexers.md) or through [Get Indexer Status API](/rest/api/searchservice/indexers/get-status). You should also [run queries on the index](search-query-create.md) to verify the result is what you expected.
150150

151151
Indexers don't have dedicated processing resources. Based on this, indexers' status may show as idle before running (depending on other jobs in the queue) and run times may not be predictable. Other factors define indexer performance as well, such as document size, document complexity, image analysis, among others.
152152

articles/search/search-limits-quotas-capacity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Vector limits vary by service creation date and tier.
8686

8787
+ To check the age of your search service or learn more about vector indexes, see [Vector index size and staying under limits](vector-search-index-size.md).
8888

89-
+ To view the vector quota in effect for your search service, use [GET Service Statistics](/rest/api/searchservice/get-service-statistics), or check the **Properties** and **Usage** tabs for your search service in the Azure portal.
89+
+ To view the vector quota in effect for your search service, use [GET Service Statistics](/rest/api/searchservice/get-service-statistics/get-service-statistics), or check the **Properties** and **Usage** tabs for your search service in the Azure portal.
9090

9191
#### Storage quota (GB)
9292

0 commit comments

Comments
 (0)