@daytonaio/api-client 0.167.0-alpha.1 → 0.167.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -45,4 +45,28 @@ export interface RegionQuota {
|
|
|
45
45
|
* @memberof RegionQuota
|
|
46
46
|
*/
|
|
47
47
|
'totalDiskQuota': number;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof RegionQuota
|
|
52
|
+
*/
|
|
53
|
+
'maxCpuPerSandbox': number | null;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof RegionQuota
|
|
58
|
+
*/
|
|
59
|
+
'maxMemoryPerSandbox': number | null;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {number}
|
|
63
|
+
* @memberof RegionQuota
|
|
64
|
+
*/
|
|
65
|
+
'maxDiskPerSandbox': number | null;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {number}
|
|
69
|
+
* @memberof RegionQuota
|
|
70
|
+
*/
|
|
71
|
+
'maxDiskPerNonEphemeralSandbox': number | null;
|
|
48
72
|
}
|
|
@@ -33,4 +33,28 @@ export interface UpdateOrganizationRegionQuota {
|
|
|
33
33
|
* @memberof UpdateOrganizationRegionQuota
|
|
34
34
|
*/
|
|
35
35
|
'totalDiskQuota': number | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof UpdateOrganizationRegionQuota
|
|
40
|
+
*/
|
|
41
|
+
'maxCpuPerSandbox'?: number | null;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof UpdateOrganizationRegionQuota
|
|
46
|
+
*/
|
|
47
|
+
'maxMemoryPerSandbox'?: number | null;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof UpdateOrganizationRegionQuota
|
|
52
|
+
*/
|
|
53
|
+
'maxDiskPerSandbox'?: number | null;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof UpdateOrganizationRegionQuota
|
|
58
|
+
*/
|
|
59
|
+
'maxDiskPerNonEphemeralSandbox'?: number | null;
|
|
36
60
|
}
|