blob: da581a9cd44c4aca860e63d0d924f0673d70a58c (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// QuarantineReason undocumented
type QuarantineReason int
const (
// QuarantineReasonVEncounteredBaseEscrowThreshold undocumented
QuarantineReasonVEncounteredBaseEscrowThreshold QuarantineReason = 0
// QuarantineReasonVEncounteredTotalEscrowThreshold undocumented
QuarantineReasonVEncounteredTotalEscrowThreshold QuarantineReason = 1
// QuarantineReasonVEncounteredEscrowProportionThreshold undocumented
QuarantineReasonVEncounteredEscrowProportionThreshold QuarantineReason = 2
// QuarantineReasonVEncounteredQuarantineException undocumented
QuarantineReasonVEncounteredQuarantineException QuarantineReason = 4
// QuarantineReasonVUnknown undocumented
QuarantineReasonVUnknown QuarantineReason = 8
// QuarantineReasonVQuarantinedOnDemand undocumented
QuarantineReasonVQuarantinedOnDemand QuarantineReason = 16
// QuarantineReasonVTooManyDeletes undocumented
QuarantineReasonVTooManyDeletes QuarantineReason = 32
)
// QuarantineReasonPEncounteredBaseEscrowThreshold returns a pointer to QuarantineReasonVEncounteredBaseEscrowThreshold
func QuarantineReasonPEncounteredBaseEscrowThreshold() *QuarantineReason {
v := QuarantineReasonVEncounteredBaseEscrowThreshold
return &v
}
// QuarantineReasonPEncounteredTotalEscrowThreshold returns a pointer to QuarantineReasonVEncounteredTotalEscrowThreshold
func QuarantineReasonPEncounteredTotalEscrowThreshold() *QuarantineReason {
v := QuarantineReasonVEncounteredTotalEscrowThreshold
return &v
}
// QuarantineReasonPEncounteredEscrowProportionThreshold returns a pointer to QuarantineReasonVEncounteredEscrowProportionThreshold
func QuarantineReasonPEncounteredEscrowProportionThreshold() *QuarantineReason {
v := QuarantineReasonVEncounteredEscrowProportionThreshold
return &v
}
// QuarantineReasonPEncounteredQuarantineException returns a pointer to QuarantineReasonVEncounteredQuarantineException
func QuarantineReasonPEncounteredQuarantineException() *QuarantineReason {
v := QuarantineReasonVEncounteredQuarantineException
return &v
}
// QuarantineReasonPUnknown returns a pointer to QuarantineReasonVUnknown
func QuarantineReasonPUnknown() *QuarantineReason {
v := QuarantineReasonVUnknown
return &v
}
// QuarantineReasonPQuarantinedOnDemand returns a pointer to QuarantineReasonVQuarantinedOnDemand
func QuarantineReasonPQuarantinedOnDemand() *QuarantineReason {
v := QuarantineReasonVQuarantinedOnDemand
return &v
}
// QuarantineReasonPTooManyDeletes returns a pointer to QuarantineReasonVTooManyDeletes
func QuarantineReasonPTooManyDeletes() *QuarantineReason {
v := QuarantineReasonVTooManyDeletes
return &v
}
|