-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathauth-file-browser.json
More file actions
45 lines (45 loc) · 1.28 KB
/
auth-file-browser.json
File metadata and controls
45 lines (45 loc) · 1.28 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
{
"jupyter.lab.setting-icon": "jupydrive-s3:drive",
"jupyter.lab.setting-icon-label": "Drive Browser",
"title": "Credentials Provider",
"description": "jupydrive-s3 credentials provider.",
"type": "object",
"properties": {
"bucket": {
"type": "string",
"title": "Bucket",
"description": "The S3 bucket name.",
"default": "jupyter-drives-test-bucket-1"
},
"root": {
"type": "string",
"title": "Custom root path",
"description": "Path to folder within bucket, that should act as root. Defaults to bucket's top-level directory.",
"default": ""
},
"endpoint": {
"type": "string",
"title": "S3 endpoint",
"description": "The custom S3 endpoint (e.g. : https://s3.eu-north-1.amazonaws.com).",
"default": "https://example.com/s3"
},
"region": {
"type": "string",
"title": "Bucket region",
"description": "The S3 bucket region.",
"default": "eu-north-1"
},
"accessKeyId": {
"type": "string",
"title": "Access key ID",
"description": "The access key id used to access S3 bucket.",
"default": ""
},
"secretAccessKey": {
"type": "string",
"title": "Secret access key",
"default": ""
}
},
"additionalProperties": false
}