Skip to content

Commit 03de93c

Browse files
authored
sdk: rolling update for 0.2.3 (#11)
1 parent 2273bda commit 03de93c

File tree

16 files changed

+2082
-110
lines changed

16 files changed

+2082
-110
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.2
1+
0.2.3

lib/services/uhost/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ export interface DescribeAvailableInstanceTypesResponse {
656656
* 返回Arm的CPU平台信息,例如:Ampere: ['Ampere/Altra']
657657
*/
658658
Ampere?: string[];
659-
}[];
659+
};
660660
/**
661661
* 磁盘信息。磁盘主要分类如下:云盘|cloudDisk、普通本地盘|normalLocalDisk和SSD本地盘|ssdLocalDisk。其中云盘主要包含普通云盘|CLOUD_NORMAL、SSD云盘|CLOUD_SSD和RSSD云盘|CLOUD_RSSD。普通本地盘只包含普通本地盘|LOCAL_NORMAL一种。SSD本地盘只包含SSD本地盘|LOCAL_SSD一种。MinimalSize为磁盘最小值,如果没有该字段,最小值取基础镜像Size值即可(linux为20G,windows为40G)。MaximalSize为磁盘最大值。InstantResize表示系统盘是否允许扩容,如果是本地盘,则不允许扩容,InstantResize为false。Features为磁盘可支持的服务:数据方舟|DATAARK,快照服务|SNAPSHOT,加密盘|Encrypted。
662662
*/

lib/services/ulb/index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ export interface CreatePolicyResponse {
259259
*/
260260
export interface CreateSSLRequest {
261261
/**
262-
* SSL证书的名字,默认值为空
262+
* SSL证书的名字,默认值不为空
263263
*/
264264
SSLName: string;
265265
/**
@@ -1483,7 +1483,7 @@ export interface UpdateBackendAttributeRequest {
14831483
*/
14841484
Port?: number;
14851485
/**
1486-
* 所添加的后端RS权重(在加权轮询算法下有效),取值范围[0-100],默认为1
1486+
* 所添加的后端RS权重(在加权轮询算法下有效),取值范围[1-100],默认为1
14871487
*/
14881488
Weight?: number;
14891489
/**

lib/services/unet/index.d.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ export interface AllocateEIPResponse {
274274
*/
275275
EIPAddr?: {
276276
/**
277-
* 运营商信息如: 国际: International, BGP: BGP
277+
* 运营商信息如: 电信: Telecom, 联通: Unicom, 国际: International, Duplet: 双线IP(电信+联通), BGP: Bgp
278278
*/
279279
OperatorName?: string;
280280
/**
@@ -356,6 +356,10 @@ export interface BindEIPRequest {
356356
* 弹性IP请求绑定的资源ID
357357
*/
358358
ResourceId: string;
359+
/**
360+
* EIP与内网IP进行绑定时需要传入UNI下未绑定过EIP的内网IP
361+
*/
362+
PrivateIP?: string;
359363
}
360364
/**
361365
* BindEIP - 将尚未使用的弹性IP绑定到指定的资源
@@ -668,7 +672,7 @@ export interface DescribeEIPResponse {
668672
*/
669673
EIPAddr?: {
670674
/**
671-
* 运营商信息如: 国际: International, BGP: BGP
675+
* 运营商信息如: 电信: Telecom, 联通: Unicom, 国际: International, Duplet: 双线IP(电信+联通), BGP: Bgp
672676
*/
673677
OperatorName?: string;
674678
/**

0 commit comments

Comments
 (0)