blob: 9084c3521831ff7438abc226e59127682a047dbe (
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// ManagedDeviceEncryptionState Encryption report per device
type ManagedDeviceEncryptionState struct {
// Entity is the base model of ManagedDeviceEncryptionState
Entity
// UserPrincipalName User name
UserPrincipalName *string `json:"userPrincipalName,omitempty"`
// DeviceType Platform of the device.
DeviceType *DeviceTypes `json:"deviceType,omitempty"`
// OsVersion Operating system version of the device
OsVersion *string `json:"osVersion,omitempty"`
// TpmSpecificationVersion Device TPM Version
TpmSpecificationVersion *string `json:"tpmSpecificationVersion,omitempty"`
// DeviceName Device name
DeviceName *string `json:"deviceName,omitempty"`
// EncryptionReadinessState Encryption readiness state
EncryptionReadinessState *EncryptionReadinessState `json:"encryptionReadinessState,omitempty"`
// EncryptionState Device encryption state
EncryptionState *EncryptionState `json:"encryptionState,omitempty"`
// EncryptionPolicySettingState Encryption policy setting state
EncryptionPolicySettingState *ComplianceStatus `json:"encryptionPolicySettingState,omitempty"`
// AdvancedBitLockerStates Advanced BitLocker State
AdvancedBitLockerStates *AdvancedBitLockerState `json:"advancedBitLockerStates,omitempty"`
// FileVaultStates FileVault State
FileVaultStates *FileVaultState `json:"fileVaultStates,omitempty"`
// PolicyDetails Policy Details
PolicyDetails []EncryptionReportPolicyDetails `json:"policyDetails,omitempty"`
}
|