Skip to content

Commit b72f0ee

Browse files
soma-msLeiwang3SQL
authored andcommitted
[Datafactory] Power Query model changes for multiple queries (Azure#16158)
1 parent 2904fc2 commit b72f0ee

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/DataFlow.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,10 @@
127127
"script": {
128128
"type": "string",
129129
"description": "Power query mashup script."
130+
},
131+
"documentLocale": {
132+
"type": "string",
133+
"description": "Locale of the Power query mashup document."
130134
}
131135
}
132136
},

specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7286,10 +7286,34 @@
72867286
"properties": {
72877287
"sinks": {
72887288
"type": "object",
7289-
"description": "List of Power Query activity sinks mapped to a queryName.",
7289+
"description": "(Deprecated. Please use Queries). List of Power Query activity sinks mapped to a queryName.",
72907290
"additionalProperties": {
72917291
"$ref": "./DataFlow.json#/definitions/PowerQuerySink"
72927292
}
7293+
},
7294+
"queries": {
7295+
"type": "array",
7296+
"description": "List of mapping for Power Query mashup query to sink dataset(s).",
7297+
"items": {
7298+
"$ref": "#/definitions/PowerQuerySinkMapping"
7299+
}
7300+
}
7301+
}
7302+
},
7303+
"PowerQuerySinkMapping": {
7304+
"description": "Map Power Query mashup query to sink dataset(s).",
7305+
"type": "object",
7306+
"properties": {
7307+
"queryName": {
7308+
"description": "Name of the query in Power Query mashup document.",
7309+
"type": "string"
7310+
},
7311+
"dataflowSinks": {
7312+
"type": "array",
7313+
"description": "List of sinks mapped to Power Query mashup query.",
7314+
"items": {
7315+
"$ref": "./DataFlow.json#/definitions/PowerQuerySink"
7316+
}
72937317
}
72947318
}
72957319
},

0 commit comments

Comments
 (0)