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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// Configuration undocumented
type Configuration struct {
// Object is the base model of Configuration
Object
// AuthorizedApps undocumented
AuthorizedApps []string `json:"authorizedApps,omitempty"`
}
// ConfigurationManagerAction undocumented
type ConfigurationManagerAction struct {
// Object is the base model of ConfigurationManagerAction
Object
// Action The action type to trigger on Configuration Manager client
Action *ConfigurationManagerActionType `json:"action,omitempty"`
}
// ConfigurationManagerClientEnabledFeatures undocumented
type ConfigurationManagerClientEnabledFeatures struct {
// Object is the base model of ConfigurationManagerClientEnabledFeatures
Object
// Inventory Whether inventory is managed by Intune
Inventory *bool `json:"inventory,omitempty"`
// ModernApps Whether modern application is managed by Intune
ModernApps *bool `json:"modernApps,omitempty"`
// ResourceAccess Whether resource access is managed by Intune
ResourceAccess *bool `json:"resourceAccess,omitempty"`
// DeviceConfiguration Whether device configuration is managed by Intune
DeviceConfiguration *bool `json:"deviceConfiguration,omitempty"`
// CompliancePolicy Whether compliance policy is managed by Intune
CompliancePolicy *bool `json:"compliancePolicy,omitempty"`
// WindowsUpdateForBusiness Whether Windows Update for Business is managed by Intune
WindowsUpdateForBusiness *bool `json:"windowsUpdateForBusiness,omitempty"`
// EndpointProtection Whether Endpoint Protection is managed by Intune
EndpointProtection *bool `json:"endpointProtection,omitempty"`
// OfficeApps Whether Office application is managed by Intune
OfficeApps *bool `json:"officeApps,omitempty"`
}
// ConfigurationManagerClientHealthState undocumented
type ConfigurationManagerClientHealthState struct {
// Object is the base model of ConfigurationManagerClientHealthState
Object
// State Current configuration manager client state.
State *ConfigurationManagerClientState `json:"state,omitempty"`
// ErrorCode Error code for failed state.
ErrorCode *int `json:"errorCode,omitempty"`
// LastSyncDateTime Datetime fo last sync with configuration manager management point.
LastSyncDateTime *time.Time `json:"lastSyncDateTime,omitempty"`
}
// ConfigurationManagerClientInformation undocumented
type ConfigurationManagerClientInformation struct {
// Object is the base model of ConfigurationManagerClientInformation
Object
// ClientIdentifier Configuration Manager Client Id from SCCM
ClientIdentifier *string `json:"clientIdentifier,omitempty"`
}
|