@@ -71,7 +71,7 @@ The top-level Resource Manager template for defining a data factory is:
71
71
{
72
72
"name" : " [parameters('dataFactoryName')]" ,
73
73
"apiVersion" : " [variables('apiVersion')]" ,
74
- "type" : " Microsoft.DataFactory/datafactories " ,
74
+ "type" : " Microsoft.DataFactory/factories " ,
75
75
"location" : " westus" ,
76
76
"resources" : [
77
77
{ ... },
@@ -111,7 +111,7 @@ Create a JSON file named **ADFTutorialARM.json** in **C:\ADFGetStarted** folder
111
111
{
112
112
"name" : " [variables('dataFactoryName')]" ,
113
113
"apiVersion" : " 2015-10-01" ,
114
- "type" : " Microsoft.DataFactory/datafactories " ,
114
+ "type" : " Microsoft.DataFactory/factories " ,
115
115
"location" : " West US" ,
116
116
"resources" : [
117
117
{
@@ -362,7 +362,7 @@ You define a data factory in the Resource Manager template as shown in the follo
362
362
{
363
363
"name": "[variables('dataFactoryName')]",
364
364
"apiVersion": "2015-10-01",
365
- "type": "Microsoft.DataFactory/datafactories ",
365
+ "type": "Microsoft.DataFactory/factories ",
366
366
"location": "West US"
367
367
}
368
368
```
@@ -593,11 +593,11 @@ Here is a sample Resource Manager template for creating a logical gateway in the
593
593
{
594
594
"name" : " [variables('dataFactoryName')]" ,
595
595
"apiVersion" : " [variables('apiVersion')]" ,
596
- "type" : " Microsoft.DataFactory/datafactories " ,
596
+ "type" : " Microsoft.DataFactory/factories " ,
597
597
"location" : " eastus" ,
598
598
"resources" : [
599
599
{
600
- "dependsOn" : [ " [concat('Microsoft.DataFactory/dataFactories /', variables('dataFactoryName'))]" ],
600
+ "dependsOn" : [ " [concat('Microsoft.DataFactory/factories /', variables('dataFactoryName'))]" ],
601
601
"type" : " gateways" ,
602
602
"apiVersion" : " [variables('apiVersion')]" ,
603
603
"name" : " GatewayUsingARM" ,
0 commit comments