Skip to content

Commit 7d0c589

Browse files
author
SDKAuto
committed
CodeGen from PR 22092 in Azure/azure-rest-api-specs
Merge ec343ea4f8b42f7b98417e93b8318602f637dde7 into 61a8b1a62420c393fe5276c47373ea8dce74a985
1 parent 039252d commit 7d0c589

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

schemas/2021-10-01-preview/Microsoft.StreamAnalytics.json

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1530,6 +1530,59 @@
15301530
},
15311531
"description": "The properties that are associated with the CustomClr serialization type."
15321532
},
1533+
"DeltaSerialization": {
1534+
"type": "object",
1535+
"properties": {
1536+
"properties": {
1537+
"oneOf": [
1538+
{
1539+
"$ref": "#/definitions/DeltaSerializationProperties"
1540+
},
1541+
{
1542+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
1543+
}
1544+
],
1545+
"description": "The properties that are associated with the Delta Lake serialization type."
1546+
},
1547+
"type": {
1548+
"type": "string",
1549+
"enum": [
1550+
"Delta"
1551+
]
1552+
}
1553+
},
1554+
"required": [
1555+
"type"
1556+
],
1557+
"description": "Describes how data from an input is serialized or how data is serialized when written to an output in Delta Lake format."
1558+
},
1559+
"DeltaSerializationProperties": {
1560+
"type": "object",
1561+
"properties": {
1562+
"deltaTablePath": {
1563+
"type": "string",
1564+
"description": "Specifies the path of the Delta Lake table that the output will be written to."
1565+
},
1566+
"partitionColumns": {
1567+
"oneOf": [
1568+
{
1569+
"type": "array",
1570+
"items": {
1571+
"type": "string"
1572+
}
1573+
},
1574+
{
1575+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
1576+
}
1577+
],
1578+
"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."
1579+
}
1580+
},
1581+
"required": [
1582+
"deltaTablePath"
1583+
],
1584+
"description": "The properties that are associated with the Delta Lake serialization type."
1585+
},
15331586
"DocumentDbOutputDataSource": {
15341587
"type": "object",
15351588
"properties": {
@@ -3019,6 +3072,9 @@
30193072
"Serialization": {
30203073
"type": "object",
30213074
"oneOf": [
3075+
{
3076+
"$ref": "#/definitions/DeltaSerialization"
3077+
},
30223078
{
30233079
"$ref": "#/definitions/ParquetSerialization"
30243080
},

0 commit comments

Comments
 (0)