blob: 6fb9687a61347046697819979d05c9ce734f5b90 (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// FileHashType undocumented
type FileHashType string
const (
// FileHashTypeVUnknown undocumented
FileHashTypeVUnknown FileHashType = "unknown"
// FileHashTypeVSha1 undocumented
FileHashTypeVSha1 FileHashType = "sha1"
// FileHashTypeVSha256 undocumented
FileHashTypeVSha256 FileHashType = "sha256"
// FileHashTypeVMd5 undocumented
FileHashTypeVMd5 FileHashType = "md5"
// FileHashTypeVAuthenticodeHash256 undocumented
FileHashTypeVAuthenticodeHash256 FileHashType = "authenticodeHash256"
// FileHashTypeVLsHash undocumented
FileHashTypeVLsHash FileHashType = "lsHash"
// FileHashTypeVCtph undocumented
FileHashTypeVCtph FileHashType = "ctph"
// FileHashTypeVUnknownFutureValue undocumented
FileHashTypeVUnknownFutureValue FileHashType = "unknownFutureValue"
)
var (
// FileHashTypePUnknown is a pointer to FileHashTypeVUnknown
FileHashTypePUnknown = &_FileHashTypePUnknown
// FileHashTypePSha1 is a pointer to FileHashTypeVSha1
FileHashTypePSha1 = &_FileHashTypePSha1
// FileHashTypePSha256 is a pointer to FileHashTypeVSha256
FileHashTypePSha256 = &_FileHashTypePSha256
// FileHashTypePMd5 is a pointer to FileHashTypeVMd5
FileHashTypePMd5 = &_FileHashTypePMd5
// FileHashTypePAuthenticodeHash256 is a pointer to FileHashTypeVAuthenticodeHash256
FileHashTypePAuthenticodeHash256 = &_FileHashTypePAuthenticodeHash256
// FileHashTypePLsHash is a pointer to FileHashTypeVLsHash
FileHashTypePLsHash = &_FileHashTypePLsHash
// FileHashTypePCtph is a pointer to FileHashTypeVCtph
FileHashTypePCtph = &_FileHashTypePCtph
// FileHashTypePUnknownFutureValue is a pointer to FileHashTypeVUnknownFutureValue
FileHashTypePUnknownFutureValue = &_FileHashTypePUnknownFutureValue
)
var (
_FileHashTypePUnknown = FileHashTypeVUnknown
_FileHashTypePSha1 = FileHashTypeVSha1
_FileHashTypePSha256 = FileHashTypeVSha256
_FileHashTypePMd5 = FileHashTypeVMd5
_FileHashTypePAuthenticodeHash256 = FileHashTypeVAuthenticodeHash256
_FileHashTypePLsHash = FileHashTypeVLsHash
_FileHashTypePCtph = FileHashTypeVCtph
_FileHashTypePUnknownFutureValue = FileHashTypeVUnknownFutureValue
)
// FileVaultState undocumented
type FileVaultState string
const (
// FileVaultStateVSuccess undocumented
FileVaultStateVSuccess FileVaultState = "success"
// FileVaultStateVDriveEncryptedByUser undocumented
FileVaultStateVDriveEncryptedByUser FileVaultState = "driveEncryptedByUser"
// FileVaultStateVUserDeferredEncryption undocumented
FileVaultStateVUserDeferredEncryption FileVaultState = "userDeferredEncryption"
// FileVaultStateVEscrowNotEnabled undocumented
FileVaultStateVEscrowNotEnabled FileVaultState = "escrowNotEnabled"
)
var (
// FileVaultStatePSuccess is a pointer to FileVaultStateVSuccess
FileVaultStatePSuccess = &_FileVaultStatePSuccess
// FileVaultStatePDriveEncryptedByUser is a pointer to FileVaultStateVDriveEncryptedByUser
FileVaultStatePDriveEncryptedByUser = &_FileVaultStatePDriveEncryptedByUser
// FileVaultStatePUserDeferredEncryption is a pointer to FileVaultStateVUserDeferredEncryption
FileVaultStatePUserDeferredEncryption = &_FileVaultStatePUserDeferredEncryption
// FileVaultStatePEscrowNotEnabled is a pointer to FileVaultStateVEscrowNotEnabled
FileVaultStatePEscrowNotEnabled = &_FileVaultStatePEscrowNotEnabled
)
var (
_FileVaultStatePSuccess = FileVaultStateVSuccess
_FileVaultStatePDriveEncryptedByUser = FileVaultStateVDriveEncryptedByUser
_FileVaultStatePUserDeferredEncryption = FileVaultStateVUserDeferredEncryption
_FileVaultStatePEscrowNotEnabled = FileVaultStateVEscrowNotEnabled
)
|