diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineDeviceStateModel.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineDeviceStateModel.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineDeviceStateModel.go b/vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineDeviceStateModel.go new file mode 100644 index 00000000..7fd1c614 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineDeviceStateModel.go @@ -0,0 +1,21 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +import "time" + +// SecurityBaselineDeviceState The security baseline compliance state summary of the security baseline for a device. +type SecurityBaselineDeviceState struct { + // Entity is the base model of SecurityBaselineDeviceState + Entity + // ManagedDeviceID Intune device id + ManagedDeviceID *string `json:"managedDeviceId,omitempty"` + // DeviceDisplayName Display name of the device + DeviceDisplayName *string `json:"deviceDisplayName,omitempty"` + // UserPrincipalName User Principal Name + UserPrincipalName *string `json:"userPrincipalName,omitempty"` + // State Security baseline compliance state + State *SecurityBaselineComplianceState `json:"state,omitempty"` + // LastReportedDateTime Last modified date time of the policy report + LastReportedDateTime *time.Time `json:"lastReportedDateTime,omitempty"` +} |