ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * IosManagedAppProtection File * PHP version 7 * * @category Library * @package Microsoft.Graph * @copyright (c) Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @link https://graph.microsoft.com */ namespace Microsoft\Graph\Model; /** * IosManagedAppProtection class * * @category Model * @package Microsoft.Graph * @copyright (c) Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @link https://graph.microsoft.com */ class IosManagedAppProtection extends TargetedManagedAppProtection { /** * Gets the appDataEncryptionType * Type of encryption which should be used for data in a managed app. Possible values are: useDeviceSettings, afterDeviceRestart, whenDeviceLockedExceptOpenFiles, whenDeviceLocked. * * @return ManagedAppDataEncryptionType|null The appDataEncryptionType */ public function getAppDataEncryptionType() { if (array_key_exists("appDataEncryptionType", $this->_propDict)) { if (is_a($this->_propDict["appDataEncryptionType"], "\Microsoft\Graph\Model\ManagedAppDataEncryptionType") || is_null($this->_propDict["appDataEncryptionType"])) { return $this->_propDict["appDataEncryptionType"]; } else { $this->_propDict["appDataEncryptionType"] = new ManagedAppDataEncryptionType($this->_propDict["appDataEncryptionType"]); return $this->_propDict["appDataEncryptionType"]; } } return null; } /** * Sets the appDataEncryptionType * Type of encryption which should be used for data in a managed app. Possible values are: useDeviceSettings, afterDeviceRestart, whenDeviceLockedExceptOpenFiles, whenDeviceLocked. * * @param ManagedAppDataEncryptionType $val The appDataEncryptionType * * @return IosManagedAppProtection */ public function setAppDataEncryptionType($val) { $this->_propDict["appDataEncryptionType"] = $val; return $this; } /** * Gets the customBrowserProtocol * A custom browser protocol to open weblink on iOS. When this property is configured, ManagedBrowserToOpenLinksRequired should be true. * * @return string|null The customBrowserProtocol */ public function getCustomBrowserProtocol() { if (array_key_exists("customBrowserProtocol", $this->_propDict)) { return $this->_propDict["customBrowserProtocol"]; } else { return null; } } /** * Sets the customBrowserProtocol * A custom browser protocol to open weblink on iOS. When this property is configured, ManagedBrowserToOpenLinksRequired should be true. * * @param string $val The customBrowserProtocol * * @return IosManagedAppProtection */ public function setCustomBrowserProtocol($val) { $this->_propDict["customBrowserProtocol"] = $val; return $this; } /** * Gets the deployedAppCount * Count of apps to which the current policy is deployed. * * @return int|null The deployedAppCount */ public function getDeployedAppCount() { if (array_key_exists("deployedAppCount", $this->_propDict)) { return $this->_propDict["deployedAppCount"]; } else { return null; } } /** * Sets the deployedAppCount * Count of apps to which the current policy is deployed. * * @param int $val The deployedAppCount * * @return IosManagedAppProtection */ public function setDeployedAppCount($val) { $this->_propDict["deployedAppCount"] = intval($val); return $this; } /** * Gets the faceIdBlocked * Indicates whether use of the FaceID is allowed in place of a pin if PinRequired is set to True. * * @return bool|null The faceIdBlocked */ public function getFaceIdBlocked() { if (array_key_exists("faceIdBlocked", $this->_propDict)) { return $this->_propDict["faceIdBlocked"]; } else { return null; } } /** * Sets the faceIdBlocked * Indicates whether use of the FaceID is allowed in place of a pin if PinRequired is set to True. * * @param bool $val The faceIdBlocked * * @return IosManagedAppProtection */ public function setFaceIdBlocked($val) { $this->_propDict["faceIdBlocked"] = boolval($val); return $this; } /** * Gets the minimumRequiredSdkVersion * Versions less than the specified version will block the managed app from accessing company data. * * @return string|null The minimumRequiredSdkVersion */ public function getMinimumRequiredSdkVersion() { if (array_key_exists("minimumRequiredSdkVersion", $this->_propDict)) { return $this->_propDict["minimumRequiredSdkVersion"]; } else { return null; } } /** * Sets the minimumRequiredSdkVersion * Versions less than the specified version will block the managed app from accessing company data. * * @param string $val The minimumRequiredSdkVersion * * @return IosManagedAppProtection */ public function setMinimumRequiredSdkVersion($val) { $this->_propDict["minimumRequiredSdkVersion"] = $val; return $this; } /** * Gets the apps * List of apps to which the policy is deployed. * * @return array|null The apps */ public function getApps() { if (array_key_exists("apps", $this->_propDict)) { return $this->_propDict["apps"]; } else { return null; } } /** * Sets the apps * List of apps to which the policy is deployed. * * @param ManagedMobileApp[] $val The apps * * @return IosManagedAppProtection */ public function setApps($val) { $this->_propDict["apps"] = $val; return $this; } /** * Gets the deploymentSummary * Navigation property to deployment summary of the configuration. * * @return ManagedAppPolicyDeploymentSummary|null The deploymentSummary */ public function getDeploymentSummary() { if (array_key_exists("deploymentSummary", $this->_propDict)) { if (is_a($this->_propDict["deploymentSummary"], "\Microsoft\Graph\Model\ManagedAppPolicyDeploymentSummary") || is_null($this->_propDict["deploymentSummary"])) { return $this->_propDict["deploymentSummary"]; } else { $this->_propDict["deploymentSummary"] = new ManagedAppPolicyDeploymentSummary($this->_propDict["deploymentSummary"]); return $this->_propDict["deploymentSummary"]; } } return null; } /** * Sets the deploymentSummary * Navigation property to deployment summary of the configuration. * * @param ManagedAppPolicyDeploymentSummary $val The deploymentSummary * * @return IosManagedAppProtection */ public function setDeploymentSummary($val) { $this->_propDict["deploymentSummary"] = $val; return $this; } }
cải xoăn