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
56 changes: 56 additions & 0 deletions schemas/2021-10-01-preview/Microsoft.StreamAnalytics.json
Original file line number Diff line number Diff line change
Expand Up @@ -1530,6 +1530,59 @@
},
"description": "The properties that are associated with the CustomClr serialization type."
},
"DeltaSerialization": {
"type": "object",
"properties": {
"properties": {
"oneOf": [
{
"$ref": "#/definitions/DeltaSerializationProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The properties that are associated with the Delta Lake serialization type."
},
"type": {
"type": "string",
"enum": [
"Delta"
]
}
},
"required": [
"type"
],
"description": "Describes how data from an input is serialized or how data is serialized when written to an output in Delta Lake format."
},
"DeltaSerializationProperties": {
"type": "object",
"properties": {
"deltaTablePath": {
"type": "string",
"description": "Specifies the path of the Delta Lake table that the output will be written to."
},
"partitionColumns": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Specifies the names of the columns for which the Delta Lake table will be partitioned. We are only supporting 1 partition column, but keeping it as an array for extensibility."
}
},
"required": [
"deltaTablePath"
],
"description": "The properties that are associated with the Delta Lake serialization type."
},
"DocumentDbOutputDataSource": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -3019,6 +3072,9 @@
"Serialization": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/DeltaSerialization"
},
{
"$ref": "#/definitions/ParquetSerialization"
},
Expand Down