Skip to content

Commit 2400c43

Browse files
committed
Removed /en-us from URLs and changed ms.author value, as per review feedback.
1 parent 8b2833c commit 2400c43

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/search/search-howto-schedule-indexers.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Schedule Azure Search indexers to index content periodically or at
55
ms.date: 05/31/2019
66
author: RobDixon22
77
manager: HeidiSteen
8-
ms.author: RobDixon22
8+
ms.author: v-rodixo
99
services: search
1010
ms.service: search
1111
ms.devlang: rest-api
@@ -76,7 +76,7 @@ The **interval** parameter is required. The interval refers to the time between
7676

7777
The optional **startTime** indicates when scheduled executions should begin. If it is omitted, the current UTC time is used. This time can be in the past, in which case the first execution is scheduled as if the indexer has been running continuously since the original **startTime**.
7878

79-
You can also run an indexer on demand at any time using the Run Indexer call. For more information about running indexers and setting indexer schedules, see [Run Indexer](https://docs.microsoft.com/en-us/rest/api/searchservice/run-indexer), [Get Indexer](https://docs.microsoft.com/en-us/rest/api/searchservice/get-indexer), and [Update Indexer](https://docs.microsoft.com/en-us/rest/api/searchservice/update-indexer) in the REST API Reference.
79+
You can also run an indexer on demand at any time using the Run Indexer call. For more information about running indexers and setting indexer schedules, see [Run Indexer](https://docs.microsoft.com/rest/api/searchservice/run-indexer), [Get Indexer](https://docs.microsoft.com/rest/api/searchservice/get-indexer), and [Update Indexer](https://docs.microsoft.com/rest/api/searchservice/update-indexer) in the REST API Reference.
8080

8181
<a name="dotNetSdk"></a>
8282

@@ -102,10 +102,10 @@ If the **schedule** parameter is omitted, the indexer will only run once immedia
102102

103103
The **startTime** parameter can be set to a time in the past. In that case, the first execution is scheduled as if the indexer has been running continuously since the given **startTime**.
104104

105-
The schedule is defined using the [IndexingSchedule](https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.search.models.indexingschedule?view=azure-dotnet) class. The **IndexingSchedule** constructor requires an **interval** parameter specified using a **TimeSpan** object. The smallest interval value allowed is 5 minutes, and the largest is 24 hours. The second **startTime** parameter, specified as a **DateTimeOffset** object, is optional.
105+
The schedule is defined using the [IndexingSchedule](https://docs.microsoft.com/dotnet/api/microsoft.azure.search.models.indexingschedule?view=azure-dotnet) class. The **IndexingSchedule** constructor requires an **interval** parameter specified using a **TimeSpan** object. The smallest interval value allowed is 5 minutes, and the largest is 24 hours. The second **startTime** parameter, specified as a **DateTimeOffset** object, is optional.
106106

107-
The .NET SDK lets you control indexer operations using the [SearchServiceClient](https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.search.searchserviceclient) class and its [Indexers](https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.search.searchserviceclient.indexers) property, which implements methods from the **IIndexersOperations** interface.
107+
The .NET SDK lets you control indexer operations using the [SearchServiceClient](https://docs.microsoft.com/dotnet/api/microsoft.azure.search.searchserviceclient) class and its [Indexers](https://docs.microsoft.com/dotnet/api/microsoft.azure.search.searchserviceclient.indexers) property, which implements methods from the **IIndexersOperations** interface.
108108

109-
You can run an indexer on demand at any time using one of the [Run](https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.search.indexersoperationsextensions.run), [RunAsync](https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.search.indexersoperationsextensions.runasync), or [RunWithHttpMessagesAsync](https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.search.iindexersoperations.runwithhttpmessagesasync) methods.
109+
You can run an indexer on demand at any time using one of the [Run](https://docs.microsoft.com/dotnet/api/microsoft.azure.search.indexersoperationsextensions.run), [RunAsync](https://docs.microsoft.com/dotnet/api/microsoft.azure.search.indexersoperationsextensions.runasync), or [RunWithHttpMessagesAsync](https://docs.microsoft.com/dotnet/api/microsoft.azure.search.iindexersoperations.runwithhttpmessagesasync) methods.
110110

111-
For more information about creating, updating, and running indexers, see [IIindexersOperations](https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.search.iindexersoperations?view=azure-dotnet).
111+
For more information about creating, updating, and running indexers, see [IIindexersOperations](https://docs.microsoft.com/dotnet/api/microsoft.azure.search.iindexersoperations?view=azure-dotnet).

0 commit comments

Comments
 (0)