diff options
Diffstat (limited to 'vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementModel.go')
-rw-r--r-- | vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementModel.go | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementModel.go new file mode 100644 index 00000000..3b4251eb --- /dev/null +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementModel.go @@ -0,0 +1,71 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +import "time" + +// DeviceAppManagement Singleton entity that acts as a container for all device and app management functionality. +type DeviceAppManagement struct { + // Entity is the base model of DeviceAppManagement + Entity + // MicrosoftStoreForBusinessLastSuccessfulSyncDateTime The last time the apps from the Microsoft Store for Business were synced successfully for the account. + MicrosoftStoreForBusinessLastSuccessfulSyncDateTime *time.Time `json:"microsoftStoreForBusinessLastSuccessfulSyncDateTime,omitempty"` + // IsEnabledForMicrosoftStoreForBusiness Whether the account is enabled for syncing applications from the Microsoft Store for Business. + IsEnabledForMicrosoftStoreForBusiness *bool `json:"isEnabledForMicrosoftStoreForBusiness,omitempty"` + // MicrosoftStoreForBusinessLanguage The locale information used to sync applications from the Microsoft Store for Business. Cultures that are specific to a country/region. The names of these cultures follow RFC 4646 (Windows Vista and later). The format is <languagecode2>-<country/regioncode2>, where <languagecode2> is a lowercase two-letter code derived from ISO 639-1 and <country/regioncode2> is an uppercase two-letter code derived from ISO 3166. For example, en-US for English (United States) is a specific culture. + MicrosoftStoreForBusinessLanguage *string `json:"microsoftStoreForBusinessLanguage,omitempty"` + // MicrosoftStoreForBusinessLastCompletedApplicationSyncTime The last time an application sync from the Microsoft Store for Business was completed. + MicrosoftStoreForBusinessLastCompletedApplicationSyncTime *time.Time `json:"microsoftStoreForBusinessLastCompletedApplicationSyncTime,omitempty"` + // MicrosoftStoreForBusinessPortalSelection The end user portal information is used to sync applications from the Microsoft Store for Business to Intune Company Portal. There are three options to pick from ['Company portal only', 'Company portal and private store', 'Private store only'] + MicrosoftStoreForBusinessPortalSelection *MicrosoftStoreForBusinessPortalSelectionOptions `json:"microsoftStoreForBusinessPortalSelection,omitempty"` + // ManagedEBooks undocumented + ManagedEBooks []ManagedEBook `json:"managedEBooks,omitempty"` + // MobileApps undocumented + MobileApps []MobileApp `json:"mobileApps,omitempty"` + // MobileAppCategories undocumented + MobileAppCategories []MobileAppCategory `json:"mobileAppCategories,omitempty"` + // EnterpriseCodeSigningCertificates undocumented + EnterpriseCodeSigningCertificates []EnterpriseCodeSigningCertificate `json:"enterpriseCodeSigningCertificates,omitempty"` + // IOSLobAppProvisioningConfigurations undocumented + IOSLobAppProvisioningConfigurations []IOSLobAppProvisioningConfiguration `json:"iosLobAppProvisioningConfigurations,omitempty"` + // SymantecCodeSigningCertificate undocumented + SymantecCodeSigningCertificate *SymantecCodeSigningCertificate `json:"symantecCodeSigningCertificate,omitempty"` + // MobileAppConfigurations undocumented + MobileAppConfigurations []ManagedDeviceMobileAppConfiguration `json:"mobileAppConfigurations,omitempty"` + // ManagedEBookCategories undocumented + ManagedEBookCategories []ManagedEBookCategory `json:"managedEBookCategories,omitempty"` + // PolicySets undocumented + PolicySets []PolicySet `json:"policySets,omitempty"` + // SideLoadingKeys undocumented + SideLoadingKeys []SideLoadingKey `json:"sideLoadingKeys,omitempty"` + // VppTokens undocumented + VppTokens []VppToken `json:"vppTokens,omitempty"` + // WindowsManagementApp undocumented + WindowsManagementApp *WindowsManagementApp `json:"windowsManagementApp,omitempty"` + // ManagedAppPolicies undocumented + ManagedAppPolicies []ManagedAppPolicy `json:"managedAppPolicies,omitempty"` + // IOSManagedAppProtections undocumented + IOSManagedAppProtections []IOSManagedAppProtection `json:"iosManagedAppProtections,omitempty"` + // AndroidManagedAppProtections undocumented + AndroidManagedAppProtections []AndroidManagedAppProtection `json:"androidManagedAppProtections,omitempty"` + // DefaultManagedAppProtections undocumented + DefaultManagedAppProtections []DefaultManagedAppProtection `json:"defaultManagedAppProtections,omitempty"` + // TargetedManagedAppConfigurations undocumented + TargetedManagedAppConfigurations []TargetedManagedAppConfiguration `json:"targetedManagedAppConfigurations,omitempty"` + // MdmWindowsInformationProtectionPolicies undocumented + MdmWindowsInformationProtectionPolicies []MdmWindowsInformationProtectionPolicy `json:"mdmWindowsInformationProtectionPolicies,omitempty"` + // WindowsInformationProtectionPolicies undocumented + WindowsInformationProtectionPolicies []WindowsInformationProtectionPolicy `json:"windowsInformationProtectionPolicies,omitempty"` + // ManagedAppRegistrations undocumented + ManagedAppRegistrations []ManagedAppRegistration `json:"managedAppRegistrations,omitempty"` + // ManagedAppStatuses undocumented + ManagedAppStatuses []ManagedAppStatus `json:"managedAppStatuses,omitempty"` + // WindowsInformationProtectionDeviceRegistrations undocumented + WindowsInformationProtectionDeviceRegistrations []WindowsInformationProtectionDeviceRegistration `json:"windowsInformationProtectionDeviceRegistrations,omitempty"` + // WindowsInformationProtectionWipeActions undocumented + WindowsInformationProtectionWipeActions []WindowsInformationProtectionWipeAction `json:"windowsInformationProtectionWipeActions,omitempty"` + // DeviceAppManagementTasks undocumented + DeviceAppManagementTasks []DeviceAppManagementTask `json:"deviceAppManagementTasks,omitempty"` + // WdacSupplementalPolicies undocumented + WdacSupplementalPolicies []WindowsDefenderApplicationControlSupplementalPolicy `json:"wdacSupplementalPolicies,omitempty"` +} |