-
Notifications
You must be signed in to change notification settings - Fork 11
/
rest_service_group.go
54 lines (32 loc) · 1.35 KB
/
rest_service_group.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
*
*
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 1.0.0
*
* Generated by: https://github.com/swagger-api/swagger-codegen.git
*/
package logicmonitor
type RestServiceGroup struct {
AlertStatus string `json:"alertStatus,omitempty"`
NumOfServices int32 `json:"numOfServices,omitempty"`
FullPath string `json:"fullPath,omitempty"`
StopMonitoring bool `json:"stopMonitoring,omitempty"`
HasServicesDisabled bool `json:"hasServicesDisabled,omitempty"`
UserPermission string `json:"userPermission,omitempty"`
TestLocation string `json:"testLocation,omitempty"`
Description string `json:"description,omitempty"`
DisableAlerting bool `json:"disableAlerting,omitempty"`
GroupStatus string `json:"groupStatus,omitempty"`
SdtStatus string `json:"sdtStatus,omitempty"`
ParentId int32 `json:"parentId,omitempty"`
Name string `json:"name"`
NumOfDirectSubGroups int32 `json:"numOfDirectSubGroups,omitempty"`
SubGroups []GroupData `json:"subGroups,omitempty"`
Id int32 `json:"id,omitempty"`
AlertStatusPriority int32 `json:"alertStatusPriority,omitempty"`
AlertDisableStatus string `json:"alertDisableStatus,omitempty"`
ServiceProperties []NameAndValue `json:"serviceProperties,omitempty"`
NumOfDirectServices int32 `json:"numOfDirectServices,omitempty"`
}