Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DataFactory] Adding new properties to Databricks LS and custom activity #5214

Merged
merged 1 commit into from
Feb 22, 2019
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 @@ -4229,6 +4229,18 @@
"description": "Type: string (or Expression with resultType string)."
}
},
"newClusterDriverNodeType": {
"type": "object",
"description": "The driver node type for the new cluster. Type: string (or Expression with resultType string)."
},
"newClusterInitScripts": {
"type": "object",
"description": "User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings)."
},
"newClusterEnableElasticDisk": {
"type": "object",
"description": "Enable the elastic disk on the new cluster. Type: boolean (or Expression with resultType boolean)."
},
"encryptedCredential": {
"type": "object",
"description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string)."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2272,6 +2272,10 @@
"type": "object",
"description": "Type: string (or Expression with resultType string)."
}
},
"retentionTimeInDays": {
"type": "object",
"description": "The retention time for the files submitted for custom activity. Type: double (or Expression with resultType double)."
}
},
"required": [
Expand Down