@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
|
*/
|