Skip to content

Commit

Permalink
CodeGen from PR 11640 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
add traceLevel, continueOnError, and runConcurrently properties to Dataflow activity properties (#11640)
  • Loading branch information
SDKAuto committed Nov 17, 2020
1 parent 55caa1a commit 9d2c1bc
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 25 deletions.
2 changes: 1 addition & 1 deletion schemas/2017-09-01-preview/Microsoft.DataFactory.json
Original file line number Diff line number Diff line change
Expand Up @@ -12175,4 +12175,4 @@
"description": "Zoho server dataset."
}
}
}
}
46 changes: 22 additions & 24 deletions schemas/2018-06-01/Microsoft.DataFactory.json
Original file line number Diff line number Diff line change
Expand Up @@ -10616,6 +10616,11 @@
],
"description": "Compute properties for data flow activity."
},
"continueOnError": {
"type": "object",
"properties": {},
"description": "Continue on error setting used for data flow execution. Enables processing to continue if a sink fails. Type: boolean (or Expression with resultType boolean)"
},
"dataFlow": {
"oneOf": [
{
Expand All @@ -10638,6 +10643,11 @@
],
"description": "Integration runtime reference type."
},
"runConcurrently": {
"type": "object",
"properties": {},
"description": "Concurrent run setting used for data flow execution. Allows sinks with the same save order to be processed concurrently. Type: boolean (or Expression with resultType boolean)"
},
"staging": {
"oneOf": [
{
Expand All @@ -10648,6 +10658,11 @@
}
],
"description": "Staging info for execute data flow activity."
},
"traceLevel": {
"type": "object",
"properties": {},
"description": "Trace level setting used for data flow monitoring output. Supported values are: 'coarse', 'fine', and 'none'. Type: string (or Expression with resultType string)"
}
},
"required": [
Expand All @@ -10659,31 +10674,14 @@
"type": "object",
"properties": {
"computeType": {
"oneOf": [
{
"type": "string",
"enum": [
"General",
"MemoryOptimized",
"ComputeOptimized"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Compute type of the cluster which will execute data flow job."
"type": "object",
"properties": {},
"description": "Compute type of the cluster which will execute data flow job. Possible values include: 'General', 'MemoryOptimized', 'ComputeOptimized'. Type: string (or Expression with resultType string)"
},
"coreCount": {
"oneOf": [
{
"type": "integer"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272."
"type": "object",
"properties": {},
"description": "Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272. Type: integer (or Expression with resultType integer)"
}
},
"description": "Compute properties for data flow activity."
Expand Down Expand Up @@ -28195,4 +28193,4 @@
"description": "A copy activity Zoho server source."
}
}
}
}

0 comments on commit 9d2c1bc

Please sign in to comment.