File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/vendor/microsoft/microsoft-graph/src/Model/DeviceManagement.php
Back
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * DeviceManagement File * PHP version 7 * * @category Library * @package Microsoft.Graph * @copyright © Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @version GIT: 1.4.0 * @link https://graph.microsoft.io/ */ namespace Microsoft\Graph\Model; /** * DeviceManagement class * * @category Model * @package Microsoft.Graph * @copyright © Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @version Release: 1.4.0 * @link https://graph.microsoft.io/ */ class DeviceManagement extends Entity { /** * Gets the settings * Account level settings. * * @return DeviceManagementSettings The settings */ public function getSettings() { if (array_key_exists("settings", $this->_propDict)) { if (is_a($this->_propDict["settings"], "Microsoft\Graph\Model\DeviceManagementSettings")) { return $this->_propDict["settings"]; } else { $this->_propDict["settings"] = new DeviceManagementSettings($this->_propDict["settings"]); return $this->_propDict["settings"]; } } return null; } /** * Sets the settings * Account level settings. * * @param DeviceManagementSettings $val The settings * * @return DeviceManagement */ public function setSettings($val) { $this->_propDict["settings"] = $val; return $this; } /** * Gets the intuneBrand * intuneBrand contains data which is used in customizing the appearance of the Company Portal applications as well as the end user web portal. * * @return IntuneBrand The intuneBrand */ public function getIntuneBrand() { if (array_key_exists("intuneBrand", $this->_propDict)) { if (is_a($this->_propDict["intuneBrand"], "Microsoft\Graph\Model\IntuneBrand")) { return $this->_propDict["intuneBrand"]; } else { $this->_propDict["intuneBrand"] = new IntuneBrand($this->_propDict["intuneBrand"]); return $this->_propDict["intuneBrand"]; } } return null; } /** * Sets the intuneBrand * intuneBrand contains data which is used in customizing the appearance of the Company Portal applications as well as the end user web portal. * * @param IntuneBrand $val The intuneBrand * * @return DeviceManagement */ public function setIntuneBrand($val) { $this->_propDict["intuneBrand"] = $val; return $this; } /** * Gets the subscriptionState * Tenant mobile device management subscription state. The possible values are: pending, active, warning, disabled, deleted, blocked, lockedOut. * * @return DeviceManagementSubscriptionState The subscriptionState */ public function getSubscriptionState() { if (array_key_exists("subscriptionState", $this->_propDict)) { if (is_a($this->_propDict["subscriptionState"], "Microsoft\Graph\Model\DeviceManagementSubscriptionState")) { return $this->_propDict["subscriptionState"]; } else { $this->_propDict["subscriptionState"] = new DeviceManagementSubscriptionState($this->_propDict["subscriptionState"]); return $this->_propDict["subscriptionState"]; } } return null; } /** * Sets the subscriptionState * Tenant mobile device management subscription state. The possible values are: pending, active, warning, disabled, deleted, blocked, lockedOut. * * @param DeviceManagementSubscriptionState $val The subscriptionState * * @return DeviceManagement */ public function setSubscriptionState($val) { $this->_propDict["subscriptionState"] = $val; return $this; } /** * Gets the termsAndConditions * The terms and conditions associated with device management of the company. * * @return array The termsAndConditions */ public function getTermsAndConditions() { if (array_key_exists("termsAndConditions", $this->_propDict)) { return $this->_propDict["termsAndConditions"]; } else { return null; } } /** * Sets the termsAndConditions * The terms and conditions associated with device management of the company. * * @param TermsAndConditions $val The termsAndConditions * * @return DeviceManagement */ public function setTermsAndConditions($val) { $this->_propDict["termsAndConditions"] = $val; return $this; } /** * Gets the deviceConfigurations * The device configurations. * * @return array The deviceConfigurations */ public function getDeviceConfigurations() { if (array_key_exists("deviceConfigurations", $this->_propDict)) { return $this->_propDict["deviceConfigurations"]; } else { return null; } } /** * Sets the deviceConfigurations * The device configurations. * * @param DeviceConfiguration $val The deviceConfigurations * * @return DeviceManagement */ public function setDeviceConfigurations($val) { $this->_propDict["deviceConfigurations"] = $val; return $this; } /** * Gets the deviceCompliancePolicies * The device compliance policies. * * @return array The deviceCompliancePolicies */ public function getDeviceCompliancePolicies() { if (array_key_exists("deviceCompliancePolicies", $this->_propDict)) { return $this->_propDict["deviceCompliancePolicies"]; } else { return null; } } /** * Sets the deviceCompliancePolicies * The device compliance policies. * * @param DeviceCompliancePolicy $val The deviceCompliancePolicies * * @return DeviceManagement */ public function setDeviceCompliancePolicies($val) { $this->_propDict["deviceCompliancePolicies"] = $val; return $this; } /** * Gets the softwareUpdateStatusSummary * The software update status summary. * * @return SoftwareUpdateStatusSummary The softwareUpdateStatusSummary */ public function getSoftwareUpdateStatusSummary() { if (array_key_exists("softwareUpdateStatusSummary", $this->_propDict)) { if (is_a($this->_propDict["softwareUpdateStatusSummary"], "Microsoft\Graph\Model\SoftwareUpdateStatusSummary")) { return $this->_propDict["softwareUpdateStatusSummary"]; } else { $this->_propDict["softwareUpdateStatusSummary"] = new SoftwareUpdateStatusSummary($this->_propDict["softwareUpdateStatusSummary"]); return $this->_propDict["softwareUpdateStatusSummary"]; } } return null; } /** * Sets the softwareUpdateStatusSummary * The software update status summary. * * @param SoftwareUpdateStatusSummary $val The softwareUpdateStatusSummary * * @return DeviceManagement */ public function setSoftwareUpdateStatusSummary($val) { $this->_propDict["softwareUpdateStatusSummary"] = $val; return $this; } /** * Gets the deviceCompliancePolicyDeviceStateSummary * The device compliance state summary for this account. * * @return DeviceCompliancePolicyDeviceStateSummary The deviceCompliancePolicyDeviceStateSummary */ public function getDeviceCompliancePolicyDeviceStateSummary() { if (array_key_exists("deviceCompliancePolicyDeviceStateSummary", $this->_propDict)) { if (is_a($this->_propDict["deviceCompliancePolicyDeviceStateSummary"], "Microsoft\Graph\Model\DeviceCompliancePolicyDeviceStateSummary")) { return $this->_propDict["deviceCompliancePolicyDeviceStateSummary"]; } else { $this->_propDict["deviceCompliancePolicyDeviceStateSummary"] = new DeviceCompliancePolicyDeviceStateSummary($this->_propDict["deviceCompliancePolicyDeviceStateSummary"]); return $this->_propDict["deviceCompliancePolicyDeviceStateSummary"]; } } return null; } /** * Sets the deviceCompliancePolicyDeviceStateSummary * The device compliance state summary for this account. * * @param DeviceCompliancePolicyDeviceStateSummary $val The deviceCompliancePolicyDeviceStateSummary * * @return DeviceManagement */ public function setDeviceCompliancePolicyDeviceStateSummary($val) { $this->_propDict["deviceCompliancePolicyDeviceStateSummary"] = $val; return $this; } /** * Gets the deviceCompliancePolicySettingStateSummaries * The summary states of compliance policy settings for this account. * * @return array The deviceCompliancePolicySettingStateSummaries */ public function getDeviceCompliancePolicySettingStateSummaries() { if (array_key_exists("deviceCompliancePolicySettingStateSummaries", $this->_propDict)) { return $this->_propDict["deviceCompliancePolicySettingStateSummaries"]; } else { return null; } } /** * Sets the deviceCompliancePolicySettingStateSummaries * The summary states of compliance policy settings for this account. * * @param DeviceCompliancePolicySettingStateSummary $val The deviceCompliancePolicySettingStateSummaries * * @return DeviceManagement */ public function setDeviceCompliancePolicySettingStateSummaries($val) { $this->_propDict["deviceCompliancePolicySettingStateSummaries"] = $val; return $this; } /** * Gets the deviceConfigurationDeviceStateSummaries * The device configuration device state summary for this account. * * @return DeviceConfigurationDeviceStateSummary The deviceConfigurationDeviceStateSummaries */ public function getDeviceConfigurationDeviceStateSummaries() { if (array_key_exists("deviceConfigurationDeviceStateSummaries", $this->_propDict)) { if (is_a($this->_propDict["deviceConfigurationDeviceStateSummaries"], "Microsoft\Graph\Model\DeviceConfigurationDeviceStateSummary")) { return $this->_propDict["deviceConfigurationDeviceStateSummaries"]; } else { $this->_propDict["deviceConfigurationDeviceStateSummaries"] = new DeviceConfigurationDeviceStateSummary($this->_propDict["deviceConfigurationDeviceStateSummaries"]); return $this->_propDict["deviceConfigurationDeviceStateSummaries"]; } } return null; } /** * Sets the deviceConfigurationDeviceStateSummaries * The device configuration device state summary for this account. * * @param DeviceConfigurationDeviceStateSummary $val The deviceConfigurationDeviceStateSummaries * * @return DeviceManagement */ public function setDeviceConfigurationDeviceStateSummaries($val) { $this->_propDict["deviceConfigurationDeviceStateSummaries"] = $val; return $this; } /** * Gets the iosUpdateStatuses * The IOS software update installation statuses for this account. * * @return array The iosUpdateStatuses */ public function getIosUpdateStatuses() { if (array_key_exists("iosUpdateStatuses", $this->_propDict)) { return $this->_propDict["iosUpdateStatuses"]; } else { return null; } } /** * Sets the iosUpdateStatuses * The IOS software update installation statuses for this account. * * @param IosUpdateDeviceStatus $val The iosUpdateStatuses * * @return DeviceManagement */ public function setIosUpdateStatuses($val) { $this->_propDict["iosUpdateStatuses"] = $val; return $this; } /** * Gets the deviceCategories * The list of device categories with the tenant. * * @return array The deviceCategories */ public function getDeviceCategories() { if (array_key_exists("deviceCategories", $this->_propDict)) { return $this->_propDict["deviceCategories"]; } else { return null; } } /** * Sets the deviceCategories * The list of device categories with the tenant. * * @param DeviceCategory $val The deviceCategories * * @return DeviceManagement */ public function setDeviceCategories($val) { $this->_propDict["deviceCategories"] = $val; return $this; } /** * Gets the exchangeConnectors * The list of Exchange Connectors configured by the tenant. * * @return array The exchangeConnectors */ public function getExchangeConnectors() { if (array_key_exists("exchangeConnectors", $this->_propDict)) { return $this->_propDict["exchangeConnectors"]; } else { return null; } } /** * Sets the exchangeConnectors * The list of Exchange Connectors configured by the tenant. * * @param DeviceManagementExchangeConnector $val The exchangeConnectors * * @return DeviceManagement */ public function setExchangeConnectors($val) { $this->_propDict["exchangeConnectors"] = $val; return $this; } /** * Gets the deviceEnrollmentConfigurations * The list of device enrollment configurations * * @return array The deviceEnrollmentConfigurations */ public function getDeviceEnrollmentConfigurations() { if (array_key_exists("deviceEnrollmentConfigurations", $this->_propDict)) { return $this->_propDict["deviceEnrollmentConfigurations"]; } else { return null; } } /** * Sets the deviceEnrollmentConfigurations * The list of device enrollment configurations * * @param DeviceEnrollmentConfiguration $val The deviceEnrollmentConfigurations * * @return DeviceManagement */ public function setDeviceEnrollmentConfigurations($val) { $this->_propDict["deviceEnrollmentConfigurations"] = $val; return $this; } /** * Gets the conditionalAccessSettings * The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access * * @return OnPremisesConditionalAccessSettings The conditionalAccessSettings */ public function getConditionalAccessSettings() { if (array_key_exists("conditionalAccessSettings", $this->_propDict)) { if (is_a($this->_propDict["conditionalAccessSettings"], "Microsoft\Graph\Model\OnPremisesConditionalAccessSettings")) { return $this->_propDict["conditionalAccessSettings"]; } else { $this->_propDict["conditionalAccessSettings"] = new OnPremisesConditionalAccessSettings($this->_propDict["conditionalAccessSettings"]); return $this->_propDict["conditionalAccessSettings"]; } } return null; } /** * Sets the conditionalAccessSettings * The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access * * @param OnPremisesConditionalAccessSettings $val The conditionalAccessSettings * * @return DeviceManagement */ public function setConditionalAccessSettings($val) { $this->_propDict["conditionalAccessSettings"] = $val; return $this; } /** * Gets the mobileThreatDefenseConnectors * The list of Mobile threat Defense connectors configured by the tenant. * * @return array The mobileThreatDefenseConnectors */ public function getMobileThreatDefenseConnectors() { if (array_key_exists("mobileThreatDefenseConnectors", $this->_propDict)) { return $this->_propDict["mobileThreatDefenseConnectors"]; } else { return null; } } /** * Sets the mobileThreatDefenseConnectors * The list of Mobile threat Defense connectors configured by the tenant. * * @param MobileThreatDefenseConnector $val The mobileThreatDefenseConnectors * * @return DeviceManagement */ public function setMobileThreatDefenseConnectors($val) { $this->_propDict["mobileThreatDefenseConnectors"] = $val; return $this; } /** * Gets the deviceManagementPartners * The list of Device Management Partners configured by the tenant. * * @return array The deviceManagementPartners */ public function getDeviceManagementPartners() { if (array_key_exists("deviceManagementPartners", $this->_propDict)) { return $this->_propDict["deviceManagementPartners"]; } else { return null; } } /** * Sets the deviceManagementPartners * The list of Device Management Partners configured by the tenant. * * @param DeviceManagementPartner $val The deviceManagementPartners * * @return DeviceManagement */ public function setDeviceManagementPartners($val) { $this->_propDict["deviceManagementPartners"] = $val; return $this; } /** * Gets the applePushNotificationCertificate * Apple push notification certificate. * * @return ApplePushNotificationCertificate The applePushNotificationCertificate */ public function getApplePushNotificationCertificate() { if (array_key_exists("applePushNotificationCertificate", $this->_propDict)) { if (is_a($this->_propDict["applePushNotificationCertificate"], "Microsoft\Graph\Model\ApplePushNotificationCertificate")) { return $this->_propDict["applePushNotificationCertificate"]; } else { $this->_propDict["applePushNotificationCertificate"] = new ApplePushNotificationCertificate($this->_propDict["applePushNotificationCertificate"]); return $this->_propDict["applePushNotificationCertificate"]; } } return null; } /** * Sets the applePushNotificationCertificate * Apple push notification certificate. * * @param ApplePushNotificationCertificate $val The applePushNotificationCertificate * * @return DeviceManagement */ public function setApplePushNotificationCertificate($val) { $this->_propDict["applePushNotificationCertificate"] = $val; return $this; } /** * Gets the managedDeviceOverview * Device overview * * @return ManagedDeviceOverview The managedDeviceOverview */ public function getManagedDeviceOverview() { if (array_key_exists("managedDeviceOverview", $this->_propDict)) { if (is_a($this->_propDict["managedDeviceOverview"], "Microsoft\Graph\Model\ManagedDeviceOverview")) { return $this->_propDict["managedDeviceOverview"]; } else { $this->_propDict["managedDeviceOverview"] = new ManagedDeviceOverview($this->_propDict["managedDeviceOverview"]); return $this->_propDict["managedDeviceOverview"]; } } return null; } /** * Sets the managedDeviceOverview * Device overview * * @param ManagedDeviceOverview $val The managedDeviceOverview * * @return DeviceManagement */ public function setManagedDeviceOverview($val) { $this->_propDict["managedDeviceOverview"] = $val; return $this; } /** * Gets the detectedApps * The list of detected apps associated with a device. * * @return array The detectedApps */ public function getDetectedApps() { if (array_key_exists("detectedApps", $this->_propDict)) { return $this->_propDict["detectedApps"]; } else { return null; } } /** * Sets the detectedApps * The list of detected apps associated with a device. * * @param DetectedApp $val The detectedApps * * @return DeviceManagement */ public function setDetectedApps($val) { $this->_propDict["detectedApps"] = $val; return $this; } /** * Gets the managedDevices * The list of managed devices. * * @return array The managedDevices */ public function getManagedDevices() { if (array_key_exists("managedDevices", $this->_propDict)) { return $this->_propDict["managedDevices"]; } else { return null; } } /** * Sets the managedDevices * The list of managed devices. * * @param ManagedDevice $val The managedDevices * * @return DeviceManagement */ public function setManagedDevices($val) { $this->_propDict["managedDevices"] = $val; return $this; } /** * Gets the notificationMessageTemplates * The Notification Message Templates. * * @return array The notificationMessageTemplates */ public function getNotificationMessageTemplates() { if (array_key_exists("notificationMessageTemplates", $this->_propDict)) { return $this->_propDict["notificationMessageTemplates"]; } else { return null; } } /** * Sets the notificationMessageTemplates * The Notification Message Templates. * * @param NotificationMessageTemplate $val The notificationMessageTemplates * * @return DeviceManagement */ public function setNotificationMessageTemplates($val) { $this->_propDict["notificationMessageTemplates"] = $val; return $this; } /** * Gets the roleDefinitions * The Role Definitions. * * @return array The roleDefinitions */ public function getRoleDefinitions() { if (array_key_exists("roleDefinitions", $this->_propDict)) { return $this->_propDict["roleDefinitions"]; } else { return null; } } /** * Sets the roleDefinitions * The Role Definitions. * * @param RoleDefinition $val The roleDefinitions * * @return DeviceManagement */ public function setRoleDefinitions($val) { $this->_propDict["roleDefinitions"] = $val; return $this; } /** * Gets the roleAssignments * The Role Assignments. * * @return array The roleAssignments */ public function getRoleAssignments() { if (array_key_exists("roleAssignments", $this->_propDict)) { return $this->_propDict["roleAssignments"]; } else { return null; } } /** * Sets the roleAssignments * The Role Assignments. * * @param DeviceAndAppManagementRoleAssignment $val The roleAssignments * * @return DeviceManagement */ public function setRoleAssignments($val) { $this->_propDict["roleAssignments"] = $val; return $this; } /** * Gets the resourceOperations * The Resource Operations. * * @return array The resourceOperations */ public function getResourceOperations() { if (array_key_exists("resourceOperations", $this->_propDict)) { return $this->_propDict["resourceOperations"]; } else { return null; } } /** * Sets the resourceOperations * The Resource Operations. * * @param ResourceOperation $val The resourceOperations * * @return DeviceManagement */ public function setResourceOperations($val) { $this->_propDict["resourceOperations"] = $val; return $this; } /** * Gets the remoteAssistancePartners * The remote assist partners. * * @return array The remoteAssistancePartners */ public function getRemoteAssistancePartners() { if (array_key_exists("remoteAssistancePartners", $this->_propDict)) { return $this->_propDict["remoteAssistancePartners"]; } else { return null; } } /** * Sets the remoteAssistancePartners * The remote assist partners. * * @param RemoteAssistancePartner $val The remoteAssistancePartners * * @return DeviceManagement */ public function setRemoteAssistancePartners($val) { $this->_propDict["remoteAssistancePartners"] = $val; return $this; } /** * Gets the telecomExpenseManagementPartners * The telecom expense management partners. * * @return array The telecomExpenseManagementPartners */ public function getTelecomExpenseManagementPartners() { if (array_key_exists("telecomExpenseManagementPartners", $this->_propDict)) { return $this->_propDict["telecomExpenseManagementPartners"]; } else { return null; } } /** * Sets the telecomExpenseManagementPartners * The telecom expense management partners. * * @param TelecomExpenseManagementPartner $val The telecomExpenseManagementPartners * * @return DeviceManagement */ public function setTelecomExpenseManagementPartners($val) { $this->_propDict["telecomExpenseManagementPartners"] = $val; return $this; } /** * Gets the troubleshootingEvents * The list of troubleshooting events for the tenant. * * @return array The troubleshootingEvents */ public function getTroubleshootingEvents() { if (array_key_exists("troubleshootingEvents", $this->_propDict)) { return $this->_propDict["troubleshootingEvents"]; } else { return null; } } /** * Sets the troubleshootingEvents * The list of troubleshooting events for the tenant. * * @param DeviceManagementTroubleshootingEvent $val The troubleshootingEvents * * @return DeviceManagement */ public function setTroubleshootingEvents($val) { $this->_propDict["troubleshootingEvents"] = $val; return $this; } /** * Gets the windowsInformationProtectionAppLearningSummaries * The windows information protection app learning summaries. * * @return array The windowsInformationProtectionAppLearningSummaries */ public function getWindowsInformationProtectionAppLearningSummaries() { if (array_key_exists("windowsInformationProtectionAppLearningSummaries", $this->_propDict)) { return $this->_propDict["windowsInformationProtectionAppLearningSummaries"]; } else { return null; } } /** * Sets the windowsInformationProtectionAppLearningSummaries * The windows information protection app learning summaries. * * @param WindowsInformationProtectionAppLearningSummary $val The windowsInformationProtectionAppLearningSummaries * * @return DeviceManagement */ public function setWindowsInformationProtectionAppLearningSummaries($val) { $this->_propDict["windowsInformationProtectionAppLearningSummaries"] = $val; return $this; } /** * Gets the windowsInformationProtectionNetworkLearningSummaries * The windows information protection network learning summaries. * * @return array The windowsInformationProtectionNetworkLearningSummaries */ public function getWindowsInformationProtectionNetworkLearningSummaries() { if (array_key_exists("windowsInformationProtectionNetworkLearningSummaries", $this->_propDict)) { return $this->_propDict["windowsInformationProtectionNetworkLearningSummaries"]; } else { return null; } } /** * Sets the windowsInformationProtectionNetworkLearningSummaries * The windows information protection network learning summaries. * * @param WindowsInformationProtectionNetworkLearningSummary $val The windowsInformationProtectionNetworkLearningSummaries * * @return DeviceManagement */ public function setWindowsInformationProtectionNetworkLearningSummaries($val) { $this->_propDict["windowsInformationProtectionNetworkLearningSummaries"] = $val; return $this; } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0.01 |
proxy
|
phpinfo
|
Settings