Skip to content

Commit 0550f51

Browse files
Merge pull request #273729 from jonburchel/2024-04-29-public-pr-121895
2024 04 29 public pr 121895
2 parents f47e547 + 7052d1c commit 0550f51

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/data-factory/quickstart-create-data-factory-azure-cli.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Next, create a linked service and two datasets.
111111
```azurecli
112112
az datafactory linked-service create --resource-group ADFQuickStartRG \
113113
--factory-name ADFTutorialFactory --linked-service-name AzureStorageLinkedService \
114-
--properties @AzureStorageLinkedService.json
114+
--properties AzureStorageLinkedService.json
115115
```
116116

117117
1. In your working directory, create a JSON file with this content, named `InputDataset.json`:
@@ -140,7 +140,7 @@ Next, create a linked service and two datasets.
140140
```azurecli
141141
az datafactory dataset create --resource-group ADFQuickStartRG \
142142
--dataset-name InputDataset --factory-name ADFTutorialFactory \
143-
--properties @InputDataset.json
143+
--properties InputDataset.json
144144
```
145145

146146
1. In your working directory, create a JSON file with this content, named `OutputDataset.json`:
@@ -168,7 +168,7 @@ Next, create a linked service and two datasets.
168168
```azurecli
169169
az datafactory dataset create --resource-group ADFQuickStartRG \
170170
--dataset-name OutputDataset --factory-name ADFTutorialFactory \
171-
--properties @OutputDataset.json
171+
--properties OutputDataset.json
172172
```
173173

174174
## Create and run the pipeline

0 commit comments

Comments
 (0)