Skip to content

Commit

Permalink
[DataFactory] Add properties to spark job activity (Azure#20879)
Browse files Browse the repository at this point in the history
* add properties

* add item type
  • Loading branch information
wanyang7 authored and anandanthony committed Dec 16, 2022
1 parent 39a19d0 commit b73059a
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 4 deletions.
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 @@ -7929,9 +7929,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 @@ -7978,8 +7997,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

0 comments on commit b73059a

Please sign in to comment.