blob: eeb6799a276195f1ffdb1c1cfeceb9373cfde4da (
plain) (
blame)
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// ManagedAppDeviceThreatLevel undocumented
type ManagedAppDeviceThreatLevel int
const (
// ManagedAppDeviceThreatLevelVNotConfigured undocumented
ManagedAppDeviceThreatLevelVNotConfigured ManagedAppDeviceThreatLevel = 0
// ManagedAppDeviceThreatLevelVSecured undocumented
ManagedAppDeviceThreatLevelVSecured ManagedAppDeviceThreatLevel = 1
// ManagedAppDeviceThreatLevelVLow undocumented
ManagedAppDeviceThreatLevelVLow ManagedAppDeviceThreatLevel = 2
// ManagedAppDeviceThreatLevelVMedium undocumented
ManagedAppDeviceThreatLevelVMedium ManagedAppDeviceThreatLevel = 3
// ManagedAppDeviceThreatLevelVHigh undocumented
ManagedAppDeviceThreatLevelVHigh ManagedAppDeviceThreatLevel = 4
)
// ManagedAppDeviceThreatLevelPNotConfigured returns a pointer to ManagedAppDeviceThreatLevelVNotConfigured
func ManagedAppDeviceThreatLevelPNotConfigured() *ManagedAppDeviceThreatLevel {
v := ManagedAppDeviceThreatLevelVNotConfigured
return &v
}
// ManagedAppDeviceThreatLevelPSecured returns a pointer to ManagedAppDeviceThreatLevelVSecured
func ManagedAppDeviceThreatLevelPSecured() *ManagedAppDeviceThreatLevel {
v := ManagedAppDeviceThreatLevelVSecured
return &v
}
// ManagedAppDeviceThreatLevelPLow returns a pointer to ManagedAppDeviceThreatLevelVLow
func ManagedAppDeviceThreatLevelPLow() *ManagedAppDeviceThreatLevel {
v := ManagedAppDeviceThreatLevelVLow
return &v
}
// ManagedAppDeviceThreatLevelPMedium returns a pointer to ManagedAppDeviceThreatLevelVMedium
func ManagedAppDeviceThreatLevelPMedium() *ManagedAppDeviceThreatLevel {
v := ManagedAppDeviceThreatLevelVMedium
return &v
}
// ManagedAppDeviceThreatLevelPHigh returns a pointer to ManagedAppDeviceThreatLevelVHigh
func ManagedAppDeviceThreatLevelPHigh() *ManagedAppDeviceThreatLevel {
v := ManagedAppDeviceThreatLevelVHigh
return &v
}
|