summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementAutopilotEventModel.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementAutopilotEventModel.go')
-rw-r--r--vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementAutopilotEventModel.go55
1 files changed, 55 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementAutopilotEventModel.go b/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementAutopilotEventModel.go
new file mode 100644
index 00000000..fb593c4d
--- /dev/null
+++ b/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementAutopilotEventModel.go
@@ -0,0 +1,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"`
+}