-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from dataiku/bug/sc-106495-cleartext-password
[sc-106495] cleartext password
- Loading branch information
Showing
6 changed files
with
131 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
parameter-sets/tableau-personal-connection/parameter-set.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
"meta" : { | ||
"label": "Tableau Server Personal Preset", | ||
"description": "Tableau Server Personal Preset", | ||
"icon": "icon-tableau" | ||
}, | ||
"defaultDefinableInline": false, | ||
"defaultDefinableAtProjectLevel": false, | ||
|
||
"pluginParams": [], | ||
|
||
"params": [ | ||
{ | ||
"name": "server_url", | ||
"label":"URL", | ||
"type": "STRING", | ||
"mandatory": true, | ||
"description": "URL of your Tableau server without subpaths. \nFor local Tableau servers, an example would be: https://www.MY_SERVER.com. For Tableau Online, \nan example would be: https://10ax.online.tableau.com/." | ||
}, | ||
{ | ||
"name": "site_id", | ||
"label":"Site ID", | ||
"type": "STRING", | ||
"description":"The site_id is the subpath of your full site URL." | ||
}, | ||
{ | ||
"name": "ignore_ssl", | ||
"label" : "Ignore SSL", | ||
"type": "BOOLEAN", | ||
"mandatory": false, | ||
"description": "(not recommended)", | ||
"defaultValue": false | ||
}, | ||
{ | ||
"name": "ssl_cert_path", | ||
"label": "SSL certificate", | ||
"type": "STRING", | ||
"description": "(optional) Full path to your tableau SSL certificate", | ||
"mandatory": false, | ||
"visibilityCondition": "model.ignore_ssl == false" | ||
}, | ||
{ | ||
"name": "tableau_personal_basic", | ||
"type": "CREDENTIAL_REQUEST", | ||
"label": "Tableau basic login", | ||
"credentialRequestSettings": { | ||
"type": "BASIC" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters