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/data-factory/how-to-create-schedule-trigger.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
@@ -252,31 +252,31 @@ This section shows you how to use Azure CLI to create, start, and monitor a sche
252
252
- The trigger is associated with the **Adfv2QuickStartPipeline** pipeline. To associate multiple pipelines with a trigger, add more **pipelineReference** sections.
253
253
- The pipeline in the Quickstart takes two **parameters** values: **inputPath** and **outputPath**. And you pass values for these parameters from the trigger.
254
254
255
-
1. Create a trigger by using the [az data factory trigger create](/cli/azure/datafactory/trigger#az_datafactory_trigger_create) command:
255
+
1. Create a trigger by using the [az datafactory trigger create](/cli/azure/datafactory/trigger#az_datafactory_trigger_create) command:
1. Confirm that the status of the trigger is **Stopped** by using the [az data factory trigger show](/cli/azure/datafactory/trigger#az_datafactory_trigger_show) command:
261
+
1. Confirm that the status of the trigger is **Stopped** by using the [az datafactory trigger show](/cli/azure/datafactory/trigger#az_datafactory_trigger_show) command:
262
262
263
263
```azurecli
264
264
az datafactory trigger show --resource-group "ADFQuickStartRG" --factory-name "ADFTutorialFactory" --name "MyTrigger"
265
265
```
266
266
267
-
1. Start the trigger by using the [az data factory trigger start](/cli/azure/datafactory/trigger#az_datafactory_trigger_start) command:
267
+
1. Start the trigger by using the [az datafactory trigger start](/cli/azure/datafactory/trigger#az_datafactory_trigger_start) command:
268
268
269
269
```azurecli
270
270
az datafactory trigger start --resource-group "ADFQuickStartRG" --factory-name "ADFTutorialFactory" --name "MyTrigger"
271
271
```
272
272
273
-
1. Confirm that the status of the trigger is **Started** by using the [az data factory trigger show](/cli/azure/datafactory/trigger#az_datafactory_trigger_show) command:
273
+
1. Confirm that the status of the trigger is **Started** by using the [az datafactory trigger show](/cli/azure/datafactory/trigger#az_datafactory_trigger_show) command:
274
274
275
275
```azurecli
276
276
az datafactory trigger show --resource-group "ADFQuickStartRG" --factory-name "ADFTutorialFactory" --name "MyTrigger"
277
277
```
278
278
279
-
1. Get the trigger runs in Azure CLI by using the [az data factory trigger-run query-by-factory](/cli/azure/datafactory/trigger-run#az_datafactory_trigger_run_query_by_factory) command. To get information about the trigger runs, execute the following command periodically. Update the **last-updated-after** and **last-updated-before** values to match the values in your trigger definition:
279
+
1. Get the trigger runs in Azure CLI by using the [az datafactory trigger-run query-by-factory](/cli/azure/datafactory/trigger-run#az_datafactory_trigger_run_query_by_factory) command. To get information about the trigger runs, execute the following command periodically. Update the **last-updated-after** and **last-updated-before** values to match the values in your trigger definition:
0 commit comments