ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * DefaultManagedAppProtection 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; /** * DefaultManagedAppProtection 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 DefaultManagedAppProtection extends ManagedAppProtection { /** * Gets the appDataEncryptionType * Type of encryption which should be used for data in a managed app. (iOS Only). 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. (iOS Only). Possible values are: useDeviceSettings, afterDeviceRestart, whenDeviceLockedExceptOpenFiles, whenDeviceLocked. * * @param ManagedAppDataEncryptionType $val The appDataEncryptionType * * @return DefaultManagedAppProtection */ public function setAppDataEncryptionType($val) { $this->_propDict["appDataEncryptionType"] = $val; return $this; } /** * Gets the customSettings * A set of string key and string value pairs to be sent to the affected users, unalterned by this service * * @return array|null The customSettings */ public function getCustomSettings() { if (array_key_exists("customSettings", $this->_propDict)) { return $this->_propDict["customSettings"]; } else { return null; } } /** * Sets the customSettings * A set of string key and string value pairs to be sent to the affected users, unalterned by this service * * @param KeyValuePair[] $val The customSettings * * @return DefaultManagedAppProtection */ public function setCustomSettings($val) { $this->_propDict["customSettings"] = $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 DefaultManagedAppProtection */ public function setDeployedAppCount($val) { $this->_propDict["deployedAppCount"] = intval($val); return $this; } /** * Gets the disableAppEncryptionIfDeviceEncryptionIsEnabled * When this setting is enabled, app level encryption is disabled if device level encryption is enabled. (Android only) * * @return bool|null The disableAppEncryptionIfDeviceEncryptionIsEnabled */ public function getDisableAppEncryptionIfDeviceEncryptionIsEnabled() { if (array_key_exists("disableAppEncryptionIfDeviceEncryptionIsEnabled", $this->_propDict)) { return $this->_propDict["disableAppEncryptionIfDeviceEncryptionIsEnabled"]; } else { return null; } } /** * Sets the disableAppEncryptionIfDeviceEncryptionIsEnabled * When this setting is enabled, app level encryption is disabled if device level encryption is enabled. (Android only) * * @param bool $val The disableAppEncryptionIfDeviceEncryptionIsEnabled * * @return DefaultManagedAppProtection */ public function setDisableAppEncryptionIfDeviceEncryptionIsEnabled($val) { $this->_propDict["disableAppEncryptionIfDeviceEncryptionIsEnabled"] = boolval($val); return $this; } /** * Gets the encryptAppData * Indicates whether managed-app data should be encrypted. (Android only) * * @return bool|null The encryptAppData */ public function getEncryptAppData() { if (array_key_exists("encryptAppData", $this->_propDict)) { return $this->_propDict["encryptAppData"]; } else { return null; } } /** * Sets the encryptAppData * Indicates whether managed-app data should be encrypted. (Android only) * * @param bool $val The encryptAppData * * @return DefaultManagedAppProtection */ public function setEncryptAppData($val) { $this->_propDict["encryptAppData"] = boolval($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. (iOS Only) * * @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. (iOS Only) * * @param bool $val The faceIdBlocked * * @return DefaultManagedAppProtection */ public function setFaceIdBlocked($val) { $this->_propDict["faceIdBlocked"] = boolval($val); return $this; } /** * Gets the minimumRequiredPatchVersion * Define the oldest required Android security patch level a user can have to gain secure access to the app. (Android only) * * @return string|null The minimumRequiredPatchVersion */ public function getMinimumRequiredPatchVersion() { if (array_key_exists("minimumRequiredPatchVersion", $this->_propDict)) { return $this->_propDict["minimumRequiredPatchVersion"]; } else { return null; } } /** * Sets the minimumRequiredPatchVersion * Define the oldest required Android security patch level a user can have to gain secure access to the app. (Android only) * * @param string $val The minimumRequiredPatchVersion * * @return DefaultManagedAppProtection */ public function setMinimumRequiredPatchVersion($val) { $this->_propDict["minimumRequiredPatchVersion"] = $val; return $this; } /** * Gets the minimumRequiredSdkVersion * Versions less than the specified version will block the managed app from accessing company data. (iOS Only) * * @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. (iOS Only) * * @param string $val The minimumRequiredSdkVersion * * @return DefaultManagedAppProtection */ public function setMinimumRequiredSdkVersion($val) { $this->_propDict["minimumRequiredSdkVersion"] = $val; return $this; } /** * Gets the minimumWarningPatchVersion * Define the oldest recommended Android security patch level a user can have for secure access to the app. (Android only) * * @return string|null The minimumWarningPatchVersion */ public function getMinimumWarningPatchVersion() { if (array_key_exists("minimumWarningPatchVersion", $this->_propDict)) { return $this->_propDict["minimumWarningPatchVersion"]; } else { return null; } } /** * Sets the minimumWarningPatchVersion * Define the oldest recommended Android security patch level a user can have for secure access to the app. (Android only) * * @param string $val The minimumWarningPatchVersion * * @return DefaultManagedAppProtection */ public function setMinimumWarningPatchVersion($val) { $this->_propDict["minimumWarningPatchVersion"] = $val; return $this; } /** * Gets the screenCaptureBlocked * Indicates whether screen capture is blocked. (Android only) * * @return bool|null The screenCaptureBlocked */ public function getScreenCaptureBlocked() { if (array_key_exists("screenCaptureBlocked", $this->_propDict)) { return $this->_propDict["screenCaptureBlocked"]; } else { return null; } } /** * Sets the screenCaptureBlocked * Indicates whether screen capture is blocked. (Android only) * * @param bool $val The screenCaptureBlocked * * @return DefaultManagedAppProtection */ public function setScreenCaptureBlocked($val) { $this->_propDict["screenCaptureBlocked"] = boolval($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 DefaultManagedAppProtection */ 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 DefaultManagedAppProtection */ public function setDeploymentSummary($val) { $this->_propDict["deploymentSummary"] = $val; return $this; } }
cải xoăn