github.com/morlay/goqcloud@v0.0.0-20181123023149-b00e0b0b9afc/clients/cvm/update_instance_vpc_config.go (about) 1 package cvm 2 3 import ( 4 github_com_morlay_goqcloud "github.com/morlay/goqcloud" 5 ) 6 7 // 修改实例vpc属性 8 // https://cloud.tencent.com/document/api/213/15750 9 10 type UpdateInstanceVpcConfigRequest struct { 11 // 是否对运行中的实例选择强制关机。默认为TRUE。 12 ForceStop *bool `name:"ForceStop,omitempty"` 13 // 待操作的实例ID。可通过DescribeInstances接口返回值中的InstanceId获取。 14 InstanceId string `name:"InstanceId"` 15 // 区域 16 Region string `name:"Region"` 17 // 私有网络相关信息配置。通过该参数指定私有网络的ID,子网ID,私有网络ip等信息。 18 VirtualPrivateCloud VirtualPrivateCloud `name:"VirtualPrivateCloud"` 19 } 20 21 func (req *UpdateInstanceVpcConfigRequest) Invoke(client github_com_morlay_goqcloud.Client) (*UpdateInstanceVpcConfigResponse, error) { 22 resp := &UpdateInstanceVpcConfigResponse{} 23 err := client.Request("cvm", "UpdateInstanceVpcConfig", "2017-03-12").Do(req, resp) 24 return resp, err 25 } 26 27 type UpdateInstanceVpcConfigResponse struct { 28 github_com_morlay_goqcloud.TencentCloudBaseResponse 29 }