mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 16:50:27 +00:00
74 lines
2.5 KiB
Go
74 lines
2.5 KiB
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// RiskEventStatus undocumented
|
||
|
type RiskEventStatus int
|
||
|
|
||
|
const (
|
||
|
// RiskEventStatusVActive undocumented
|
||
|
RiskEventStatusVActive RiskEventStatus = 0
|
||
|
// RiskEventStatusVRemediated undocumented
|
||
|
RiskEventStatusVRemediated RiskEventStatus = 1
|
||
|
// RiskEventStatusVDismissedAsFixed undocumented
|
||
|
RiskEventStatusVDismissedAsFixed RiskEventStatus = 2
|
||
|
// RiskEventStatusVDismissedAsFalsePositive undocumented
|
||
|
RiskEventStatusVDismissedAsFalsePositive RiskEventStatus = 3
|
||
|
// RiskEventStatusVDismissedAsIgnore undocumented
|
||
|
RiskEventStatusVDismissedAsIgnore RiskEventStatus = 4
|
||
|
// RiskEventStatusVLoginBlocked undocumented
|
||
|
RiskEventStatusVLoginBlocked RiskEventStatus = 5
|
||
|
// RiskEventStatusVClosedMFAAuto undocumented
|
||
|
RiskEventStatusVClosedMFAAuto RiskEventStatus = 6
|
||
|
// RiskEventStatusVClosedMultipleReasons undocumented
|
||
|
RiskEventStatusVClosedMultipleReasons RiskEventStatus = 7
|
||
|
)
|
||
|
|
||
|
// RiskEventStatusPActive returns a pointer to RiskEventStatusVActive
|
||
|
func RiskEventStatusPActive() *RiskEventStatus {
|
||
|
v := RiskEventStatusVActive
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// RiskEventStatusPRemediated returns a pointer to RiskEventStatusVRemediated
|
||
|
func RiskEventStatusPRemediated() *RiskEventStatus {
|
||
|
v := RiskEventStatusVRemediated
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// RiskEventStatusPDismissedAsFixed returns a pointer to RiskEventStatusVDismissedAsFixed
|
||
|
func RiskEventStatusPDismissedAsFixed() *RiskEventStatus {
|
||
|
v := RiskEventStatusVDismissedAsFixed
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// RiskEventStatusPDismissedAsFalsePositive returns a pointer to RiskEventStatusVDismissedAsFalsePositive
|
||
|
func RiskEventStatusPDismissedAsFalsePositive() *RiskEventStatus {
|
||
|
v := RiskEventStatusVDismissedAsFalsePositive
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// RiskEventStatusPDismissedAsIgnore returns a pointer to RiskEventStatusVDismissedAsIgnore
|
||
|
func RiskEventStatusPDismissedAsIgnore() *RiskEventStatus {
|
||
|
v := RiskEventStatusVDismissedAsIgnore
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// RiskEventStatusPLoginBlocked returns a pointer to RiskEventStatusVLoginBlocked
|
||
|
func RiskEventStatusPLoginBlocked() *RiskEventStatus {
|
||
|
v := RiskEventStatusVLoginBlocked
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// RiskEventStatusPClosedMFAAuto returns a pointer to RiskEventStatusVClosedMFAAuto
|
||
|
func RiskEventStatusPClosedMFAAuto() *RiskEventStatus {
|
||
|
v := RiskEventStatusVClosedMFAAuto
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// RiskEventStatusPClosedMultipleReasons returns a pointer to RiskEventStatusVClosedMultipleReasons
|
||
|
func RiskEventStatusPClosedMultipleReasons() *RiskEventStatus {
|
||
|
v := RiskEventStatusVClosedMultipleReasons
|
||
|
return &v
|
||
|
}
|