github.com/morlay/goqcloud@v0.0.0-20181123023149-b00e0b0b9afc/clients/cvm/stop_instances.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/15743 9 10 type StopInstancesRequest struct { 11 // 是否在正常关闭失败后选择强制关闭实例。取值范围:TRUE:表示在正常关闭失败后进行强制关闭FALSE:表示在正常关闭失败后不进行强制关闭默认取值:FALSE。 12 ForceStop *bool `name:"ForceStop,omitempty"` 13 // 一个或多个待操作的实例ID。可通过DescribeInstances接口返回值中的InstanceId获取。每次请求批量实例的上限为100。 14 InstanceIds []*string `name:"InstanceIds"` 15 // 区域 16 Region string `name:"Region"` 17 // 实例的关闭模式。取值范围:SOFT_FIRST:表示在正常关闭失败后进行强制关闭HARD:直接强制关闭SOFT:仅软关机默认取值:SOFT。 18 StopType *string `name:"StopType,omitempty"` 19 } 20 21 func (req *StopInstancesRequest) Invoke(client github_com_morlay_goqcloud.Client) (*StopInstancesResponse, error) { 22 resp := &StopInstancesResponse{} 23 err := client.Request("cvm", "StopInstances", "2017-03-12").Do(req, resp) 24 return resp, err 25 } 26 27 type StopInstancesResponse struct { 28 github_com_morlay_goqcloud.TencentCloudBaseResponse 29 }