Skip to content

Commit

Permalink
[Datafactory] Power Query model changes for multiple queries (#16158)
Browse files Browse the repository at this point in the history
  • Loading branch information
soma-ms authored Sep 30, 2021
1 parent 03c6ecc commit 2ce9153
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,10 @@
"script": {
"type": "string",
"description": "Power query mashup script."
},
"documentLocale": {
"type": "string",
"description": "Locale of the Power query mashup document."
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7286,10 +7286,34 @@
"properties": {
"sinks": {
"type": "object",
"description": "List of Power Query activity sinks mapped to a queryName.",
"description": "(Deprecated. Please use Queries). List of Power Query activity sinks mapped to a queryName.",
"additionalProperties": {
"$ref": "./DataFlow.json#/definitions/PowerQuerySink"
}
},
"queries": {
"type": "array",
"description": "List of mapping for Power Query mashup query to sink dataset(s).",
"items": {
"$ref": "#/definitions/PowerQuerySinkMapping"
}
}
}
},
"PowerQuerySinkMapping": {
"description": "Map Power Query mashup query to sink dataset(s).",
"type": "object",
"properties": {
"queryName": {
"description": "Name of the query in Power Query mashup document.",
"type": "string"
},
"dataflowSinks": {
"type": "array",
"description": "List of sinks mapped to Power Query mashup query.",
"items": {
"$ref": "./DataFlow.json#/definitions/PowerQuerySink"
}
}
}
},
Expand Down

0 comments on commit 2ce9153

Please sign in to comment.