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
|
[
{
"uniqueId": "uniqueId_1",
"name": "disk_size",
"type": "integer",
"required": false,
"defaultValue": "10",
"description": "Size of the local disk, in Gigabytes (GB), available to applications running on the Compute node.",
"constraints": [
{
"inRange": [
"100"
]
}
],
"isPassword": false
},
{
"uniqueId": "uniqueId_2",
"name": "num_cpus",
"type": "integer",
"required": false,
"defaultValue": "2",
"description": "Number of (actual or virtual) CPUs associated with the Compute node.",
"constraints": [
{
"inRange": [
"1",
"4"
]
}
],
"isPassword": false
}
]
|