Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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 @@ -96,6 +96,39 @@
}
}
},
"WranglingDataFlow": {
"x-ms-discriminator-value": "WranglingDataFlow",
"description": "Power Query data flow.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/DataFlow"
}
],
"properties": {
"typeProperties": {
"description": "PowerQuery data flow type properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/PowerQueryTypeProperties"
}
}
},
"PowerQueryTypeProperties": {
"description": "Power Query data flow type properties.",
"properties": {
"sources": {
"type": "array",
"description": "List of sources in Power Query.",
"items": {
"$ref": "#/definitions/PowerQuerySource"
}
},
"script": {
"type": "string",
"description": "Power query mashup script."
}
}
},
"Transformation": {
"description": "A data flow transformation.",
"type": "object",
Expand Down Expand Up @@ -156,6 +189,34 @@
"$ref": "../datafactory.json#/definitions/LinkedServiceReference"
}
}
},
"PowerQuerySource": {
"description": "Power query source.",
"allOf": [
{
"$ref": "#/definitions/DataFlowSource"
}
],
"properties": {
"script": {
"description": "source script.",
"type": "string"
}
}
},
"PowerQuerySink": {
"description": "Power query sink.",
"allOf": [
{
"$ref": "#/definitions/DataFlowSink"
}
],
"properties": {
"script": {
"description": "sink script.",
"type": "string"
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7098,6 +7098,29 @@
"typeProperties"
]
},
"ExecuteWranglingDataflowActivity": {
"description": "Execute power query activity.",
"x-ms-discriminator-value": "ExecuteWranglingDataflow",
"allOf": [
{
"$ref": "#/definitions/Activity"
}
],
"properties": {
"typeProperties": {
"x-ms-client-flatten": true,
"description": "Execute power query activity properties.",
"$ref": "#/definitions/ExecutePowerQueryActivityTypeProperties"
},
"policy": {
"$ref": "#/definitions/ActivityPolicy",
"description": "Activity policy."
}
},
"required": [
"typeProperties"
]
},
"ExecuteDataFlowActivityTypeProperties": {
"description": "Execute data flow activity properties.",
"properties": {
Expand Down Expand Up @@ -7144,6 +7167,23 @@
"dataFlow"
]
},
"ExecutePowerQueryActivityTypeProperties": {
"description": "Execute power query data flow activity properties.",
"allOf": [
{
"$ref": "#/definitions/ExecuteDataFlowActivityTypeProperties"
}
],
"properties": {
"sinks": {
"type": "object",
"description": "List of Power Query activity sinks mapped to a queryName.",
"additionalProperties": {
"$ref": "./DataFlow.json#/definitions/PowerQuerySink"
}
}
}
},
"SharePointOnlineListSource": {
"description": "A copy activity source for sharePoint online list source.",
"type": "object",
Expand Down