github.com/morlay/goqcloud@v0.0.0-20181123023149-b00e0b0b9afc/clients/mariadb/reset_account_password.go (about)

     1  package mariadb
     2  
     3  import (
     4  	github_com_morlay_goqcloud "github.com/morlay/goqcloud"
     5  )
     6  
     7  // 重置账号密码
     8  // https://cloud.tencent.com/document/api/237/16168
     9  
    10  type ResetAccountPasswordRequest struct {
    11  	// 用户允许的访问 host,用户名+host唯一确定一个账号。
    12  	Host string `name:"Host"`
    13  	// 实例 ID,形如:tdsql-ow728lmc,可以通过 DescribeDBInstances 查询实例详情获得。
    14  	InstanceId string `name:"InstanceId"`
    15  	// 新密码,由字母、数字或常见符号组成,不能包含分号、单引号和双引号,长度为6~32位。
    16  	Password string `name:"Password"`
    17  	// 区域
    18  	Region string `name:"Region"`
    19  	// 登录用户名。
    20  	UserName string `name:"UserName"`
    21  }
    22  
    23  func (req *ResetAccountPasswordRequest) Invoke(client github_com_morlay_goqcloud.Client) (*ResetAccountPasswordResponse, error) {
    24  	resp := &ResetAccountPasswordResponse{}
    25  	err := client.Request("mariadb", "ResetAccountPassword", "2017-03-12").Do(req, resp)
    26  	return resp, err
    27  }
    28  
    29  type ResetAccountPasswordResponse struct {
    30  	github_com_morlay_goqcloud.TencentCloudBaseResponse
    31  }