diff options
| author | Mistivia <i@mistivia.com> | 2025-11-02 15:27:18 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-11-02 15:27:18 +0800 |
| commit | e9c24f4af7ed56760f6db7941827d09f6db9020b (patch) | |
| tree | 62128c43b883ce5e3148113350978755779bb5de /teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelConfiguration.go | |
| parent | 58d5e7cfda4781d8a57ec52aefd02983835c301a (diff) | |
add matterbridge
Diffstat (limited to 'teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelConfiguration.go')
| -rw-r--r-- | teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelConfiguration.go | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelConfiguration.go b/teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelConfiguration.go new file mode 100644 index 0000000..33ea627 --- /dev/null +++ b/teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelConfiguration.go @@ -0,0 +1,63 @@ +// Code generated by msgraph.go/gen 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"` +} |
