Skip to content

Commit

Permalink
CodeGen from PR 21768 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge d5b6fb7072b128371ecc9c8fa42a883182445a39 into 903a8802a13b5f3c05cdceea9ba4716aaee5de45
  • Loading branch information
SDKAuto committed Dec 6, 2022
1 parent e637034 commit b1533c5
Showing 1 changed file with 78 additions and 7 deletions.
85 changes: 78 additions & 7 deletions schemas/2018-06-01/Microsoft.DataFactory.json
Original file line number Diff line number Diff line change
Expand Up @@ -27270,6 +27270,35 @@
],
"description": "A copy activity snowflake source."
},
"SparkConfigurationParametrizationReference": {
"type": "object",
"properties": {
"referenceName": {
"type": "object",
"properties": {},
"description": "Reference spark configuration name. Type: string (or Expression with resultType string)."
},
"type": {
"oneOf": [
{
"type": "string",
"enum": [
"SparkConfigurationReference"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Spark configuration reference type."
}
},
"required": [
"referenceName",
"type"
],
"description": "Spark configuration reference."
},
"SparkDatasetTypeProperties": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -29246,6 +29275,22 @@
"properties": {},
"description": "Spark configuration properties, which will override the 'conf' of the spark job definition 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 @@ -29292,30 +29337,45 @@
"description": "Additional files used for reference in the main definition file, which will override the 'jars' and 'files' of the spark job definition you provide."
},
"numExecutors": {
"type": "object",
"properties": {},
"description": "Number of executors to launch for this job, which will override the 'numExecutors' of the spark job definition you provide."
},
"pythonCodeReference": {
"oneOf": [
{
"type": "integer"
"type": "array",
"items": {
"type": "object",
"properties": {}
}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Number of executors to launch for this job, which will override the 'numExecutors' of the spark job definition you provide."
"description": "Additional python code files used for reference in the main definition file, which will override the 'pyFiles' of the spark job definition you provide."
},
"pythonCodeReference": {
"scanFolder": {
"type": "object",
"properties": {},
"description": "Scanning subfolders from the root folder of the main definiton file, these files will be added as reference files. The folders named 'jars', 'pyFiles', 'files' or 'archives' will be scanned, and the folders name are case sensitive. Type: boolean (or Expression with resultType boolean)."
},
"sparkConfig": {
"oneOf": [
{
"type": "array",
"items": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {}
}
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Additional python code files used for reference in the main definition file, which will override the 'pyFiles' of the spark job definition you provide."
"description": "Spark configuration property."
},
"sparkJob": {
"oneOf": [
Expand All @@ -29338,6 +29398,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

0 comments on commit b1533c5

Please sign in to comment.