diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/ModelConfiguration.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/ModelConfiguration.go | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelConfiguration.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelConfiguration.go new file mode 100644 index 00000000..39d59b05 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelConfiguration.go @@ -0,0 +1,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"` +} |