Skip to content
Closed
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
44 changes: 43 additions & 1 deletion schemas/2018-06-01/Microsoft.DataFactory.json
Original file line number Diff line number Diff line change
Expand Up @@ -11633,6 +11633,20 @@
],
"description": "Integration runtime reference type."
},
"queries": {
"oneOf": [
{
"type": "array",
"items": {
"$ref": "#/definitions/PowerQuerySinkMapping"
}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "List of mapping for Power Query mashup query to sink dataset(s)."
},
"runConcurrently": {
"type": "object",
"properties": {},
Expand All @@ -11651,7 +11665,7 @@
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"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."
},
"staging": {
"oneOf": [
Expand Down Expand Up @@ -21786,6 +21800,30 @@
],
"description": "Power query sink."
},
"PowerQuerySinkMapping": {
"type": "object",
"properties": {
"dataflowSinks": {
"oneOf": [
{
"type": "array",
"items": {
"$ref": "#/definitions/PowerQuerySink"
}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "List of sinks mapped to Power Query mashup query."
},
"queryName": {
"type": "string",
"description": "Name of the query in Power Query mashup document."
}
},
"description": "Map Power Query mashup query to sink dataset(s)."
},
"PowerQuerySource": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -21843,6 +21881,10 @@
"PowerQueryTypeProperties": {
"type": "object",
"properties": {
"documentLocale": {
"type": "string",
"description": "Locale of the Power query mashup document."
},
"script": {
"type": "string",
"description": "Power query mashup script."
Expand Down