Merge pull request #10891 from zhaoxiangchun/feature/zxc-ecloud-monitor

feat(suggestion,mcclient): add suggestsysalert-delete climc
This commit is contained in:
Zexi Li
2021-04-22 20:25:21 +08:00
committed by GitHub
2 changed files with 13 additions and 0 deletions
@@ -70,3 +70,15 @@ func (o *SuggestAlertCostOptions) Params() (jsonutils.JSONObject, error) {
func (o *SuggestAlertCostOptions) GetId() string {
return o.ID
}
type SuggestAlertBatchDeleteOptions struct {
ID []string `help:"ID of models to operate"`
}
func (o SuggestAlertBatchDeleteOptions) GetIds() []string {
return o.ID
}
func (o SuggestAlertBatchDeleteOptions) Params() (jsonutils.JSONObject, error) {
return nil, nil
}