Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Datafactory] Power Query model changes for multiple queries #16158

Merged
merged 1 commit into from
Sep 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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