summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/ModelConfiguration.go
diff options
context:
space:
mode:
authorQais Patankar <qaisjp@gmail.com>2020-03-15 22:43:46 +0000
committerWim <wim@42.be>2020-03-22 00:02:48 +0100
commit76e5fe5a87d7e60919075f96eee599f3c6255a9f (patch)
treeaf3181ad6aadaea02069473a3718a827be888426 /vendor/github.com/yaegashi/msgraph.go/beta/ModelConfiguration.go
parent802c80f40c709ba4967de317e40a8d6abe57f6be (diff)
downloadmatterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.tar.gz
matterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.tar.bz2
matterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.zip
Update vendor yaegashi/msgraph.go to v0.1.2 (2)
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/ModelConfiguration.go')
-rw-r--r--vendor/github.com/yaegashi/msgraph.go/beta/ModelConfiguration.go63
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"`
+}