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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// DeviceManagementAutopilotEvent Represents an Autopilot flow event.
type DeviceManagementAutopilotEvent struct {
// Entity is the base model of DeviceManagementAutopilotEvent
Entity
// EventDateTime Time when the event occurred .
EventDateTime *time.Time `json:"eventDateTime,omitempty"`
// DeviceRegisteredDateTime Device registration date.
DeviceRegisteredDateTime *time.Time `json:"deviceRegisteredDateTime,omitempty"`
// EnrollmentStartDateTime Device enrollment start date.
EnrollmentStartDateTime *time.Time `json:"enrollmentStartDateTime,omitempty"`
// EnrollmentType Enrollment type.
EnrollmentType *WindowsAutopilotEnrollmentType `json:"enrollmentType,omitempty"`
// DeviceSerialNumber Device serial number.
DeviceSerialNumber *string `json:"deviceSerialNumber,omitempty"`
// ManagedDeviceName Managed device name.
ManagedDeviceName *string `json:"managedDeviceName,omitempty"`
// UserPrincipalName User principal name used to enroll the device.
UserPrincipalName *string `json:"userPrincipalName,omitempty"`
// WindowsAutopilotDeploymentProfileDisplayName Autopilot profile name.
WindowsAutopilotDeploymentProfileDisplayName *string `json:"windowsAutopilotDeploymentProfileDisplayName,omitempty"`
// EnrollmentState Enrollment state like Enrolled, Failed.
EnrollmentState *EnrollmentState `json:"enrollmentState,omitempty"`
// Windows10EnrollmentCompletionPageConfigurationDisplayName Enrollment Status Page profile name
Windows10EnrollmentCompletionPageConfigurationDisplayName *string `json:"windows10EnrollmentCompletionPageConfigurationDisplayName,omitempty"`
// DeploymentState Deployment state like Success, Failure, InProgress, SuccessWithTimeout.
DeploymentState *WindowsAutopilotDeploymentState `json:"deploymentState,omitempty"`
// OsVersion Device operating system version.
OsVersion *string `json:"osVersion,omitempty"`
// DeploymentDuration Autopilot deployment duration including enrollment.
DeploymentDuration *time.Duration `json:"deploymentDuration,omitempty"`
// DeploymentTotalDuration Total deployment duration from enrollment to Desktop screen.
DeploymentTotalDuration *time.Duration `json:"deploymentTotalDuration,omitempty"`
// DevicePreparationDuration Time spent in device enrollment.
DevicePreparationDuration *time.Duration `json:"devicePreparationDuration,omitempty"`
// DeviceSetupDuration Time spent in device ESP.
DeviceSetupDuration *time.Duration `json:"deviceSetupDuration,omitempty"`
// AccountSetupDuration Time spent in user ESP.
AccountSetupDuration *time.Duration `json:"accountSetupDuration,omitempty"`
// DeploymentStartDateTime Deployment start time.
DeploymentStartDateTime *time.Time `json:"deploymentStartDateTime,omitempty"`
// DeploymentEndDateTime Deployment end time.
DeploymentEndDateTime *time.Time `json:"deploymentEndDateTime,omitempty"`
// TargetedAppCount Count of applications targeted.
TargetedAppCount *int `json:"targetedAppCount,omitempty"`
// TargetedPolicyCount Count of policies targeted.
TargetedPolicyCount *int `json:"targetedPolicyCount,omitempty"`
// EnrollmentFailureDetails Enrollment failure details.
EnrollmentFailureDetails *string `json:"enrollmentFailureDetails,omitempty"`
}
|