forked from lug/matterbridge
		
	
		
			
				
	
	
		
			64 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // 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"`
 | |
| }
 | 
