Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -6947,6 +6947,10 @@
"authentication": {
"type": "object",
"description": "Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string)."
},
"workspaceResourceId": {
"type": "object",
"description": "The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string)."
}
},
"required": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7956,9 +7956,28 @@
"description": "The fully-qualified identifier or the main class that is in the main definition file, which will override the 'className' of the spark job definition you provide. Type: string (or Expression with resultType string)."
},
"files": {
"description": "Additional files used for reference in the main definition file, which will override the 'files' of the spark job definition you provide.",
"description": "(Deprecated. Please use pythonCodeReference and filesV2) Additional files used for reference in the main definition file, which will override the 'files' of the spark job definition you provide.",
"type": "array",
"items": {
"type": "object",
"description": "Type: string (or Expression with resultType string)."
},
"x-ms-identifiers": []
},
"pythonCodeReference": {
"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.",
"type": "array",
"items": {
"type": "object",
"description": "Type: string (or Expression with resultType string)."
},
"x-ms-identifiers": []
},
"filesV2": {
"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.",
"type": "array",
"items": {
"type": "object",
"description": "Type: string (or Expression with resultType string)."
},
"x-ms-identifiers": []
Expand Down Expand Up @@ -8005,8 +8024,8 @@
}
},
"referenceName": {
"type": "string",
"description": "Reference spark job name."
"type": "object",
"description": "Reference spark job name. Expression with resultType string."
}
},
"required": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6692,6 +6692,10 @@
"authentication": {
"type": "object",
"description": "Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string)."
},
"workspaceResourceId": {
"type": "object",
"description": "The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string)."
}
},
"required": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7499,9 +7499,28 @@
"description": "The fully-qualified identifier or the main class that is in the main definition file, which will override the 'className' of the spark job definition you provide. Type: string (or Expression with resultType string)."
},
"files": {
"description": "Additional files used for reference in the main definition file, which will override the 'files' of the spark job definition you provide.",
"description": "(Deprecated. Please use pythonCodeReference and filesV2) Additional files used for reference in the main definition file, which will override the 'files' of the spark job definition you provide.",
"type": "array",
"items": {
"type": "object",
"description": "Type: string (or Expression with resultType string)."
},
"x-ms-identifiers": []
},
"pythonCodeReference": {
"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.",
"type": "array",
"items": {
"type": "object",
"description": "Type: string (or Expression with resultType string)."
},
"x-ms-identifiers": []
},
"filesV2": {
"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.",
"type": "array",
"items": {
"type": "object",
"description": "Type: string (or Expression with resultType string)."
},
"x-ms-identifiers": []
Expand Down