@ucloud-sdks/ucloud-sdk-js 0.2.44 → 0.2.45

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.
@@ -195,6 +195,19 @@ export interface GetSandboxSiteResponse {
195
195
  * 连接密钥
196
196
  */
197
197
  ConnectKey: string;
198
+ /**
199
+ * 计算资源
200
+ */
201
+ Resource: {
202
+ /**
203
+ * CPU核心
204
+ */
205
+ CPU: number;
206
+ /**
207
+ * 内存占用MB
208
+ */
209
+ MemoryMB: number;
210
+ };
198
211
  /**
199
212
  * 站点环境变量。格式:["key=value"]
200
213
  */
@@ -279,6 +292,19 @@ export interface ListSandboxSitesResponse {
279
292
  * 连接密钥
280
293
  */
281
294
  ConnectKey: string;
295
+ /**
296
+ * 计算资源
297
+ */
298
+ Resource: {
299
+ /**
300
+ * CPU核心
301
+ */
302
+ CPU: number;
303
+ /**
304
+ * 内存占用MB
305
+ */
306
+ MemoryMB: number;
307
+ };
282
308
  /**
283
309
  * 站点环境变量。格式:["key=value"]
284
310
  */
@@ -2918,7 +2918,7 @@ export interface DescribeNetworkInterfaceResponse {
2918
2918
  * 网卡内网IP配额
2919
2919
  */
2920
2920
  PrivateIpQuota?: number;
2921
- }[];
2921
+ };
2922
2922
  }[];
2923
2923
  /**
2924
2924
  * 虚拟网卡总数
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ucloud-sdks/ucloud-sdk-js",
3
3
  "description": "ucloud-sdk-js",
4
- "version": "0.2.44",
4
+ "version": "0.2.45",
5
5
  "author": "oas@ucloud.cn",
6
6
  "license": "MIT",
7
7
  "private": false,