| 12345678910111213141516171819202122232425262728293031323334353637 |
- package cms
- //Licensed under the Apache License, Version 2.0 (the "License");
- //you may not use this file except in compliance with the License.
- //You may obtain a copy of the License at
- //
- //http://www.apache.org/licenses/LICENSE-2.0
- //
- //Unless required by applicable law or agreed to in writing, software
- //distributed under the License is distributed on an "AS IS" BASIS,
- //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- //See the License for the specific language governing permissions and
- //limitations under the License.
- //
- // Code generated by Alibaba Cloud SDK Code Generator.
- // Changes may cause incorrect behavior and will be lost if the code is regenerated.
- // GroupAlert is a nested struct in cms response
- type GroupAlert struct {
- GroupId string `json:"GroupId" xml:"GroupId"`
- AlertName string `json:"AlertName" xml:"AlertName"`
- DisplayName string `json:"DisplayName" xml:"DisplayName"`
- Subject string `json:"Subject" xml:"Subject"`
- Webhook string `json:"Webhook" xml:"Webhook"`
- Category string `json:"Category" xml:"Category"`
- Namespace string `json:"Namespace" xml:"Namespace"`
- MetricName string `json:"MetricName" xml:"MetricName"`
- Period int `json:"Period" xml:"Period"`
- State string `json:"State" xml:"State"`
- Description string `json:"Description" xml:"Description"`
- Enable bool `json:"Enable" xml:"Enable"`
- SilenceTime int `json:"SilenceTime" xml:"SilenceTime"`
- EnableEndTime string `json:"EnableEndTime" xml:"EnableEndTime"`
- EnableStartTime string `json:"EnableStartTime" xml:"EnableStartTime"`
- Selector string `json:"Selector" xml:"Selector"`
- Escalations Escalations `json:"Escalations" xml:"Escalations"`
- }
|