blob: aab7a2a2f0d1795f509a3b892cb85c1e2dd2895d (
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
// RegistryOperation undocumented
type RegistryOperation int
const (
// RegistryOperationVUnknown undocumented
RegistryOperationVUnknown RegistryOperation = 0
// RegistryOperationVCreate undocumented
RegistryOperationVCreate RegistryOperation = 1
// RegistryOperationVModify undocumented
RegistryOperationVModify RegistryOperation = 2
// RegistryOperationVDelete undocumented
RegistryOperationVDelete RegistryOperation = 3
// RegistryOperationVUnknownFutureValue undocumented
RegistryOperationVUnknownFutureValue RegistryOperation = 127
)
// RegistryOperationPUnknown returns a pointer to RegistryOperationVUnknown
func RegistryOperationPUnknown() *RegistryOperation {
v := RegistryOperationVUnknown
return &v
}
// RegistryOperationPCreate returns a pointer to RegistryOperationVCreate
func RegistryOperationPCreate() *RegistryOperation {
v := RegistryOperationVCreate
return &v
}
// RegistryOperationPModify returns a pointer to RegistryOperationVModify
func RegistryOperationPModify() *RegistryOperation {
v := RegistryOperationVModify
return &v
}
// RegistryOperationPDelete returns a pointer to RegistryOperationVDelete
func RegistryOperationPDelete() *RegistryOperation {
v := RegistryOperationVDelete
return &v
}
// RegistryOperationPUnknownFutureValue returns a pointer to RegistryOperationVUnknownFutureValue
func RegistryOperationPUnknownFutureValue() *RegistryOperation {
v := RegistryOperationVUnknownFutureValue
return &v
}
|