@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloudbase/manager-node",
3
- "version": "5.2.0-beta.0",
3
+ "version": "5.2.0-beta.1",
4
4
  "description": "The node manage service api for cloudbase.",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -61,9 +61,9 @@ export interface PortConfiguration {
61
61
  * 资源配置
62
62
  */
63
63
  export interface ResourceConfiguration {
64
- /** CPU 资源量,示例值: 500m */
65
- CPU?: number;
66
- /** 内存规格,示例值: 1Gi */
64
+ /** CPU 资源量,示例值:500m */
65
+ CPU?: string;
66
+ /** 内存资源量,示例值:1Gi */
67
67
  Memory?: string;
68
68
  }
69
69
  /**