@cloudbase/manager-node 5.2.0-beta.0 → 5.2.0-beta.1
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 +1 -1
- package/types/sandbox/types.d.ts +3 -3
package/package.json
CHANGED
package/types/sandbox/types.d.ts
CHANGED
|
@@ -61,9 +61,9 @@ export interface PortConfiguration {
|
|
|
61
61
|
* 资源配置
|
|
62
62
|
*/
|
|
63
63
|
export interface ResourceConfiguration {
|
|
64
|
-
/** CPU 资源量,示例值:
|
|
65
|
-
CPU?:
|
|
66
|
-
/**
|
|
64
|
+
/** CPU 资源量,示例值:500m */
|
|
65
|
+
CPU?: string;
|
|
66
|
+
/** 内存资源量,示例值:1Gi */
|
|
67
67
|
Memory?: string;
|
|
68
68
|
}
|
|
69
69
|
/**
|