Skip to content

Commit c9ae1e0

Browse files
authored
Update how-to-create-schedule-trigger.md
"datafactory" is one word in the command names, so I'm undoing some changes
1 parent ae1ec99 commit c9ae1e0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/data-factory/how-to-create-schedule-trigger.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -252,31 +252,31 @@ This section shows you how to use Azure CLI to create, start, and monitor a sche
252252
- The trigger is associated with the **Adfv2QuickStartPipeline** pipeline. To associate multiple pipelines with a trigger, add more **pipelineReference** sections.
253253
- The pipeline in the Quickstart takes two **parameters** values: **inputPath** and **outputPath**. And you pass values for these parameters from the trigger.
254254

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:
256256

257257
```azurecli
258258
az datafactory trigger create --resource-group "ADFQuickStartRG" --factory-name "ADFTutorialFactory" --name "MyTrigger" --properties @MyTrigger.json
259259
```
260260

261-
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:
262262

263263
```azurecli
264264
az datafactory trigger show --resource-group "ADFQuickStartRG" --factory-name "ADFTutorialFactory" --name "MyTrigger"
265265
```
266266

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:
268268

269269
```azurecli
270270
az datafactory trigger start --resource-group "ADFQuickStartRG" --factory-name "ADFTutorialFactory" --name "MyTrigger"
271271
```
272272

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:
274274

275275
```azurecli
276276
az datafactory trigger show --resource-group "ADFQuickStartRG" --factory-name "ADFTutorialFactory" --name "MyTrigger"
277277
```
278278

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:
280280

281281
```azurecli
282282
az datafactory trigger-run query-by-factory --resource-group "ADFQuickStartRG" --factory-name "ADFTutorialFactory" --filters operand="TriggerName" operator="Equals" values="MyTrigger" --last-updated-after "2017-12-08T00:00:00" --last-updated-before "2017-12-08T01:00:00"
@@ -583,4 +583,4 @@ The examples assume that the **interval** value is 1, and that the **frequency**
583583
## Next steps
584584

585585
- For detailed information about triggers, see [Pipeline execution and triggers](concepts-pipeline-execution-triggers.md#trigger-execution-with-json).
586-
- Learn how to reference trigger metadata in pipeline, see [Reference Trigger Metadata in Pipeline Runs](how-to-use-trigger-parameterization.md)
586+
- Learn how to reference trigger metadata in pipeline, see [Reference Trigger Metadata in Pipeline Runs](how-to-use-trigger-parameterization.md)

0 commit comments

Comments
 (0)