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

     1  package cdb
     2  
     3  import (
     4  	github_com_morlay_goqcloud "github.com/morlay/goqcloud"
     5  )
     6  
     7  // 创建云数据库的账户
     8  // https://cloud.tencent.com/document/api/236/17502
     9  
    10  type CreateAccountsRequest struct {
    11  	// 云数据库账号。
    12  	Accounts []*Account `name:"Accounts"`
    13  	// 备注信息。
    14  	Description *string `name:"Description,omitempty"`
    15  	// 实例ID,格式如:cdb-c1nl9rpv,与云数据库控制台页面中显示的实例ID相同。
    16  	InstanceId string `name:"InstanceId"`
    17  	// 新账户的密码。
    18  	Password string `name:"Password"`
    19  	// 区域
    20  	Region string `name:"Region"`
    21  }
    22  
    23  func (req *CreateAccountsRequest) Invoke(client github_com_morlay_goqcloud.Client) (*CreateAccountsResponse, error) {
    24  	resp := &CreateAccountsResponse{}
    25  	err := client.Request("cdb", "CreateAccounts", "2017-03-20").Do(req, resp)
    26  	return resp, err
    27  }
    28  
    29  type CreateAccountsResponse struct {
    30  	github_com_morlay_goqcloud.TencentCloudBaseResponse
    31  	// 异步任务的请求ID,可使用此ID查询异步任务的执行结果。
    32  	AsyncRequestId string `json:"AsyncRequestId"`
    33  }