-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.json
More file actions
33 lines (33 loc) · 1.09 KB
/
plugin.json
File metadata and controls
33 lines (33 loc) · 1.09 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
{
"id": "salesforce",
"version": "2.2.0",
"meta": {
"label": "Salesforce",
"description": "Fetch data from Salesforce",
"author": "Dataiku (Jérémy Grèze & Alexandre Bourret)",
"icon": "icon-salesforce",
"licenseInfo": "Apache Software License version 2",
"url": "https://www.dataiku.com/dss/plugins/info/salesforce.html",
"category": "Business Applications",
"tags": ["Connector", "CRM", "Business Applications", "Agentic"],
"supportLevel": "NOT_SUPPORTED"
},
"params": [
{
"name": "read_timeout",
"label": "Read timeout",
"description": "Number of seconds to wait for a chunk of data to be received (GET request).",
"type": "INT",
"defaultValue": 120,
"minI": 10
},
{
"name": "write_timeout",
"label": "Write timeout",
"description": "Number of seconds to wait for a chunk of data to be sent (POST/PATCH request).",
"type": "INT",
"defaultValue": 10,
"minI": 10
}
]
}