Skip to content

Commit 1087556

Browse files
committed
Add features in et and iam
1 parent 32a4c73 commit 1087556

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

Changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
发行说明:记录每次SDK更新的说明,最新版本的SDK包含以前所有版本的更新内容。
22
---------------------------------------------------------------------
3+
【版本:v0.9.243】
4+
涉及产品:ET
5+
专线通道信息返回BGP状态
6+
涉及产品:IAM
7+
修复用户登录信息反序列化失败bug
38
【版本:v0.9.242】
49
涉及产品:MCP
510
获取转码信息接口新增output字段

bce/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828

2929
// Constants and default values for the package bce
3030
const (
31-
SDK_VERSION = "0.9.242"
31+
SDK_VERSION = "0.9.243"
3232
URI_PREFIX = "/" // now support uri without prefix "v1" so just set root path
3333
DEFAULT_DOMAIN = "baidubce.com"
3434
DEFAULT_PROTOCOL = "http"

services/et/model.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ type EtChannelResult struct {
8888
Networks []string `json:"networks"`
8989
BGPAsn string `json:"bgpAsn"`
9090
BGPKey string `json:"bgpKey"`
91+
BGPStatus string `json:"bgpStatus"`
92+
Ipv6BGPStatus string `json:"ipv6BgpStatus"`
9193
CustomerAddress string `json:"customerAddress"`
9294
RouteType string `json:"routeType"`
9395
VlanId string `json:"vlanId"`

services/iam/api/model.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ type LoginProfileModel struct {
6767
EnabledLogin bool `json:"enabledLogin"`
6868
EnabledLoginMfa bool `json:"enabledLoginMfa"`
6969
LoginMfaType string `json:"loginMfaType,omitempty"`
70-
ThirdPartyType bool `json:"thirdPartyType,omitempty"`
71-
ThirdPartyAccount bool `json:"thirdPartyAccount,omitempty"`
70+
ThirdPartyType string `json:"thirdPartyType,omitempty"`
71+
ThirdPartyAccount string `json:"thirdPartyAccount,omitempty"`
7272
}
7373

7474
type UpdateUserLoginProfileArgs LoginProfileModel

0 commit comments

Comments
 (0)