github.com/morlay/goqcloud@v0.0.0-20181123023149-b00e0b0b9afc/clients/cdb/describe_account_privileges.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/17500
     9  
    10  type DescribeAccountPrivilegesRequest struct {
    11  	// 数据库的账号域名。
    12  	Host string `name:"Host"`
    13  	// 实例ID,格式如:cdb-c1nl9rpv,与云数据库控制台页面中显示的实例ID相同。
    14  	InstanceId string `name:"InstanceId"`
    15  	// 区域
    16  	Region string `name:"Region"`
    17  	// 数据库的账号名称。
    18  	User string `name:"User"`
    19  }
    20  
    21  func (req *DescribeAccountPrivilegesRequest) Invoke(client github_com_morlay_goqcloud.Client) (*DescribeAccountPrivilegesResponse, error) {
    22  	resp := &DescribeAccountPrivilegesResponse{}
    23  	err := client.Request("cdb", "DescribeAccountPrivileges", "2017-03-20").Do(req, resp)
    24  	return resp, err
    25  }
    26  
    27  type DescribeAccountPrivilegesResponse struct {
    28  	github_com_morlay_goqcloud.TencentCloudBaseResponse
    29  	// 数据库表中的列权限数组。
    30  	ColumnPrivileges []*ColumnPrivilege `json:"ColumnPrivileges"`
    31  	// 数据库权限数组。
    32  	DatabasePrivileges []*DatabasePrivilege `json:"DatabasePrivileges"`
    33  	// 全局权限数组。
    34  	GlobalPrivileges []*string `json:"GlobalPrivileges"`
    35  	// 数据库中的表权限数组。
    36  	TablePrivileges []*TablePrivilege `json:"TablePrivileges"`
    37  }