mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 14:30:26 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
66 lines
2.2 KiB
Go
66 lines
2.2 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// DefenderThreatAction undocumented
|
|
type DefenderThreatAction int
|
|
|
|
const (
|
|
// DefenderThreatActionVDeviceDefault undocumented
|
|
DefenderThreatActionVDeviceDefault DefenderThreatAction = 0
|
|
// DefenderThreatActionVClean undocumented
|
|
DefenderThreatActionVClean DefenderThreatAction = 1
|
|
// DefenderThreatActionVQuarantine undocumented
|
|
DefenderThreatActionVQuarantine DefenderThreatAction = 2
|
|
// DefenderThreatActionVRemove undocumented
|
|
DefenderThreatActionVRemove DefenderThreatAction = 3
|
|
// DefenderThreatActionVAllow undocumented
|
|
DefenderThreatActionVAllow DefenderThreatAction = 4
|
|
// DefenderThreatActionVUserDefined undocumented
|
|
DefenderThreatActionVUserDefined DefenderThreatAction = 5
|
|
// DefenderThreatActionVBlock undocumented
|
|
DefenderThreatActionVBlock DefenderThreatAction = 6
|
|
)
|
|
|
|
// DefenderThreatActionPDeviceDefault returns a pointer to DefenderThreatActionVDeviceDefault
|
|
func DefenderThreatActionPDeviceDefault() *DefenderThreatAction {
|
|
v := DefenderThreatActionVDeviceDefault
|
|
return &v
|
|
}
|
|
|
|
// DefenderThreatActionPClean returns a pointer to DefenderThreatActionVClean
|
|
func DefenderThreatActionPClean() *DefenderThreatAction {
|
|
v := DefenderThreatActionVClean
|
|
return &v
|
|
}
|
|
|
|
// DefenderThreatActionPQuarantine returns a pointer to DefenderThreatActionVQuarantine
|
|
func DefenderThreatActionPQuarantine() *DefenderThreatAction {
|
|
v := DefenderThreatActionVQuarantine
|
|
return &v
|
|
}
|
|
|
|
// DefenderThreatActionPRemove returns a pointer to DefenderThreatActionVRemove
|
|
func DefenderThreatActionPRemove() *DefenderThreatAction {
|
|
v := DefenderThreatActionVRemove
|
|
return &v
|
|
}
|
|
|
|
// DefenderThreatActionPAllow returns a pointer to DefenderThreatActionVAllow
|
|
func DefenderThreatActionPAllow() *DefenderThreatAction {
|
|
v := DefenderThreatActionVAllow
|
|
return &v
|
|
}
|
|
|
|
// DefenderThreatActionPUserDefined returns a pointer to DefenderThreatActionVUserDefined
|
|
func DefenderThreatActionPUserDefined() *DefenderThreatAction {
|
|
v := DefenderThreatActionVUserDefined
|
|
return &v
|
|
}
|
|
|
|
// DefenderThreatActionPBlock returns a pointer to DefenderThreatActionVBlock
|
|
func DefenderThreatActionPBlock() *DefenderThreatAction {
|
|
v := DefenderThreatActionVBlock
|
|
return &v
|
|
}
|