Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
1 change: 1 addition & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -732,6 +732,7 @@ findsimilars
findsquare
firmwares
Flexera
Flowlet
fluentd
forceclosehandles
forestsummary
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6438,6 +6438,13 @@
"description": "Data flow instance.",
"$ref": "#/definitions/DataFlowDebugResource"
},
"dataFlows": {
"description": "List of Data flows",
"type": "array",
"items": {
"$ref": "#/definitions/DataFlowDebugResource"
}
},
"datasets": {
"type": "array",
"description": "List of datasets.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,26 @@
}
}
},
"Flowlet": {
"x-ms-discriminator-value": "Flowlet",
"description": "Data flow flowlet",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/DataFlow"
}
],
"properties": {
"typeProperties": {
"description": "Flowlet type properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/FlowletTypeProperties"
}
},
"additionalProperties": {
"type": "object"
}
},
"MappingDataFlowTypeProperties": {
"description": "Mapping data flow type properties.",
"properties": {
Expand Down Expand Up @@ -93,6 +113,13 @@
"script": {
"type": "string",
"description": "DataFlow script."
},
"scriptLines": {
"type": "array",
"description": "Data flow script lines.",
"items": {
"type": "string"
}
}
}
},
Expand Down Expand Up @@ -130,6 +157,47 @@
}
}
},
"FlowletTypeProperties": {
"description": "Flowlet type properties.",
"type": "object",
"properties": {
"sources": {
"type": "array",
"description": "List of sources in Flowlet.",
"items": {
"$ref": "#/definitions/DataFlowSource"
}
},
"sinks": {
"type": "array",
"description": "List of sinks in Flowlet.",
"items": {
"$ref": "#/definitions/DataFlowSink"
}
},
"transformations": {
"type": "array",
"description": "List of transformations in Flowlet.",
"items": {
"$ref": "#/definitions/Transformation"
}
},
"script": {
"type": "string",
"description": "Flowlet script."
},
"scriptLines": {
"type": "array",
"description": "Flowlet script lines.",
"items": {
"type": "string"
}
},
"additionalProperties": {
"type": "object"
}
}
},
"Transformation": {
"description": "A data flow transformation.",
"type": "object",
Expand All @@ -141,6 +209,10 @@
"description": {
"description": "Transformation description.",
"type": "string"
},
"flowlet": {
"description": "Data flow Reference",
"$ref": "../datafactory.json#/definitions/DataFlowReference"
}
},
"required": [
Expand All @@ -166,6 +238,10 @@
"schemaLinkedService": {
"description": "Schema linked service reference.",
"$ref": "../datafactory.json#/definitions/LinkedServiceReference"
},
"flowlet": {
"description": "Data flow Reference",
"$ref": "../datafactory.json#/definitions/DataFlowReference"
}
}
},
Expand All @@ -188,6 +264,10 @@
"schemaLinkedService": {
"description": "Schema linked service reference.",
"$ref": "../datafactory.json#/definitions/LinkedServiceReference"
},
"flowlet": {
"description": "Data flow Reference",
"$ref": "../datafactory.json#/definitions/DataFlowReference"
}
}
},
Expand Down