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
68 changes: 68 additions & 0 deletions schemas/2018-06-01/Microsoft.DataFactory.json
Original file line number Diff line number Diff line change
Expand Up @@ -1245,6 +1245,11 @@
"AmazonRdsForSqlServerSource": {
"type": "object",
"properties": {
"isolationLevel": {
"type": "object",
"properties": {},
"description": "Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string)."
},
"partitionOption": {
"type": "object",
"properties": {},
Expand Down Expand Up @@ -5895,6 +5900,11 @@
"AzureSqlSource": {
"type": "object",
"properties": {
"isolationLevel": {
"type": "object",
"properties": {},
"description": "Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string)."
},
"partitionOption": {
"type": "object",
"properties": {},
Expand Down Expand Up @@ -27666,6 +27676,11 @@
"SqlDWSource": {
"type": "object",
"properties": {
"isolationLevel": {
"type": "object",
"properties": {},
"description": "Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string)."
},
"partitionOption": {
"type": "object",
"properties": {},
Expand Down Expand Up @@ -27794,6 +27809,11 @@
"SqlMISource": {
"type": "object",
"properties": {
"isolationLevel": {
"type": "object",
"properties": {},
"description": "Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string)."
},
"partitionOption": {
"type": "object",
"properties": {},
Expand Down Expand Up @@ -28004,6 +28024,11 @@
"SqlServerSource": {
"type": "object",
"properties": {
"isolationLevel": {
"type": "object",
"properties": {},
"description": "Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string)."
},
"partitionOption": {
"type": "object",
"properties": {},
Expand Down Expand Up @@ -29170,6 +29195,22 @@
"properties": {},
"description": "Spark configuration properties, which will override the 'conf' of the notebook you provide."
},
"configurationType": {
"oneOf": [
{
"type": "string",
"enum": [
"Default",
"Customized",
"Artifact"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The type of the spark config."
},
"driverSize": {
"type": "object",
"properties": {},
Expand Down Expand Up @@ -29211,6 +29252,22 @@
],
"description": "Notebook parameters."
},
"sparkConfig": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {}
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Spark configuration property."
},
"sparkPool": {
"oneOf": [
{
Expand All @@ -29221,6 +29278,17 @@
}
],
"description": "Big data pool reference type."
},
"targetSparkConfiguration": {
"oneOf": [
{
"$ref": "#/definitions/SparkConfigurationParametrizationReference"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Spark configuration reference."
}
},
"required": [
Expand Down