File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- export VERSION =0.1.30
1+ export VERSION =0.1.31
22
33.PHONY : install
44install :
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ const DefaultBaseURL = "https://api.ucloud.cn/"
3636const DefaultProfile = "default"
3737
3838//Version 版本号
39- const Version = "0.1.30 "
39+ const Version = "0.1.31 "
4040
4141//ConfigIns 配置实例, 程序加载时生成
4242var ConfigIns = & AggConfig {
Original file line number Diff line number Diff line change @@ -470,7 +470,7 @@ func NewCmdEIPModifyBandwidth() *cobra.Command {
470470 Use : "modify-bw" ,
471471 Short : "Modify bandwith of EIP instances" ,
472472 Long : "Modify bandwith of EIP instances" ,
473- Example : "ucloud eip modify-bw --eip-id eip-xxx --bandwidth-mb 20" ,
473+ Example : "ucloud eip modify-bw --eip-id eip-xx1,eip-xx2 --bandwidth-mb 20" ,
474474 // Deprecated: "use 'ucloud eip modiy'",
475475 Run : func (cmd * cobra.Command , args []string ) {
476476 for _ , id := range ids {
Original file line number Diff line number Diff line change @@ -167,6 +167,9 @@ func NewCmdRedisCreate(out io.Writer) *cobra.Command {
167167 fmt .Fprintln (out , "length of name should be between 6 and 63" )
168168 return
169169 }
170+ if password != "" {
171+ req .Password = & password
172+ }
170173 if redisType == "master-replica" {
171174 resp , err := base .BizClient .CreateURedisGroup (req )
172175 if err != nil {
You can’t perform that action at this time.
0 commit comments