-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
66 lines (66 loc) · 2.08 KB
/
plugin.json
File metadata and controls
66 lines (66 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"id": "collibra-connector",
"version": "3.0.1",
"meta": {
"label": "Collibra Connector",
"description": "Loads Dataiku asset metadata into Collibra",
"author": "Dataiku",
"icon": "icon-archive",
"tags": ["Governance","Connector"],
"licenseInfo": "Apache 2.0",
"url": "https://www.dataiku.com/product/plugins/collibra-connector/"
},
"params":[
{
"type": "STRING",
"name": "uid",
"label": "Collibra uid",
"mandatory":true,
"description": "The account used must have administrator privileges."
},
{
"type": "PASSWORD",
"name": "pwd",
"label": "Collibra password",
"mandatory":true
},
{
"type": "STRING",
"name": "url",
"label": "Collibra URL",
"mandatory":true,
"description": "URL of the Collibra instance you would like to populate with metadata. You must include '/rest/2.0/' at the end of the URL."
}
,
{
"type": "STRING",
"name": "dataikuUrl",
"label": "Dataiku URL",
"mandatory":false,
"description": "(optional) If not provided, the connector will process projects from your current DSS instance."
}
,
{
"type": "STRING",
"name": "apiKey",
"label": "Dataiku API key",
"mandatory":false,
"description": "(optional) If not provided, the connector will process projects from your current DSS instance."
}
,
{
"type": "STRING",
"name": "nickname",
"label": "Name for Dataiku instance",
"mandatory":true,
"description": "Dataiku assets will appear in Collibra as associated with this name."
}
,
{
"type": "BOOLEAN",
"name": "certCheck",
"label": "Would you like to ignore SSL checks?",
"defaultValue": false
}
]
}