blob: 7468b91a802169fb893661711b65708bee3616f6 (
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// FileVaultState undocumented
type FileVaultState int
const (
// FileVaultStateVSuccess undocumented
FileVaultStateVSuccess FileVaultState = 0
// FileVaultStateVDriveEncryptedByUser undocumented
FileVaultStateVDriveEncryptedByUser FileVaultState = 1
// FileVaultStateVUserDeferredEncryption undocumented
FileVaultStateVUserDeferredEncryption FileVaultState = 2
// FileVaultStateVEscrowNotEnabled undocumented
FileVaultStateVEscrowNotEnabled FileVaultState = 4
)
// FileVaultStatePSuccess returns a pointer to FileVaultStateVSuccess
func FileVaultStatePSuccess() *FileVaultState {
v := FileVaultStateVSuccess
return &v
}
// FileVaultStatePDriveEncryptedByUser returns a pointer to FileVaultStateVDriveEncryptedByUser
func FileVaultStatePDriveEncryptedByUser() *FileVaultState {
v := FileVaultStateVDriveEncryptedByUser
return &v
}
// FileVaultStatePUserDeferredEncryption returns a pointer to FileVaultStateVUserDeferredEncryption
func FileVaultStatePUserDeferredEncryption() *FileVaultState {
v := FileVaultStateVUserDeferredEncryption
return &v
}
// FileVaultStatePEscrowNotEnabled returns a pointer to FileVaultStateVEscrowNotEnabled
func FileVaultStatePEscrowNotEnabled() *FileVaultState {
v := FileVaultStateVEscrowNotEnabled
return &v
}
|