github.com/morlay/goqcloud@v0.0.0-20181123023149-b00e0b0b9afc/clients/dcdb/describe_account_privileges.go (about) 1 package dcdb 2 3 import ( 4 github_com_morlay_goqcloud "github.com/morlay/goqcloud" 5 ) 6 7 // 查询账号权限 8 // https://cloud.tencent.com/document/api/557/19994 9 10 type DescribeAccountPrivilegesRequest struct { 11 // 当 Type=table 时,ColName 为 * 表示查询表的权限,如果为具体字段名,表示查询对应字段的权限 12 ColName *string `name:"ColName,omitempty"` 13 // 数据库名。如果为 *,表示查询全局权限(即 *.*),此时忽略 Type 和 Object 参数 14 DbName string `name:"DbName"` 15 // 用户允许的访问 host,用户名+host唯一确定一个账号。 16 Host string `name:"Host"` 17 // 实例 ID,形如:dcdbt-ow7t8lmc。 18 InstanceId string `name:"InstanceId"` 19 // 具体的 Type 的名称,比如 Type 为 table 时就是具体的表名。DbName 和 Type 都为具体名称,则 Object 表示具体对象名,不能为 * 或者为空 20 Object *string `name:"Object,omitempty"` 21 // 区域 22 Region string `name:"Region"` 23 // 类型,可以填入 table 、 view 、 proc 、 func 和 *。当 DbName 为具体数据库名,Type为 * 时,表示查询该数据库权限(即db.*),此时忽略 Object 参数 24 Type *string `name:"Type,omitempty"` 25 // 登录用户名。 26 UserName string `name:"UserName"` 27 } 28 29 func (req *DescribeAccountPrivilegesRequest) Invoke(client github_com_morlay_goqcloud.Client) (*DescribeAccountPrivilegesResponse, error) { 30 resp := &DescribeAccountPrivilegesResponse{} 31 err := client.Request("dcdb", "DescribeAccountPrivileges", "2018-04-11").Do(req, resp) 32 return resp, err 33 } 34 35 type DescribeAccountPrivilegesResponse struct { 36 github_com_morlay_goqcloud.TencentCloudBaseResponse 37 // 数据库账号Host 38 Host string `json:"Host"` 39 // 实例Id 40 InstanceId string `json:"InstanceId"` 41 // 权限列表。 42 Privileges []*string `json:"Privileges"` 43 // 数据库账号用户名 44 UserName string `json:"UserName"` 45 }