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
78 changes: 76 additions & 2 deletions schemas/2021-10-01-preview/Microsoft.StreamAnalytics.json
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,66 @@
],
"description": "Describes how data from an input is serialized or how data is serialized when written to an output in Avro format."
},
"AzureDataExplorerOutputDataSource": {
"type": "object",
"properties": {
"properties": {
"oneOf": [
{
"$ref": "#/definitions/AzureDataExplorerOutputDataSourceProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The properties that are associated with an Azure Data Explorer output."
},
"type": {
"type": "string",
"enum": [
"Microsoft.Kusto/clusters/databases"
]
}
},
"required": [
"type"
],
"description": "Describes an Azure Data Explorer output data source."
},
"AzureDataExplorerOutputDataSourceProperties": {
"type": "object",
"properties": {
"authenticationMode": {
"oneOf": [
{
"type": "string",
"enum": [
"Msi",
"UserToken",
"ConnectionString"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Authentication Mode."
},
"cluster": {
"type": "string",
"description": "The name of the Azure Data Explorer cluster. Required on PUT (CreateOrReplace) requests."
},
"database": {
"type": "string",
"description": "The name of the Azure Data Explorer database. Required on PUT (CreateOrReplace) requests."
},
"table": {
"type": "string",
"description": "The name of the Azure Table. Required on PUT (CreateOrReplace) requests."
}
},
"description": "The properties that are associated with an Azure Data Explorer output."
},
"AzureDataLakeStoreOutputDataSource": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -2263,8 +2323,19 @@
"description": "The type of identity, can be SystemAssigned or UserAssigned."
},
"userAssignedIdentities": {
"type": "object",
"properties": {},
"oneOf": [
{
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {}
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The user assigned identities associated with the streaming job resource."
}
},
Expand Down Expand Up @@ -2610,6 +2681,9 @@
},
{
"$ref": "#/definitions/GatewayMessageBusOutputDataSource"
},
{
"$ref": "#/definitions/AzureDataExplorerOutputDataSource"
}
],
"properties": {},
Expand Down