@ucloud-sdks/ucloud-sdk-js 0.2.43 → 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
|
*/
|
|
@@ -698,6 +698,10 @@ export interface CreateUHostInstanceRequest {
|
|
|
698
698
|
* 【若绑定EIP,此参数必填】弹性IP的线路。枚举值: 国际: International BGP: Bgp 各地域允许的线路参数如下: cn-sh1: Bgp cn-sh2: Bgp cn-gd: Bgp cn-bj1: Bgp cn-bj2: Bgp hk: International us-ca: International th-bkk: International kr-seoul:International us-ws:International ge-fra:International sg:International tw-kh:International.其他海外线路均为 International
|
|
699
699
|
*/
|
|
700
700
|
OperatorName?: string;
|
|
701
|
+
/**
|
|
702
|
+
* 指定EIP Id进行绑定
|
|
703
|
+
*/
|
|
704
|
+
ExistEIPId?: string;
|
|
701
705
|
/**
|
|
702
706
|
* 当前EIP代金券id。请通过DescribeCoupon接口查询,或登录用户中心查看。
|
|
703
707
|
*/
|