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
43 changes: 38 additions & 5 deletions schemas/2021-06-01-preview/Microsoft.Synapse.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,6 @@
{
"$ref": "#/definitions/workspaces_keys_childResource"
},
{
"$ref": "#/definitions/workspaces_kustoPools_childResource"
},
{
"$ref": "#/definitions/workspaces_privateEndpointConnections_childResource"
},
Expand Down Expand Up @@ -150,6 +147,9 @@
},
{
"$ref": "#/definitions/workspaces_managedIdentitySqlControlSettings_childResource"
},
{
"$ref": "#/definitions/workspaces_kustoPools_childResource"
}
]
}
Expand Down Expand Up @@ -2202,13 +2202,13 @@
"sparkConfigProperties": {
"oneOf": [
{
"$ref": "#/definitions/LibraryRequirements"
"$ref": "#/definitions/SparkConfigProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Library requirements for a Big Data pool powered by Apache Spark"
"description": "SparkConfig Properties for a Big Data pool powered by Apache Spark"
},
"sparkEventsFolder": {
"type": "string",
Expand Down Expand Up @@ -3696,6 +3696,10 @@
"type": "string",
"description": "The name of the subnet this integration runtime will join."
},
"subnetId": {
"type": "string",
"description": "The ID of subnet, to which this Azure-SSIS integration runtime will be joined."
},
"vNetId": {
"type": "string",
"description": "The ID of the VNet that this integration runtime will join."
Expand Down Expand Up @@ -4961,6 +4965,35 @@
},
"description": "SQL pool SKU"
},
"SparkConfigProperties": {
"type": "object",
"properties": {
"configurationType": {
"oneOf": [
{
"type": "string",
"enum": [
"File",
"Artifact"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The type of the spark config properties file."
},
"content": {
"type": "string",
"description": "The spark config properties."
},
"filename": {
"type": "string",
"description": "The filename of the spark config properties file."
}
},
"description": "SparkConfig Properties for a Big Data pool powered by Apache Spark"
},
"SqlPoolBlobAuditingPolicyProperties": {
"type": "object",
"properties": {
Expand Down