github.com/morlay/goqcloud@v0.0.0-20181123023149-b00e0b0b9afc/clients/as/delete_launch_configuration.go (about) 1 package as 2 3 import ( 4 github_com_morlay_goqcloud "github.com/morlay/goqcloud" 5 ) 6 7 // 删除启动配置 8 // https://cloud.tencent.com/document/api/377/20446 9 10 type DeleteLaunchConfigurationRequest struct { 11 // 需要删除的启动配置ID。 12 LaunchConfigurationId string `name:"LaunchConfigurationId"` 13 // 区域 14 Region string `name:"Region"` 15 } 16 17 func (req *DeleteLaunchConfigurationRequest) Invoke(client github_com_morlay_goqcloud.Client) (*DeleteLaunchConfigurationResponse, error) { 18 resp := &DeleteLaunchConfigurationResponse{} 19 err := client.Request("as", "DeleteLaunchConfiguration", "2018-04-19").Do(req, resp) 20 return resp, err 21 } 22 23 type DeleteLaunchConfigurationResponse struct { 24 github_com_morlay_goqcloud.TencentCloudBaseResponse 25 }