Skip to content

Commit fce3b89

Browse files
authored
Merge pull request #113000 from KranthiPakala-MSFT/patch-50
(AzureCXP) fixes MicrosoftDocs/issues#45807
2 parents 5dadfc6 + f694c33 commit fce3b89

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/data-factory/v1/data-factory-build-your-first-pipeline-using-arm.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The top-level Resource Manager template for defining a data factory is:
7171
{
7272
"name": "[parameters('dataFactoryName')]",
7373
"apiVersion": "[variables('apiVersion')]",
74-
"type": "Microsoft.DataFactory/datafactories",
74+
"type": "Microsoft.DataFactory/factories",
7575
"location": "westus",
7676
"resources": [
7777
{ ... },
@@ -111,7 +111,7 @@ Create a JSON file named **ADFTutorialARM.json** in **C:\ADFGetStarted** folder
111111
{
112112
"name": "[variables('dataFactoryName')]",
113113
"apiVersion": "2015-10-01",
114-
"type": "Microsoft.DataFactory/datafactories",
114+
"type": "Microsoft.DataFactory/factories",
115115
"location": "West US",
116116
"resources": [
117117
{
@@ -362,7 +362,7 @@ You define a data factory in the Resource Manager template as shown in the follo
362362
{
363363
"name": "[variables('dataFactoryName')]",
364364
"apiVersion": "2015-10-01",
365-
"type": "Microsoft.DataFactory/datafactories",
365+
"type": "Microsoft.DataFactory/factories",
366366
"location": "West US"
367367
}
368368
```
@@ -593,11 +593,11 @@ Here is a sample Resource Manager template for creating a logical gateway in the
593593
{
594594
"name": "[variables('dataFactoryName')]",
595595
"apiVersion": "[variables('apiVersion')]",
596-
"type": "Microsoft.DataFactory/datafactories",
596+
"type": "Microsoft.DataFactory/factories",
597597
"location": "eastus",
598598
"resources": [
599599
{
600-
"dependsOn": [ "[concat('Microsoft.DataFactory/dataFactories/', variables('dataFactoryName'))]" ],
600+
"dependsOn": [ "[concat('Microsoft.DataFactory/factories/', variables('dataFactoryName'))]" ],
601601
"type": "gateways",
602602
"apiVersion": "[variables('apiVersion')]",
603603
"name": "GatewayUsingARM",

0 commit comments

Comments
 (0)