-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfiguration.json
More file actions
54 lines (54 loc) · 1.04 KB
/
configuration.json
File metadata and controls
54 lines (54 loc) · 1.04 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
[
{
"key": "ClientAccessKey",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "Client Access Key",
"placeholder": "ABC123",
"required": true
}
},
{
"key": "UserAccessKey",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "User Access Key",
"placeholder": "DNOW1X000000",
"required": true
}
},
{
"key": "Username",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "Username",
"placeholder": "HelloID",
"required": true
}
},
{
"key": "Password",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "Password",
"type": "password",
"placeholder": "Please enter a password",
"required": true
}
},
{
"key": "per_page",
"type": "input",
"defaultValue": "100",
"templateOptions": {
"label": "Per Page",
"placeholder": "100",
"required": true,
"description": "Default: 100"
}
}
]