Skip to content

Commit 06bc8e3

Browse files
committed
Update outdated UX plus other compliance edits
1 parent eb2a7be commit 06bc8e3

File tree

6 files changed

+22
-26
lines changed

6 files changed

+22
-26
lines changed
4 KB
Loading
1.79 KB
Loading
3.87 KB
Loading
16.1 KB
Loading
36.1 KB
Loading

articles/scheduler/migrate-from-scheduler-to-logic-apps.md

Lines changed: 22 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: derek1ee
88
ms.author: deli
99
ms.reviewer: klam, LADocs
1010
ms.topic: article
11-
ms.date: 09/20/2018
11+
ms.date: 09/23/2019
1212
---
1313

1414
# Migrate Azure Scheduler jobs to Azure Logic Apps
@@ -20,7 +20,7 @@ ms.date: 09/20/2018
2020
2121
This article shows how you can schedule one-time and recurring jobs by creating automated workflows with Azure Logic Apps, rather than with Azure Scheduler. When you create scheduled jobs with Logic Apps, you get these benefits:
2222

23-
* Build your job by using a visual designer and connectors for hundreds of services, including Azure Blob Storage, Azure Service Bus, Office 365 Outlook, and SAP.
23+
* Build your job by using a visual designer and [ready-to-use connectors](../connectors/apis-list.md) from hundreds of services, such as Azure Blob Storage, Azure Service Bus, Office 365 Outlook, and SAP.
2424

2525
* Manage each scheduled workflow as a first-class Azure resource. You don't have to worry about the concept of a *job collection* because each logic app is an individual Azure resource.
2626

@@ -68,14 +68,14 @@ for you to select later in your workflow.
6868
If you don't have a schema, but you have a sample payload in JSON format,
6969
you can generate a schema from that payload.
7070

71-
1. In the Request trigger, choose **Use sample payload to generate schema**.
71+
1. In the Request trigger, select **Use sample payload to generate schema**.
7272

7373
1. Under **Enter or paste a sample JSON payload**, provide your sample payload,
74-
and then choose **Done**, for example:
74+
and then select **Done**, for example:
7575

7676
![Sample payload](./media/migrate-from-scheduler-to-logic-apps/sample-payload.png)
7777

78-
1. Under the trigger, choose **Next step**.
78+
1. Under the trigger, select **Next step**.
7979

8080
1. In the search box, enter "delay until" as your filter.
8181
Under the actions list, select this action: **Delay until**
@@ -127,7 +127,7 @@ which you might have described earlier by specifying a schema.
127127

128128
For example, using the Postman app, you can create
129129
a POST request with the settings similar to this sample,
130-
and then choose **Send** to make the request.
130+
and then select **Send** to make the request.
131131

132132
| Request method | URL | Body | Headers |
133133
|----------------|-----|------|---------|
@@ -143,7 +143,7 @@ app appears under the **raw** box on the **Body** tab.
143143

144144
> [!IMPORTANT]
145145
>
146-
> If you want to cancel the job later, choose the **Headers** tab.
146+
> If you want to cancel the job later, select the **Headers** tab.
147147
> Find and copy the **x-ms-workflow-run-id** header value in the response.
148148
>
149149
> ![Response](./media/migrate-from-scheduler-to-logic-apps/postman-response.png)
@@ -174,11 +174,9 @@ From the triggers list, select this trigger:
174174
![Advanced schedule](./media/migrate-from-scheduler-to-logic-apps/recurrence-advanced-schedule.png)
175175

176176
For more information about advanced scheduling options, see
177-
[Create and run recurring tasks and workflows with Azure Logic Apps](../connectors/connectors-native-recurrence.md)
177+
[Create and run recurring tasks and workflows with Azure Logic Apps](../connectors/connectors-native-recurrence.md).
178178

179-
1. Add other actions you want by selecting from [hundreds of ready-to-use](../connectors/apis-list.md).
180-
Under the trigger, choose **Next step**.
181-
Find and select the actions you want.
179+
1. Add other actions you want by selecting from [hundreds of ready-to-use](../connectors/apis-list.md). Under the trigger, select **Next step**. Find and select the actions you want.
182180

183181
For example, you can include an HTTP
184182
action that sends a request to a URL,
@@ -202,11 +200,11 @@ logic app when intermittent failures happen, you can set the
202200
[retry policy](../logic-apps/logic-apps-exception-handling.md#retry-policies)
203201
in each action's settings, for example:
204202

205-
1. Open the action's (**...**) menu, and select **Settings**.
203+
1. Open the action's ellipses (**...**) menu, and select **Settings**.
206204

207205
![Open action settings](./media/migrate-from-scheduler-to-logic-apps/action-settings.png)
208206

209-
1. Select the retry policy you want. For more information about each policy,
207+
1. Select the retry policy that you want. For more information about each policy,
210208
see [Retry policies](../logic-apps/logic-apps-exception-handling.md#retry-policies).
211209

212210
![Select retry policy](./media/migrate-from-scheduler-to-logic-apps/retry-policy.png)
@@ -217,17 +215,17 @@ In Azure Scheduler, if the default action fails to run,
217215
you can run an alterative action that addresses the error condition.
218216
In Azure Logic Apps, you can also perform the same task.
219217

220-
1. In Logic App Designer, above the action you want to handle,
218+
1. In Logic App Designer, above the action that you want to handle,
221219
move your pointer over the arrow between steps,
222-
and select and **Add a parallel branch**.
220+
and select **Add a parallel branch**.
223221

224222
![Add parallel branch](./media/migrate-from-scheduler-to-logic-apps/add-parallel-branch.png)
225223

226224
1. Find and select the action you want to run instead as the alternative action.
227225

228226
![Add parallel action](./media/migrate-from-scheduler-to-logic-apps/add-parallel-action.png)
229227

230-
1. On the alternative action, open the (**...**) menu, and select **Configure run after**.
228+
1. On the alternative action, open the ellipses (**...**) menu, and select **Configure run after**.
231229

232230
![Configure run after](./media/migrate-from-scheduler-to-logic-apps/configure-run-after.png)
233231

@@ -236,7 +234,7 @@ and select and **Add a parallel branch**.
236234

237235
![Set up "run after" properties](./media/migrate-from-scheduler-to-logic-apps/select-run-after-properties.png)
238236

239-
1. When you're finished, choose **Done**.
237+
1. When you're finished, select **Done**.
240238

241239
To learn more about exception handling, see
242240
[Handle errors and exceptions - RunAfter property](../logic-apps/logic-apps-exception-handling.md#catch-and-handle-failures-with-the-runafter-property).
@@ -282,21 +280,19 @@ If your Azure subscription has a paid support plan, you can
282280
create a technical support request in the Azure portal.
283281
Otherwise, you can select a different support option.
284282

285-
1. On the [Azure portal](https://portal.azure.com) main menu,
286-
select **Help + support**.
283+
1. On the [Azure portal](https://portal.azure.com) main menu, select **Help + support**.
287284

288-
1. Under **Support**, select **New support request**.
289-
Provide these details for your request:
285+
1. From the **Support** menu, select **New support request**. Provide this information about for your request:
290286

291-
| Setting | Value |
287+
| Property | Value |
292288
|---------|-------|
293-
| **Issue type** | **Technical** |
294-
| **Subscription** | <*your-Azure-subscription*> |
295-
| **Service** | Under **Monitoring & Management**, select **Scheduler**. |
289+
| **Issue type** | **Technical** |
290+
| **Subscription** | <*your-Azure-subscription*> |
291+
| **Service** | Under **Monitoring & Management**, select **Scheduler**. If you can't find **Scheduler**, select **All services** first. |
296292
|||
297293

298294
1. Select the support option you want. If you have a paid support plan,
299-
choose **Next**.
295+
select **Next**.
300296

301297
**Community**
302298

0 commit comments

Comments
 (0)