github.com/morlay/goqcloud@v0.0.0-20181123023149-b00e0b0b9afc/clients/cvm/disassociate_instances_key_pairs.go (about) 1 package cvm 2 3 import ( 4 github_com_morlay_goqcloud "github.com/morlay/goqcloud" 5 ) 6 7 // 解绑密钥对 8 // https://cloud.tencent.com/document/api/213/15697 9 10 type DisassociateInstancesKeyPairsRequest struct { 11 // 是否对运行中的实例选择强制关机。建议对运行中的实例先手动关机,然后再重置用户密码。取值范围:TRUE:表示在正常关机失败后进行强制关机。FALSE:表示在正常关机失败后不进行强制关机。默认取值:FALSE。 12 ForceStop *bool `name:"ForceStop,omitempty"` 13 // 一个或多个待操作的实例ID,每次请求批量实例的上限为100。可以通过以下方式获取可用的实例ID:通过登录控制台查询实例ID。通过调用接口 DescribeInstances ,取返回信息中的 InstanceId 获取实例ID。 14 InstanceIds []*string `name:"InstanceIds"` 15 // 密钥对ID列表,每次请求批量密钥对的上限为100。密钥对ID形如:skey-11112222。可以通过以下方式获取可用的密钥ID:通过登录控制台查询密钥ID。通过调用接口 DescribeKeyPairs ,取返回信息中的 KeyId 获取密钥对ID。 16 KeyIds []*string `name:"KeyIds"` 17 // 区域 18 Region string `name:"Region"` 19 } 20 21 func (req *DisassociateInstancesKeyPairsRequest) Invoke(client github_com_morlay_goqcloud.Client) (*DisassociateInstancesKeyPairsResponse, error) { 22 resp := &DisassociateInstancesKeyPairsResponse{} 23 err := client.Request("cvm", "DisassociateInstancesKeyPairs", "2017-03-12").Do(req, resp) 24 return resp, err 25 } 26 27 type DisassociateInstancesKeyPairsResponse struct { 28 github_com_morlay_goqcloud.TencentCloudBaseResponse 29 }