PATH:
home
/
centosnipponia
/
public_html
/
ts
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Beta
/
Microsoft
/
Graph
/
Model
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * Windows10GeneralConfiguration 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 Beta\Microsoft\Graph\Model; /** * Windows10GeneralConfiguration 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 Windows10GeneralConfiguration extends DeviceConfiguration { /** * Gets the accountsBlockAddingNonMicrosoftAccountEmail * Indicates whether or not to Block the user from adding email accounts to the device that are not associated with a Microsoft account. * * @return bool|null The accountsBlockAddingNonMicrosoftAccountEmail */ public function getAccountsBlockAddingNonMicrosoftAccountEmail() { if (array_key_exists("accountsBlockAddingNonMicrosoftAccountEmail", $this->_propDict)) { return $this->_propDict["accountsBlockAddingNonMicrosoftAccountEmail"]; } else { return null; } } /** * Sets the accountsBlockAddingNonMicrosoftAccountEmail * Indicates whether or not to Block the user from adding email accounts to the device that are not associated with a Microsoft account. * * @param bool $val The accountsBlockAddingNonMicrosoftAccountEmail * * @return Windows10GeneralConfiguration */ public function setAccountsBlockAddingNonMicrosoftAccountEmail($val) { $this->_propDict["accountsBlockAddingNonMicrosoftAccountEmail"] = boolval($val); return $this; } /** * Gets the activateAppsWithVoice * Specifies if Windows apps can be activated by voice. Possible values are: notConfigured, enabled, disabled. * * @return Enablement|null The activateAppsWithVoice */ public function getActivateAppsWithVoice() { if (array_key_exists("activateAppsWithVoice", $this->_propDict)) { if (is_a($this->_propDict["activateAppsWithVoice"], "\Beta\Microsoft\Graph\Model\Enablement") || is_null($this->_propDict["activateAppsWithVoice"])) { return $this->_propDict["activateAppsWithVoice"]; } else { $this->_propDict["activateAppsWithVoice"] = new Enablement($this->_propDict["activateAppsWithVoice"]); return $this->_propDict["activateAppsWithVoice"]; } } return null; } /** * Sets the activateAppsWithVoice * Specifies if Windows apps can be activated by voice. Possible values are: notConfigured, enabled, disabled. * * @param Enablement $val The activateAppsWithVoice * * @return Windows10GeneralConfiguration */ public function setActivateAppsWithVoice($val) { $this->_propDict["activateAppsWithVoice"] = $val; return $this; } /** * Gets the antiTheftModeBlocked * Indicates whether or not to block the user from selecting an AntiTheft mode preference (Windows 10 Mobile only). * * @return bool|null The antiTheftModeBlocked */ public function getAntiTheftModeBlocked() { if (array_key_exists("antiTheftModeBlocked", $this->_propDict)) { return $this->_propDict["antiTheftModeBlocked"]; } else { return null; } } /** * Sets the antiTheftModeBlocked * Indicates whether or not to block the user from selecting an AntiTheft mode preference (Windows 10 Mobile only). * * @param bool $val The antiTheftModeBlocked * * @return Windows10GeneralConfiguration */ public function setAntiTheftModeBlocked($val) { $this->_propDict["antiTheftModeBlocked"] = boolval($val); return $this; } /** * Gets the appManagementMSIAllowUserControlOverInstall * This policy setting permits users to change installation options that typically are available only to system administrators. * * @return bool|null The appManagementMSIAllowUserControlOverInstall */ public function getAppManagementMSIAllowUserControlOverInstall() { if (array_key_exists("appManagementMSIAllowUserControlOverInstall", $this->_propDict)) { return $this->_propDict["appManagementMSIAllowUserControlOverInstall"]; } else { return null; } } /** * Sets the appManagementMSIAllowUserControlOverInstall * This policy setting permits users to change installation options that typically are available only to system administrators. * * @param bool $val The appManagementMSIAllowUserControlOverInstall * * @return Windows10GeneralConfiguration */ public function setAppManagementMSIAllowUserControlOverInstall($val) { $this->_propDict["appManagementMSIAllowUserControlOverInstall"] = boolval($val); return $this; } /** * Gets the appManagementMSIAlwaysInstallWithElevatedPrivileges * This policy setting directs Windows Installer to use elevated permissions when it installs any program on the system. * * @return bool|null The appManagementMSIAlwaysInstallWithElevatedPrivileges */ public function getAppManagementMSIAlwaysInstallWithElevatedPrivileges() { if (array_key_exists("appManagementMSIAlwaysInstallWithElevatedPrivileges", $this->_propDict)) { return $this->_propDict["appManagementMSIAlwaysInstallWithElevatedPrivileges"]; } else { return null; } } /** * Sets the appManagementMSIAlwaysInstallWithElevatedPrivileges * This policy setting directs Windows Installer to use elevated permissions when it installs any program on the system. * * @param bool $val The appManagementMSIAlwaysInstallWithElevatedPrivileges * * @return Windows10GeneralConfiguration */ public function setAppManagementMSIAlwaysInstallWithElevatedPrivileges($val) { $this->_propDict["appManagementMSIAlwaysInstallWithElevatedPrivileges"] = boolval($val); return $this; } /** * Gets the appManagementPackageFamilyNamesToLaunchAfterLogOn * List of semi-colon delimited Package Family Names of Windows apps. Listed Windows apps are to be launched after logon. * * @return string|null The appManagementPackageFamilyNamesToLaunchAfterLogOn */ public function getAppManagementPackageFamilyNamesToLaunchAfterLogOn() { if (array_key_exists("appManagementPackageFamilyNamesToLaunchAfterLogOn", $this->_propDict)) { return $this->_propDict["appManagementPackageFamilyNamesToLaunchAfterLogOn"]; } else { return null; } } /** * Sets the appManagementPackageFamilyNamesToLaunchAfterLogOn * List of semi-colon delimited Package Family Names of Windows apps. Listed Windows apps are to be launched after logon. * * @param string $val The appManagementPackageFamilyNamesToLaunchAfterLogOn * * @return Windows10GeneralConfiguration */ public function setAppManagementPackageFamilyNamesToLaunchAfterLogOn($val) { $this->_propDict["appManagementPackageFamilyNamesToLaunchAfterLogOn"] = $val; return $this; } /** * Gets the appsAllowTrustedAppsSideloading * Indicates whether apps from AppX packages signed with a trusted certificate can be side loaded. Possible values are: notConfigured, blocked, allowed. * * @return StateManagementSetting|null The appsAllowTrustedAppsSideloading */ public function getAppsAllowTrustedAppsSideloading() { if (array_key_exists("appsAllowTrustedAppsSideloading", $this->_propDict)) { if (is_a($this->_propDict["appsAllowTrustedAppsSideloading"], "\Beta\Microsoft\Graph\Model\StateManagementSetting") || is_null($this->_propDict["appsAllowTrustedAppsSideloading"])) { return $this->_propDict["appsAllowTrustedAppsSideloading"]; } else { $this->_propDict["appsAllowTrustedAppsSideloading"] = new StateManagementSetting($this->_propDict["appsAllowTrustedAppsSideloading"]); return $this->_propDict["appsAllowTrustedAppsSideloading"]; } } return null; } /** * Sets the appsAllowTrustedAppsSideloading * Indicates whether apps from AppX packages signed with a trusted certificate can be side loaded. Possible values are: notConfigured, blocked, allowed. * * @param StateManagementSetting $val The appsAllowTrustedAppsSideloading * * @return Windows10GeneralConfiguration */ public function setAppsAllowTrustedAppsSideloading($val) { $this->_propDict["appsAllowTrustedAppsSideloading"] = $val; return $this; } /** * Gets the appsBlockWindowsStoreOriginatedApps * Indicates whether or not to disable the launch of all apps from Windows Store that came pre-installed or were downloaded. * * @return bool|null The appsBlockWindowsStoreOriginatedApps */ public function getAppsBlockWindowsStoreOriginatedApps() { if (array_key_exists("appsBlockWindowsStoreOriginatedApps", $this->_propDict)) { return $this->_propDict["appsBlockWindowsStoreOriginatedApps"]; } else { return null; } } /** * Sets the appsBlockWindowsStoreOriginatedApps * Indicates whether or not to disable the launch of all apps from Windows Store that came pre-installed or were downloaded. * * @param bool $val The appsBlockWindowsStoreOriginatedApps * * @return Windows10GeneralConfiguration */ public function setAppsBlockWindowsStoreOriginatedApps($val) { $this->_propDict["appsBlockWindowsStoreOriginatedApps"] = boolval($val); return $this; } /** * Gets the authenticationAllowSecondaryDevice * Allows secondary authentication devices to work with Windows. * * @return bool|null The authenticationAllowSecondaryDevice */ public function getAuthenticationAllowSecondaryDevice() { if (array_key_exists("authenticationAllowSecondaryDevice", $this->_propDict)) { return $this->_propDict["authenticationAllowSecondaryDevice"]; } else { return null; } } /** * Sets the authenticationAllowSecondaryDevice * Allows secondary authentication devices to work with Windows. * * @param bool $val The authenticationAllowSecondaryDevice * * @return Windows10GeneralConfiguration */ public function setAuthenticationAllowSecondaryDevice($val) { $this->_propDict["authenticationAllowSecondaryDevice"] = boolval($val); return $this; } /** * Gets the authenticationPreferredAzureADTenantDomainName * Specifies the preferred domain among available domains in the Azure AD tenant. * * @return string|null The authenticationPreferredAzureADTenantDomainName */ public function getAuthenticationPreferredAzureADTenantDomainName() { if (array_key_exists("authenticationPreferredAzureADTenantDomainName", $this->_propDict)) { return $this->_propDict["authenticationPreferredAzureADTenantDomainName"]; } else { return null; } } /** * Sets the authenticationPreferredAzureADTenantDomainName * Specifies the preferred domain among available domains in the Azure AD tenant. * * @param string $val The authenticationPreferredAzureADTenantDomainName * * @return Windows10GeneralConfiguration */ public function setAuthenticationPreferredAzureADTenantDomainName($val) { $this->_propDict["authenticationPreferredAzureADTenantDomainName"] = $val; return $this; } /** * Gets the authenticationWebSignIn * Indicates whether or not Web Credential Provider will be enabled. Possible values are: notConfigured, enabled, disabled. * * @return Enablement|null The authenticationWebSignIn */ public function getAuthenticationWebSignIn() { if (array_key_exists("authenticationWebSignIn", $this->_propDict)) { if (is_a($this->_propDict["authenticationWebSignIn"], "\Beta\Microsoft\Graph\Model\Enablement") || is_null($this->_propDict["authenticationWebSignIn"])) { return $this->_propDict["authenticationWebSignIn"]; } else { $this->_propDict["authenticationWebSignIn"] = new Enablement($this->_propDict["authenticationWebSignIn"]); return $this->_propDict["authenticationWebSignIn"]; } } return null; } /** * Sets the authenticationWebSignIn * Indicates whether or not Web Credential Provider will be enabled. Possible values are: notConfigured, enabled, disabled. * * @param Enablement $val The authenticationWebSignIn * * @return Windows10GeneralConfiguration */ public function setAuthenticationWebSignIn($val) { $this->_propDict["authenticationWebSignIn"] = $val; return $this; } /** * Gets the bluetoothAllowedServices * Specify a list of allowed Bluetooth services and profiles in hex formatted strings. * * @return string|null The bluetoothAllowedServices */ public function getBluetoothAllowedServices() { if (array_key_exists("bluetoothAllowedServices", $this->_propDict)) { return $this->_propDict["bluetoothAllowedServices"]; } else { return null; } } /** * Sets the bluetoothAllowedServices * Specify a list of allowed Bluetooth services and profiles in hex formatted strings. * * @param string $val The bluetoothAllowedServices * * @return Windows10GeneralConfiguration */ public function setBluetoothAllowedServices($val) { $this->_propDict["bluetoothAllowedServices"] = $val; return $this; } /** * Gets the bluetoothBlockAdvertising * Whether or not to Block the user from using bluetooth advertising. * * @return bool|null The bluetoothBlockAdvertising */ public function getBluetoothBlockAdvertising() { if (array_key_exists("bluetoothBlockAdvertising", $this->_propDict)) { return $this->_propDict["bluetoothBlockAdvertising"]; } else { return null; } } /** * Sets the bluetoothBlockAdvertising * Whether or not to Block the user from using bluetooth advertising. * * @param bool $val The bluetoothBlockAdvertising * * @return Windows10GeneralConfiguration */ public function setBluetoothBlockAdvertising($val) { $this->_propDict["bluetoothBlockAdvertising"] = boolval($val); return $this; } /** * Gets the bluetoothBlockDiscoverableMode * Whether or not to Block the user from using bluetooth discoverable mode. * * @return bool|null The bluetoothBlockDiscoverableMode */ public function getBluetoothBlockDiscoverableMode() { if (array_key_exists("bluetoothBlockDiscoverableMode", $this->_propDict)) { return $this->_propDict["bluetoothBlockDiscoverableMode"]; } else { return null; } } /** * Sets the bluetoothBlockDiscoverableMode * Whether or not to Block the user from using bluetooth discoverable mode. * * @param bool $val The bluetoothBlockDiscoverableMode * * @return Windows10GeneralConfiguration */ public function setBluetoothBlockDiscoverableMode($val) { $this->_propDict["bluetoothBlockDiscoverableMode"] = boolval($val); return $this; } /** * Gets the bluetoothBlocked * Whether or not to Block the user from using bluetooth. * * @return bool|null The bluetoothBlocked */ public function getBluetoothBlocked() { if (array_key_exists("bluetoothBlocked", $this->_propDict)) { return $this->_propDict["bluetoothBlocked"]; } else { return null; } } /** * Sets the bluetoothBlocked * Whether or not to Block the user from using bluetooth. * * @param bool $val The bluetoothBlocked * * @return Windows10GeneralConfiguration */ public function setBluetoothBlocked($val) { $this->_propDict["bluetoothBlocked"] = boolval($val); return $this; } /** * Gets the bluetoothBlockPrePairing * Whether or not to block specific bundled Bluetooth peripherals to automatically pair with the host device. * * @return bool|null The bluetoothBlockPrePairing */ public function getBluetoothBlockPrePairing() { if (array_key_exists("bluetoothBlockPrePairing", $this->_propDict)) { return $this->_propDict["bluetoothBlockPrePairing"]; } else { return null; } } /** * Sets the bluetoothBlockPrePairing * Whether or not to block specific bundled Bluetooth peripherals to automatically pair with the host device. * * @param bool $val The bluetoothBlockPrePairing * * @return Windows10GeneralConfiguration */ public function setBluetoothBlockPrePairing($val) { $this->_propDict["bluetoothBlockPrePairing"] = boolval($val); return $this; } /** * Gets the bluetoothBlockPromptedProximalConnections * Whether or not to block the users from using Swift Pair and other proximity based scenarios. * * @return bool|null The bluetoothBlockPromptedProximalConnections */ public function getBluetoothBlockPromptedProximalConnections() { if (array_key_exists("bluetoothBlockPromptedProximalConnections", $this->_propDict)) { return $this->_propDict["bluetoothBlockPromptedProximalConnections"]; } else { return null; } } /** * Sets the bluetoothBlockPromptedProximalConnections * Whether or not to block the users from using Swift Pair and other proximity based scenarios. * * @param bool $val The bluetoothBlockPromptedProximalConnections * * @return Windows10GeneralConfiguration */ public function setBluetoothBlockPromptedProximalConnections($val) { $this->_propDict["bluetoothBlockPromptedProximalConnections"] = boolval($val); return $this; } /** * Gets the cameraBlocked * Whether or not to Block the user from accessing the camera of the device. * * @return bool|null The cameraBlocked */ public function getCameraBlocked() { if (array_key_exists("cameraBlocked", $this->_propDict)) { return $this->_propDict["cameraBlocked"]; } else { return null; } } /** * Sets the cameraBlocked * Whether or not to Block the user from accessing the camera of the device. * * @param bool $val The cameraBlocked * * @return Windows10GeneralConfiguration */ public function setCameraBlocked($val) { $this->_propDict["cameraBlocked"] = boolval($val); return $this; } /** * Gets the cellularBlockDataWhenRoaming * Whether or not to Block the user from using data over cellular while roaming. * * @return bool|null The cellularBlockDataWhenRoaming */ public function getCellularBlockDataWhenRoaming() { if (array_key_exists("cellularBlockDataWhenRoaming", $this->_propDict)) { return $this->_propDict["cellularBlockDataWhenRoaming"]; } else { return null; } } /** * Sets the cellularBlockDataWhenRoaming * Whether or not to Block the user from using data over cellular while roaming. * * @param bool $val The cellularBlockDataWhenRoaming * * @return Windows10GeneralConfiguration */ public function setCellularBlockDataWhenRoaming($val) { $this->_propDict["cellularBlockDataWhenRoaming"] = boolval($val); return $this; } /** * Gets the cellularBlockVpn * Whether or not to Block the user from using VPN over cellular. * * @return bool|null The cellularBlockVpn */ public function getCellularBlockVpn() { if (array_key_exists("cellularBlockVpn", $this->_propDict)) { return $this->_propDict["cellularBlockVpn"]; } else { return null; } } /** * Sets the cellularBlockVpn * Whether or not to Block the user from using VPN over cellular. * * @param bool $val The cellularBlockVpn * * @return Windows10GeneralConfiguration */ public function setCellularBlockVpn($val) { $this->_propDict["cellularBlockVpn"] = boolval($val); return $this; } /** * Gets the cellularBlockVpnWhenRoaming * Whether or not to Block the user from using VPN when roaming over cellular. * * @return bool|null The cellularBlockVpnWhenRoaming */ public function getCellularBlockVpnWhenRoaming() { if (array_key_exists("cellularBlockVpnWhenRoaming", $this->_propDict)) { return $this->_propDict["cellularBlockVpnWhenRoaming"]; } else { return null; } } /** * Sets the cellularBlockVpnWhenRoaming * Whether or not to Block the user from using VPN when roaming over cellular. * * @param bool $val The cellularBlockVpnWhenRoaming * * @return Windows10GeneralConfiguration */ public function setCellularBlockVpnWhenRoaming($val) { $this->_propDict["cellularBlockVpnWhenRoaming"] = boolval($val); return $this; } /** * Gets the cellularData * Whether or not to allow the cellular data channel on the device. If not configured, the cellular data channel is allowed and the user can turn it off. Possible values are: blocked, required, allowed, notConfigured. * * @return ConfigurationUsage|null The cellularData */ public function getCellularData() { if (array_key_exists("cellularData", $this->_propDict)) { if (is_a($this->_propDict["cellularData"], "\Beta\Microsoft\Graph\Model\ConfigurationUsage") || is_null($this->_propDict["cellularData"])) { return $this->_propDict["cellularData"]; } else { $this->_propDict["cellularData"] = new ConfigurationUsage($this->_propDict["cellularData"]); return $this->_propDict["cellularData"]; } } return null; } /** * Sets the cellularData * Whether or not to allow the cellular data channel on the device. If not configured, the cellular data channel is allowed and the user can turn it off. Possible values are: blocked, required, allowed, notConfigured. * * @param ConfigurationUsage $val The cellularData * * @return Windows10GeneralConfiguration */ public function setCellularData($val) { $this->_propDict["cellularData"] = $val; return $this; } /** * Gets the certificatesBlockManualRootCertificateInstallation * Whether or not to Block the user from doing manual root certificate installation. * * @return bool|null The certificatesBlockManualRootCertificateInstallation */ public function getCertificatesBlockManualRootCertificateInstallation() { if (array_key_exists("certificatesBlockManualRootCertificateInstallation", $this->_propDict)) { return $this->_propDict["certificatesBlockManualRootCertificateInstallation"]; } else { return null; } } /** * Sets the certificatesBlockManualRootCertificateInstallation * Whether or not to Block the user from doing manual root certificate installation. * * @param bool $val The certificatesBlockManualRootCertificateInstallation * * @return Windows10GeneralConfiguration */ public function setCertificatesBlockManualRootCertificateInstallation($val) { $this->_propDict["certificatesBlockManualRootCertificateInstallation"] = boolval($val); return $this; } /** * Gets the configureTimeZone * Specifies the time zone to be applied to the device. This is the standard Windows name for the target time zone. * * @return string|null The configureTimeZone */ public function getConfigureTimeZone() { if (array_key_exists("configureTimeZone", $this->_propDict)) { return $this->_propDict["configureTimeZone"]; } else { return null; } } /** * Sets the configureTimeZone * Specifies the time zone to be applied to the device. This is the standard Windows name for the target time zone. * * @param string $val The configureTimeZone * * @return Windows10GeneralConfiguration */ public function setConfigureTimeZone($val) { $this->_propDict["configureTimeZone"] = $val; return $this; } /** * Gets the connectedDevicesServiceBlocked * Whether or not to block Connected Devices Service which enables discovery and connection to other devices, remote messaging, remote app sessions and other cross-device experiences. * * @return bool|null The connectedDevicesServiceBlocked */ public function getConnectedDevicesServiceBlocked() { if (array_key_exists("connectedDevicesServiceBlocked", $this->_propDict)) { return $this->_propDict["connectedDevicesServiceBlocked"]; } else { return null; } } /** * Sets the connectedDevicesServiceBlocked * Whether or not to block Connected Devices Service which enables discovery and connection to other devices, remote messaging, remote app sessions and other cross-device experiences. * * @param bool $val The connectedDevicesServiceBlocked * * @return Windows10GeneralConfiguration */ public function setConnectedDevicesServiceBlocked($val) { $this->_propDict["connectedDevicesServiceBlocked"] = boolval($val); return $this; } /** * Gets the copyPasteBlocked * Whether or not to Block the user from using copy paste. * * @return bool|null The copyPasteBlocked */ public function getCopyPasteBlocked() { if (array_key_exists("copyPasteBlocked", $this->_propDict)) { return $this->_propDict["copyPasteBlocked"]; } else { return null; } } /** * Sets the copyPasteBlocked * Whether or not to Block the user from using copy paste. * * @param bool $val The copyPasteBlocked * * @return Windows10GeneralConfiguration */ public function setCopyPasteBlocked($val) { $this->_propDict["copyPasteBlocked"] = boolval($val); return $this; } /** * Gets the cortanaBlocked * Whether or not to Block the user from using Cortana. * * @return bool|null The cortanaBlocked */ public function getCortanaBlocked() { if (array_key_exists("cortanaBlocked", $this->_propDict)) { return $this->_propDict["cortanaBlocked"]; } else { return null; } } /** * Sets the cortanaBlocked * Whether or not to Block the user from using Cortana. * * @param bool $val The cortanaBlocked * * @return Windows10GeneralConfiguration */ public function setCortanaBlocked($val) { $this->_propDict["cortanaBlocked"] = boolval($val); return $this; } /** * Gets the cryptographyAllowFipsAlgorithmPolicy * Specify whether to allow or disallow the Federal Information Processing Standard (FIPS) policy. * * @return bool|null The cryptographyAllowFipsAlgorithmPolicy */ public function getCryptographyAllowFipsAlgorithmPolicy() { if (array_key_exists("cryptographyAllowFipsAlgorithmPolicy", $this->_propDict)) { return $this->_propDict["cryptographyAllowFipsAlgorithmPolicy"]; } else { return null; } } /** * Sets the cryptographyAllowFipsAlgorithmPolicy * Specify whether to allow or disallow the Federal Information Processing Standard (FIPS) policy. * * @param bool $val The cryptographyAllowFipsAlgorithmPolicy * * @return Windows10GeneralConfiguration */ public function setCryptographyAllowFipsAlgorithmPolicy($val) { $this->_propDict["cryptographyAllowFipsAlgorithmPolicy"] = boolval($val); return $this; } /** * Gets the dataProtectionBlockDirectMemoryAccess * This policy setting allows you to block direct memory access (DMA) for all hot pluggable PCI downstream ports until a user logs into Windows. * * @return bool|null The dataProtectionBlockDirectMemoryAccess */ public function getDataProtectionBlockDirectMemoryAccess() { if (array_key_exists("dataProtectionBlockDirectMemoryAccess", $this->_propDict)) { return $this->_propDict["dataProtectionBlockDirectMemoryAccess"]; } else { return null; } } /** * Sets the dataProtectionBlockDirectMemoryAccess * This policy setting allows you to block direct memory access (DMA) for all hot pluggable PCI downstream ports until a user logs into Windows. * * @param bool $val The dataProtectionBlockDirectMemoryAccess * * @return Windows10GeneralConfiguration */ public function setDataProtectionBlockDirectMemoryAccess($val) { $this->_propDict["dataProtectionBlockDirectMemoryAccess"] = boolval($val); return $this; } /** * Gets the defenderBlockEndUserAccess * Whether or not to block end user access to Defender. * * @return bool|null The defenderBlockEndUserAccess */ public function getDefenderBlockEndUserAccess() { if (array_key_exists("defenderBlockEndUserAccess", $this->_propDict)) { return $this->_propDict["defenderBlockEndUserAccess"]; } else { return null; } } /** * Sets the defenderBlockEndUserAccess * Whether or not to block end user access to Defender. * * @param bool $val The defenderBlockEndUserAccess * * @return Windows10GeneralConfiguration */ public function setDefenderBlockEndUserAccess($val) { $this->_propDict["defenderBlockEndUserAccess"] = boolval($val); return $this; } /** * Gets the defenderBlockOnAccessProtection * Allows or disallows Windows Defender On Access Protection functionality. * * @return bool|null The defenderBlockOnAccessProtection */ public function getDefenderBlockOnAccessProtection() { if (array_key_exists("defenderBlockOnAccessProtection", $this->_propDict)) { return $this->_propDict["defenderBlockOnAccessProtection"]; } else { return null; } } /** * Sets the defenderBlockOnAccessProtection * Allows or disallows Windows Defender On Access Protection functionality. * * @param bool $val The defenderBlockOnAccessProtection * * @return Windows10GeneralConfiguration */ public function setDefenderBlockOnAccessProtection($val) { $this->_propDict["defenderBlockOnAccessProtection"] = boolval($val); return $this; } /** * Gets the defenderCloudBlockLevel * Specifies the level of cloud-delivered protection. Possible values are: notConfigured, high, highPlus, zeroTolerance. * * @return DefenderCloudBlockLevelType|null The defenderCloudBlockLevel */ public function getDefenderCloudBlockLevel() { if (array_key_exists("defenderCloudBlockLevel", $this->_propDict)) { if (is_a($this->_propDict["defenderCloudBlockLevel"], "\Beta\Microsoft\Graph\Model\DefenderCloudBlockLevelType") || is_null($this->_propDict["defenderCloudBlockLevel"])) { return $this->_propDict["defenderCloudBlockLevel"]; } else { $this->_propDict["defenderCloudBlockLevel"] = new DefenderCloudBlockLevelType($this->_propDict["defenderCloudBlockLevel"]); return $this->_propDict["defenderCloudBlockLevel"]; } } return null; } /** * Sets the defenderCloudBlockLevel * Specifies the level of cloud-delivered protection. Possible values are: notConfigured, high, highPlus, zeroTolerance. * * @param DefenderCloudBlockLevelType $val The defenderCloudBlockLevel * * @return Windows10GeneralConfiguration */ public function setDefenderCloudBlockLevel($val) { $this->_propDict["defenderCloudBlockLevel"] = $val; return $this; } /** * Gets the defenderCloudExtendedTimeout * Timeout extension for file scanning by the cloud. Valid values 0 to 50 * * @return int|null The defenderCloudExtendedTimeout */ public function getDefenderCloudExtendedTimeout() { if (array_key_exists("defenderCloudExtendedTimeout", $this->_propDict)) { return $this->_propDict["defenderCloudExtendedTimeout"]; } else { return null; } } /** * Sets the defenderCloudExtendedTimeout * Timeout extension for file scanning by the cloud. Valid values 0 to 50 * * @param int $val The defenderCloudExtendedTimeout * * @return Windows10GeneralConfiguration */ public function setDefenderCloudExtendedTimeout($val) { $this->_propDict["defenderCloudExtendedTimeout"] = intval($val); return $this; } /** * Gets the defenderCloudExtendedTimeoutInSeconds * Timeout extension for file scanning by the cloud. Valid values 0 to 50 * * @return int|null The defenderCloudExtendedTimeoutInSeconds */ public function getDefenderCloudExtendedTimeoutInSeconds() { if (array_key_exists("defenderCloudExtendedTimeoutInSeconds", $this->_propDict)) { return $this->_propDict["defenderCloudExtendedTimeoutInSeconds"]; } else { return null; } } /** * Sets the defenderCloudExtendedTimeoutInSeconds * Timeout extension for file scanning by the cloud. Valid values 0 to 50 * * @param int $val The defenderCloudExtendedTimeoutInSeconds * * @return Windows10GeneralConfiguration */ public function setDefenderCloudExtendedTimeoutInSeconds($val) { $this->_propDict["defenderCloudExtendedTimeoutInSeconds"] = intval($val); return $this; } /** * Gets the defenderDaysBeforeDeletingQuarantinedMalware * Number of days before deleting quarantined malware. Valid values 0 to 90 * * @return int|null The defenderDaysBeforeDeletingQuarantinedMalware */ public function getDefenderDaysBeforeDeletingQuarantinedMalware() { if (array_key_exists("defenderDaysBeforeDeletingQuarantinedMalware", $this->_propDict)) { return $this->_propDict["defenderDaysBeforeDeletingQuarantinedMalware"]; } else { return null; } } /** * Sets the defenderDaysBeforeDeletingQuarantinedMalware * Number of days before deleting quarantined malware. Valid values 0 to 90 * * @param int $val The defenderDaysBeforeDeletingQuarantinedMalware * * @return Windows10GeneralConfiguration */ public function setDefenderDaysBeforeDeletingQuarantinedMalware($val) { $this->_propDict["defenderDaysBeforeDeletingQuarantinedMalware"] = intval($val); return $this; } /** * Gets the defenderDetectedMalwareActions * Gets or sets Defender’s actions to take on detected Malware per threat level. * * @return DefenderDetectedMalwareActions|null The defenderDetectedMalwareActions */ public function getDefenderDetectedMalwareActions() { if (array_key_exists("defenderDetectedMalwareActions", $this->_propDict)) { if (is_a($this->_propDict["defenderDetectedMalwareActions"], "\Beta\Microsoft\Graph\Model\DefenderDetectedMalwareActions") || is_null($this->_propDict["defenderDetectedMalwareActions"])) { return $this->_propDict["defenderDetectedMalwareActions"]; } else { $this->_propDict["defenderDetectedMalwareActions"] = new DefenderDetectedMalwareActions($this->_propDict["defenderDetectedMalwareActions"]); return $this->_propDict["defenderDetectedMalwareActions"]; } } return null; } /** * Sets the defenderDetectedMalwareActions * Gets or sets Defender’s actions to take on detected Malware per threat level. * * @param DefenderDetectedMalwareActions $val The defenderDetectedMalwareActions * * @return Windows10GeneralConfiguration */ public function setDefenderDetectedMalwareActions($val) { $this->_propDict["defenderDetectedMalwareActions"] = $val; return $this; } /** * Gets the defenderDisableCatchupFullScan * When blocked, catch-up scans for scheduled full scans will be turned off. * * @return bool|null The defenderDisableCatchupFullScan */ public function getDefenderDisableCatchupFullScan() { if (array_key_exists("defenderDisableCatchupFullScan", $this->_propDict)) { return $this->_propDict["defenderDisableCatchupFullScan"]; } else { return null; } } /** * Sets the defenderDisableCatchupFullScan * When blocked, catch-up scans for scheduled full scans will be turned off. * * @param bool $val The defenderDisableCatchupFullScan * * @return Windows10GeneralConfiguration */ public function setDefenderDisableCatchupFullScan($val) { $this->_propDict["defenderDisableCatchupFullScan"] = boolval($val); return $this; } /** * Gets the defenderDisableCatchupQuickScan * When blocked, catch-up scans for scheduled quick scans will be turned off. * * @return bool|null The defenderDisableCatchupQuickScan */ public function getDefenderDisableCatchupQuickScan() { if (array_key_exists("defenderDisableCatchupQuickScan", $this->_propDict)) { return $this->_propDict["defenderDisableCatchupQuickScan"]; } else { return null; } } /** * Sets the defenderDisableCatchupQuickScan * When blocked, catch-up scans for scheduled quick scans will be turned off. * * @param bool $val The defenderDisableCatchupQuickScan * * @return Windows10GeneralConfiguration */ public function setDefenderDisableCatchupQuickScan($val) { $this->_propDict["defenderDisableCatchupQuickScan"] = boolval($val); return $this; } /** * Gets the defenderFileExtensionsToExclude * File extensions to exclude from scans and real time protection. * * @return string|null The defenderFileExtensionsToExclude */ public function getDefenderFileExtensionsToExclude() { if (array_key_exists("defenderFileExtensionsToExclude", $this->_propDict)) { return $this->_propDict["defenderFileExtensionsToExclude"]; } else { return null; } } /** * Sets the defenderFileExtensionsToExclude * File extensions to exclude from scans and real time protection. * * @param string $val The defenderFileExtensionsToExclude * * @return Windows10GeneralConfiguration */ public function setDefenderFileExtensionsToExclude($val) { $this->_propDict["defenderFileExtensionsToExclude"] = $val; return $this; } /** * Gets the defenderFilesAndFoldersToExclude * Files and folder to exclude from scans and real time protection. * * @return string|null The defenderFilesAndFoldersToExclude */ public function getDefenderFilesAndFoldersToExclude() { if (array_key_exists("defenderFilesAndFoldersToExclude", $this->_propDict)) { return $this->_propDict["defenderFilesAndFoldersToExclude"]; } else { return null; } } /** * Sets the defenderFilesAndFoldersToExclude * Files and folder to exclude from scans and real time protection. * * @param string $val The defenderFilesAndFoldersToExclude * * @return Windows10GeneralConfiguration */ public function setDefenderFilesAndFoldersToExclude($val) { $this->_propDict["defenderFilesAndFoldersToExclude"] = $val; return $this; } /** * Gets the defenderMonitorFileActivity * Value for monitoring file activity. Possible values are: userDefined, disable, monitorAllFiles, monitorIncomingFilesOnly, monitorOutgoingFilesOnly. * * @return DefenderMonitorFileActivity|null The defenderMonitorFileActivity */ public function getDefenderMonitorFileActivity() { if (array_key_exists("defenderMonitorFileActivity", $this->_propDict)) { if (is_a($this->_propDict["defenderMonitorFileActivity"], "\Beta\Microsoft\Graph\Model\DefenderMonitorFileActivity") || is_null($this->_propDict["defenderMonitorFileActivity"])) { return $this->_propDict["defenderMonitorFileActivity"]; } else { $this->_propDict["defenderMonitorFileActivity"] = new DefenderMonitorFileActivity($this->_propDict["defenderMonitorFileActivity"]); return $this->_propDict["defenderMonitorFileActivity"]; } } return null; } /** * Sets the defenderMonitorFileActivity * Value for monitoring file activity. Possible values are: userDefined, disable, monitorAllFiles, monitorIncomingFilesOnly, monitorOutgoingFilesOnly. * * @param DefenderMonitorFileActivity $val The defenderMonitorFileActivity * * @return Windows10GeneralConfiguration */ public function setDefenderMonitorFileActivity($val) { $this->_propDict["defenderMonitorFileActivity"] = $val; return $this; } /** * Gets the defenderPotentiallyUnwantedAppAction * Gets or sets Defender’s action to take on Potentially Unwanted Application (PUA), which includes software with behaviors of ad-injection, software bundling, persistent solicitation for payment or subscription, etc. Defender alerts user when PUA is being downloaded or attempts to install itself. Added in Windows 10 for desktop. Possible values are: deviceDefault, block, audit. * * @return DefenderPotentiallyUnwantedAppAction|null The defenderPotentiallyUnwantedAppAction */ public function getDefenderPotentiallyUnwantedAppAction() { if (array_key_exists("defenderPotentiallyUnwantedAppAction", $this->_propDict)) { if (is_a($this->_propDict["defenderPotentiallyUnwantedAppAction"], "\Beta\Microsoft\Graph\Model\DefenderPotentiallyUnwantedAppAction") || is_null($this->_propDict["defenderPotentiallyUnwantedAppAction"])) { return $this->_propDict["defenderPotentiallyUnwantedAppAction"]; } else { $this->_propDict["defenderPotentiallyUnwantedAppAction"] = new DefenderPotentiallyUnwantedAppAction($this->_propDict["defenderPotentiallyUnwantedAppAction"]); return $this->_propDict["defenderPotentiallyUnwantedAppAction"]; } } return null; } /** * Sets the defenderPotentiallyUnwantedAppAction * Gets or sets Defender’s action to take on Potentially Unwanted Application (PUA), which includes software with behaviors of ad-injection, software bundling, persistent solicitation for payment or subscription, etc. Defender alerts user when PUA is being downloaded or attempts to install itself. Added in Windows 10 for desktop. Possible values are: deviceDefault, block, audit. * * @param DefenderPotentiallyUnwantedAppAction $val The defenderPotentiallyUnwantedAppAction * * @return Windows10GeneralConfiguration */ public function setDefenderPotentiallyUnwantedAppAction($val) { $this->_propDict["defenderPotentiallyUnwantedAppAction"] = $val; return $this; } /** * Gets the defenderPotentiallyUnwantedAppActionSetting * Gets or sets Defender’s action to take on Potentially Unwanted Application (PUA), which includes software with behaviors of ad-injection, software bundling, persistent solicitation for payment or subscription, etc. Defender alerts user when PUA is being downloaded or attempts to install itself. Added in Windows 10 for desktop. Possible values are: userDefined, enable, auditMode, warn, notConfigured. * * @return DefenderProtectionType|null The defenderPotentiallyUnwantedAppActionSetting */ public function getDefenderPotentiallyUnwantedAppActionSetting() { if (array_key_exists("defenderPotentiallyUnwantedAppActionSetting", $this->_propDict)) { if (is_a($this->_propDict["defenderPotentiallyUnwantedAppActionSetting"], "\Beta\Microsoft\Graph\Model\DefenderProtectionType") || is_null($this->_propDict["defenderPotentiallyUnwantedAppActionSetting"])) { return $this->_propDict["defenderPotentiallyUnwantedAppActionSetting"]; } else { $this->_propDict["defenderPotentiallyUnwantedAppActionSetting"] = new DefenderProtectionType($this->_propDict["defenderPotentiallyUnwantedAppActionSetting"]); return $this->_propDict["defenderPotentiallyUnwantedAppActionSetting"]; } } return null; } /** * Sets the defenderPotentiallyUnwantedAppActionSetting * Gets or sets Defender’s action to take on Potentially Unwanted Application (PUA), which includes software with behaviors of ad-injection, software bundling, persistent solicitation for payment or subscription, etc. Defender alerts user when PUA is being downloaded or attempts to install itself. Added in Windows 10 for desktop. Possible values are: userDefined, enable, auditMode, warn, notConfigured. * * @param DefenderProtectionType $val The defenderPotentiallyUnwantedAppActionSetting * * @return Windows10GeneralConfiguration */ public function setDefenderPotentiallyUnwantedAppActionSetting($val) { $this->_propDict["defenderPotentiallyUnwantedAppActionSetting"] = $val; return $this; } /** * Gets the defenderProcessesToExclude * Processes to exclude from scans and real time protection. * * @return string|null The defenderProcessesToExclude */ public function getDefenderProcessesToExclude() { if (array_key_exists("defenderProcessesToExclude", $this->_propDict)) { return $this->_propDict["defenderProcessesToExclude"]; } else { return null; } } /** * Sets the defenderProcessesToExclude * Processes to exclude from scans and real time protection. * * @param string $val The defenderProcessesToExclude * * @return Windows10GeneralConfiguration */ public function setDefenderProcessesToExclude($val) { $this->_propDict["defenderProcessesToExclude"] = $val; return $this; } /** * Gets the defenderPromptForSampleSubmission * The configuration for how to prompt user for sample submission. Possible values are: userDefined, alwaysPrompt, promptBeforeSendingPersonalData, neverSendData, sendAllDataWithoutPrompting. * * @return DefenderPromptForSampleSubmission|null The defenderPromptForSampleSubmission */ public function getDefenderPromptForSampleSubmission() { if (array_key_exists("defenderPromptForSampleSubmission", $this->_propDict)) { if (is_a($this->_propDict["defenderPromptForSampleSubmission"], "\Beta\Microsoft\Graph\Model\DefenderPromptForSampleSubmission") || is_null($this->_propDict["defenderPromptForSampleSubmission"])) { return $this->_propDict["defenderPromptForSampleSubmission"]; } else { $this->_propDict["defenderPromptForSampleSubmission"] = new DefenderPromptForSampleSubmission($this->_propDict["defenderPromptForSampleSubmission"]); return $this->_propDict["defenderPromptForSampleSubmission"]; } } return null; } /** * Sets the defenderPromptForSampleSubmission * The configuration for how to prompt user for sample submission. Possible values are: userDefined, alwaysPrompt, promptBeforeSendingPersonalData, neverSendData, sendAllDataWithoutPrompting. * * @param DefenderPromptForSampleSubmission $val The defenderPromptForSampleSubmission * * @return Windows10GeneralConfiguration */ public function setDefenderPromptForSampleSubmission($val) { $this->_propDict["defenderPromptForSampleSubmission"] = $val; return $this; } /** * Gets the defenderRequireBehaviorMonitoring * Indicates whether or not to require behavior monitoring. * * @return bool|null The defenderRequireBehaviorMonitoring */ public function getDefenderRequireBehaviorMonitoring() { if (array_key_exists("defenderRequireBehaviorMonitoring", $this->_propDict)) { return $this->_propDict["defenderRequireBehaviorMonitoring"]; } else { return null; } } /** * Sets the defenderRequireBehaviorMonitoring * Indicates whether or not to require behavior monitoring. * * @param bool $val The defenderRequireBehaviorMonitoring * * @return Windows10GeneralConfiguration */ public function setDefenderRequireBehaviorMonitoring($val) { $this->_propDict["defenderRequireBehaviorMonitoring"] = boolval($val); return $this; } /** * Gets the defenderRequireCloudProtection * Indicates whether or not to require cloud protection. * * @return bool|null The defenderRequireCloudProtection */ public function getDefenderRequireCloudProtection() { if (array_key_exists("defenderRequireCloudProtection", $this->_propDict)) { return $this->_propDict["defenderRequireCloudProtection"]; } else { return null; } } /** * Sets the defenderRequireCloudProtection * Indicates whether or not to require cloud protection. * * @param bool $val The defenderRequireCloudProtection * * @return Windows10GeneralConfiguration */ public function setDefenderRequireCloudProtection($val) { $this->_propDict["defenderRequireCloudProtection"] = boolval($val); return $this; } /** * Gets the defenderRequireNetworkInspectionSystem * Indicates whether or not to require network inspection system. * * @return bool|null The defenderRequireNetworkInspectionSystem */ public function getDefenderRequireNetworkInspectionSystem() { if (array_key_exists("defenderRequireNetworkInspectionSystem", $this->_propDict)) { return $this->_propDict["defenderRequireNetworkInspectionSystem"]; } else { return null; } } /** * Sets the defenderRequireNetworkInspectionSystem * Indicates whether or not to require network inspection system. * * @param bool $val The defenderRequireNetworkInspectionSystem * * @return Windows10GeneralConfiguration */ public function setDefenderRequireNetworkInspectionSystem($val) { $this->_propDict["defenderRequireNetworkInspectionSystem"] = boolval($val); return $this; } /** * Gets the defenderRequireRealTimeMonitoring * Indicates whether or not to require real time monitoring. * * @return bool|null The defenderRequireRealTimeMonitoring */ public function getDefenderRequireRealTimeMonitoring() { if (array_key_exists("defenderRequireRealTimeMonitoring", $this->_propDict)) { return $this->_propDict["defenderRequireRealTimeMonitoring"]; } else { return null; } } /** * Sets the defenderRequireRealTimeMonitoring * Indicates whether or not to require real time monitoring. * * @param bool $val The defenderRequireRealTimeMonitoring * * @return Windows10GeneralConfiguration */ public function setDefenderRequireRealTimeMonitoring($val) { $this->_propDict["defenderRequireRealTimeMonitoring"] = boolval($val); return $this; } /** * Gets the defenderScanArchiveFiles * Indicates whether or not to scan archive files. * * @return bool|null The defenderScanArchiveFiles */ public function getDefenderScanArchiveFiles() { if (array_key_exists("defenderScanArchiveFiles", $this->_propDict)) { return $this->_propDict["defenderScanArchiveFiles"]; } else { return null; } } /** * Sets the defenderScanArchiveFiles * Indicates whether or not to scan archive files. * * @param bool $val The defenderScanArchiveFiles * * @return Windows10GeneralConfiguration */ public function setDefenderScanArchiveFiles($val) { $this->_propDict["defenderScanArchiveFiles"] = boolval($val); return $this; } /** * Gets the defenderScanDownloads * Indicates whether or not to scan downloads. * * @return bool|null The defenderScanDownloads */ public function getDefenderScanDownloads() { if (array_key_exists("defenderScanDownloads", $this->_propDict)) { return $this->_propDict["defenderScanDownloads"]; } else { return null; } } /** * Sets the defenderScanDownloads * Indicates whether or not to scan downloads. * * @param bool $val The defenderScanDownloads * * @return Windows10GeneralConfiguration */ public function setDefenderScanDownloads($val) { $this->_propDict["defenderScanDownloads"] = boolval($val); return $this; } /** * Gets the defenderScanIncomingMail * Indicates whether or not to scan incoming mail messages. * * @return bool|null The defenderScanIncomingMail */ public function getDefenderScanIncomingMail() { if (array_key_exists("defenderScanIncomingMail", $this->_propDict)) { return $this->_propDict["defenderScanIncomingMail"]; } else { return null; } } /** * Sets the defenderScanIncomingMail * Indicates whether or not to scan incoming mail messages. * * @param bool $val The defenderScanIncomingMail * * @return Windows10GeneralConfiguration */ public function setDefenderScanIncomingMail($val) { $this->_propDict["defenderScanIncomingMail"] = boolval($val); return $this; } /** * Gets the defenderScanMappedNetworkDrivesDuringFullScan * Indicates whether or not to scan mapped network drives during full scan. * * @return bool|null The defenderScanMappedNetworkDrivesDuringFullScan */ public function getDefenderScanMappedNetworkDrivesDuringFullScan() { if (array_key_exists("defenderScanMappedNetworkDrivesDuringFullScan", $this->_propDict)) { return $this->_propDict["defenderScanMappedNetworkDrivesDuringFullScan"]; } else { return null; } } /** * Sets the defenderScanMappedNetworkDrivesDuringFullScan * Indicates whether or not to scan mapped network drives during full scan. * * @param bool $val The defenderScanMappedNetworkDrivesDuringFullScan * * @return Windows10GeneralConfiguration */ public function setDefenderScanMappedNetworkDrivesDuringFullScan($val) { $this->_propDict["defenderScanMappedNetworkDrivesDuringFullScan"] = boolval($val); return $this; } /** * Gets the defenderScanMaxCpu * Max CPU usage percentage during scan. Valid values 0 to 100 * * @return int|null The defenderScanMaxCpu */ public function getDefenderScanMaxCpu() { if (array_key_exists("defenderScanMaxCpu", $this->_propDict)) { return $this->_propDict["defenderScanMaxCpu"]; } else { return null; } } /** * Sets the defenderScanMaxCpu * Max CPU usage percentage during scan. Valid values 0 to 100 * * @param int $val The defenderScanMaxCpu * * @return Windows10GeneralConfiguration */ public function setDefenderScanMaxCpu($val) { $this->_propDict["defenderScanMaxCpu"] = intval($val); return $this; } /** * Gets the defenderScanNetworkFiles * Indicates whether or not to scan files opened from a network folder. * * @return bool|null The defenderScanNetworkFiles */ public function getDefenderScanNetworkFiles() { if (array_key_exists("defenderScanNetworkFiles", $this->_propDict)) { return $this->_propDict["defenderScanNetworkFiles"]; } else { return null; } } /** * Sets the defenderScanNetworkFiles * Indicates whether or not to scan files opened from a network folder. * * @param bool $val The defenderScanNetworkFiles * * @return Windows10GeneralConfiguration */ public function setDefenderScanNetworkFiles($val) { $this->_propDict["defenderScanNetworkFiles"] = boolval($val); return $this; } /** * Gets the defenderScanRemovableDrivesDuringFullScan * Indicates whether or not to scan removable drives during full scan. * * @return bool|null The defenderScanRemovableDrivesDuringFullScan */ public function getDefenderScanRemovableDrivesDuringFullScan() { if (array_key_exists("defenderScanRemovableDrivesDuringFullScan", $this->_propDict)) { return $this->_propDict["defenderScanRemovableDrivesDuringFullScan"]; } else { return null; } } /** * Sets the defenderScanRemovableDrivesDuringFullScan * Indicates whether or not to scan removable drives during full scan. * * @param bool $val The defenderScanRemovableDrivesDuringFullScan * * @return Windows10GeneralConfiguration */ public function setDefenderScanRemovableDrivesDuringFullScan($val) { $this->_propDict["defenderScanRemovableDrivesDuringFullScan"] = boolval($val); return $this; } /** * Gets the defenderScanScriptsLoadedInInternetExplorer * Indicates whether or not to scan scripts loaded in Internet Explorer browser. * * @return bool|null The defenderScanScriptsLoadedInInternetExplorer */ public function getDefenderScanScriptsLoadedInInternetExplorer() { if (array_key_exists("defenderScanScriptsLoadedInInternetExplorer", $this->_propDict)) { return $this->_propDict["defenderScanScriptsLoadedInInternetExplorer"]; } else { return null; } } /** * Sets the defenderScanScriptsLoadedInInternetExplorer * Indicates whether or not to scan scripts loaded in Internet Explorer browser. * * @param bool $val The defenderScanScriptsLoadedInInternetExplorer * * @return Windows10GeneralConfiguration */ public function setDefenderScanScriptsLoadedInInternetExplorer($val) { $this->_propDict["defenderScanScriptsLoadedInInternetExplorer"] = boolval($val); return $this; } /** * Gets the defenderScanType * The defender system scan type. Possible values are: userDefined, disabled, quick, full. * * @return DefenderScanType|null The defenderScanType */ public function getDefenderScanType() { if (array_key_exists("defenderScanType", $this->_propDict)) { if (is_a($this->_propDict["defenderScanType"], "\Beta\Microsoft\Graph\Model\DefenderScanType") || is_null($this->_propDict["defenderScanType"])) { return $this->_propDict["defenderScanType"]; } else { $this->_propDict["defenderScanType"] = new DefenderScanType($this->_propDict["defenderScanType"]); return $this->_propDict["defenderScanType"]; } } return null; } /** * Sets the defenderScanType * The defender system scan type. Possible values are: userDefined, disabled, quick, full. * * @param DefenderScanType $val The defenderScanType * * @return Windows10GeneralConfiguration */ public function setDefenderScanType($val) { $this->_propDict["defenderScanType"] = $val; return $this; } /** * Gets the defenderScheduledQuickScanTime * The time to perform a daily quick scan. * * @return TimeOfDay|null The defenderScheduledQuickScanTime */ public function getDefenderScheduledQuickScanTime() { if (array_key_exists("defenderScheduledQuickScanTime", $this->_propDict)) { if (is_a($this->_propDict["defenderScheduledQuickScanTime"], "\Beta\Microsoft\Graph\Model\TimeOfDay") || is_null($this->_propDict["defenderScheduledQuickScanTime"])) { return $this->_propDict["defenderScheduledQuickScanTime"]; } else { $this->_propDict["defenderScheduledQuickScanTime"] = new TimeOfDay($this->_propDict["defenderScheduledQuickScanTime"]); return $this->_propDict["defenderScheduledQuickScanTime"]; } } return null; } /** * Sets the defenderScheduledQuickScanTime * The time to perform a daily quick scan. * * @param TimeOfDay $val The defenderScheduledQuickScanTime * * @return Windows10GeneralConfiguration */ public function setDefenderScheduledQuickScanTime($val) { $this->_propDict["defenderScheduledQuickScanTime"] = $val; return $this; } /** * Gets the defenderScheduledScanTime * The defender time for the system scan. * * @return TimeOfDay|null The defenderScheduledScanTime */ public function getDefenderScheduledScanTime() { if (array_key_exists("defenderScheduledScanTime", $this->_propDict)) { if (is_a($this->_propDict["defenderScheduledScanTime"], "\Beta\Microsoft\Graph\Model\TimeOfDay") || is_null($this->_propDict["defenderScheduledScanTime"])) { return $this->_propDict["defenderScheduledScanTime"]; } else { $this->_propDict["defenderScheduledScanTime"] = new TimeOfDay($this->_propDict["defenderScheduledScanTime"]); return $this->_propDict["defenderScheduledScanTime"]; } } return null; } /** * Sets the defenderScheduledScanTime * The defender time for the system scan. * * @param TimeOfDay $val The defenderScheduledScanTime * * @return Windows10GeneralConfiguration */ public function setDefenderScheduledScanTime($val) { $this->_propDict["defenderScheduledScanTime"] = $val; return $this; } /** * Gets the defenderScheduleScanEnableLowCpuPriority * When enabled, low CPU priority will be used during scheduled scans. * * @return bool|null The defenderScheduleScanEnableLowCpuPriority */ public function getDefenderScheduleScanEnableLowCpuPriority() { if (array_key_exists("defenderScheduleScanEnableLowCpuPriority", $this->_propDict)) { return $this->_propDict["defenderScheduleScanEnableLowCpuPriority"]; } else { return null; } } /** * Sets the defenderScheduleScanEnableLowCpuPriority * When enabled, low CPU priority will be used during scheduled scans. * * @param bool $val The defenderScheduleScanEnableLowCpuPriority * * @return Windows10GeneralConfiguration */ public function setDefenderScheduleScanEnableLowCpuPriority($val) { $this->_propDict["defenderScheduleScanEnableLowCpuPriority"] = boolval($val); return $this; } /** * Gets the defenderSignatureUpdateIntervalInHours * The signature update interval in hours. Specify 0 not to check. Valid values 0 to 24 * * @return int|null The defenderSignatureUpdateIntervalInHours */ public function getDefenderSignatureUpdateIntervalInHours() { if (array_key_exists("defenderSignatureUpdateIntervalInHours", $this->_propDict)) { return $this->_propDict["defenderSignatureUpdateIntervalInHours"]; } else { return null; } } /** * Sets the defenderSignatureUpdateIntervalInHours * The signature update interval in hours. Specify 0 not to check. Valid values 0 to 24 * * @param int $val The defenderSignatureUpdateIntervalInHours * * @return Windows10GeneralConfiguration */ public function setDefenderSignatureUpdateIntervalInHours($val) { $this->_propDict["defenderSignatureUpdateIntervalInHours"] = intval($val); return $this; } /** * Gets the defenderSubmitSamplesConsentType * Checks for the user consent level in Windows Defender to send data. Possible values are: sendSafeSamplesAutomatically, alwaysPrompt, neverSend, sendAllSamplesAutomatically. * * @return DefenderSubmitSamplesConsentType|null The defenderSubmitSamplesConsentType */ public function getDefenderSubmitSamplesConsentType() { if (array_key_exists("defenderSubmitSamplesConsentType", $this->_propDict)) { if (is_a($this->_propDict["defenderSubmitSamplesConsentType"], "\Beta\Microsoft\Graph\Model\DefenderSubmitSamplesConsentType") || is_null($this->_propDict["defenderSubmitSamplesConsentType"])) { return $this->_propDict["defenderSubmitSamplesConsentType"]; } else { $this->_propDict["defenderSubmitSamplesConsentType"] = new DefenderSubmitSamplesConsentType($this->_propDict["defenderSubmitSamplesConsentType"]); return $this->_propDict["defenderSubmitSamplesConsentType"]; } } return null; } /** * Sets the defenderSubmitSamplesConsentType * Checks for the user consent level in Windows Defender to send data. Possible values are: sendSafeSamplesAutomatically, alwaysPrompt, neverSend, sendAllSamplesAutomatically. * * @param DefenderSubmitSamplesConsentType $val The defenderSubmitSamplesConsentType * * @return Windows10GeneralConfiguration */ public function setDefenderSubmitSamplesConsentType($val) { $this->_propDict["defenderSubmitSamplesConsentType"] = $val; return $this; } /** * Gets the defenderSystemScanSchedule * Defender day of the week for the system scan. Possible values are: userDefined, everyday, sunday, monday, tuesday, wednesday, thursday, friday, saturday, noScheduledScan. * * @return WeeklySchedule|null The defenderSystemScanSchedule */ public function getDefenderSystemScanSchedule() { if (array_key_exists("defenderSystemScanSchedule", $this->_propDict)) { if (is_a($this->_propDict["defenderSystemScanSchedule"], "\Beta\Microsoft\Graph\Model\WeeklySchedule") || is_null($this->_propDict["defenderSystemScanSchedule"])) { return $this->_propDict["defenderSystemScanSchedule"]; } else { $this->_propDict["defenderSystemScanSchedule"] = new WeeklySchedule($this->_propDict["defenderSystemScanSchedule"]); return $this->_propDict["defenderSystemScanSchedule"]; } } return null; } /** * Sets the defenderSystemScanSchedule * Defender day of the week for the system scan. Possible values are: userDefined, everyday, sunday, monday, tuesday, wednesday, thursday, friday, saturday, noScheduledScan. * * @param WeeklySchedule $val The defenderSystemScanSchedule * * @return Windows10GeneralConfiguration */ public function setDefenderSystemScanSchedule($val) { $this->_propDict["defenderSystemScanSchedule"] = $val; return $this; } /** * Gets the developerUnlockSetting * Indicates whether or not to allow developer unlock. Possible values are: notConfigured, blocked, allowed. * * @return StateManagementSetting|null The developerUnlockSetting */ public function getDeveloperUnlockSetting() { if (array_key_exists("developerUnlockSetting", $this->_propDict)) { if (is_a($this->_propDict["developerUnlockSetting"], "\Beta\Microsoft\Graph\Model\StateManagementSetting") || is_null($this->_propDict["developerUnlockSetting"])) { return $this->_propDict["developerUnlockSetting"]; } else { $this->_propDict["developerUnlockSetting"] = new StateManagementSetting($this->_propDict["developerUnlockSetting"]); return $this->_propDict["developerUnlockSetting"]; } } return null; } /** * Sets the developerUnlockSetting * Indicates whether or not to allow developer unlock. Possible values are: notConfigured, blocked, allowed. * * @param StateManagementSetting $val The developerUnlockSetting * * @return Windows10GeneralConfiguration */ public function setDeveloperUnlockSetting($val) { $this->_propDict["developerUnlockSetting"] = $val; return $this; } /** * Gets the deviceManagementBlockFactoryResetOnMobile * Indicates whether or not to Block the user from resetting their phone. * * @return bool|null The deviceManagementBlockFactoryResetOnMobile */ public function getDeviceManagementBlockFactoryResetOnMobile() { if (array_key_exists("deviceManagementBlockFactoryResetOnMobile", $this->_propDict)) { return $this->_propDict["deviceManagementBlockFactoryResetOnMobile"]; } else { return null; } } /** * Sets the deviceManagementBlockFactoryResetOnMobile * Indicates whether or not to Block the user from resetting their phone. * * @param bool $val The deviceManagementBlockFactoryResetOnMobile * * @return Windows10GeneralConfiguration */ public function setDeviceManagementBlockFactoryResetOnMobile($val) { $this->_propDict["deviceManagementBlockFactoryResetOnMobile"] = boolval($val); return $this; } /** * Gets the deviceManagementBlockManualUnenroll * Indicates whether or not to Block the user from doing manual un-enrollment from device management. * * @return bool|null The deviceManagementBlockManualUnenroll */ public function getDeviceManagementBlockManualUnenroll() { if (array_key_exists("deviceManagementBlockManualUnenroll", $this->_propDict)) { return $this->_propDict["deviceManagementBlockManualUnenroll"]; } else { return null; } } /** * Sets the deviceManagementBlockManualUnenroll * Indicates whether or not to Block the user from doing manual un-enrollment from device management. * * @param bool $val The deviceManagementBlockManualUnenroll * * @return Windows10GeneralConfiguration */ public function setDeviceManagementBlockManualUnenroll($val) { $this->_propDict["deviceManagementBlockManualUnenroll"] = boolval($val); return $this; } /** * Gets the diagnosticsDataSubmissionMode * Gets or sets a value allowing the device to send diagnostic and usage telemetry data, such as Watson. Possible values are: userDefined, none, basic, enhanced, full. * * @return DiagnosticDataSubmissionMode|null The diagnosticsDataSubmissionMode */ public function getDiagnosticsDataSubmissionMode() { if (array_key_exists("diagnosticsDataSubmissionMode", $this->_propDict)) { if (is_a($this->_propDict["diagnosticsDataSubmissionMode"], "\Beta\Microsoft\Graph\Model\DiagnosticDataSubmissionMode") || is_null($this->_propDict["diagnosticsDataSubmissionMode"])) { return $this->_propDict["diagnosticsDataSubmissionMode"]; } else { $this->_propDict["diagnosticsDataSubmissionMode"] = new DiagnosticDataSubmissionMode($this->_propDict["diagnosticsDataSubmissionMode"]); return $this->_propDict["diagnosticsDataSubmissionMode"]; } } return null; } /** * Sets the diagnosticsDataSubmissionMode * Gets or sets a value allowing the device to send diagnostic and usage telemetry data, such as Watson. Possible values are: userDefined, none, basic, enhanced, full. * * @param DiagnosticDataSubmissionMode $val The diagnosticsDataSubmissionMode * * @return Windows10GeneralConfiguration */ public function setDiagnosticsDataSubmissionMode($val) { $this->_propDict["diagnosticsDataSubmissionMode"] = $val; return $this; } /** * Gets the displayAppListWithGdiDPIScalingTurnedOff * List of legacy applications that have GDI DPI Scaling turned off. * * @return string|null The displayAppListWithGdiDPIScalingTurnedOff */ public function getDisplayAppListWithGdiDPIScalingTurnedOff() { if (array_key_exists("displayAppListWithGdiDPIScalingTurnedOff", $this->_propDict)) { return $this->_propDict["displayAppListWithGdiDPIScalingTurnedOff"]; } else { return null; } } /** * Sets the displayAppListWithGdiDPIScalingTurnedOff * List of legacy applications that have GDI DPI Scaling turned off. * * @param string $val The displayAppListWithGdiDPIScalingTurnedOff * * @return Windows10GeneralConfiguration */ public function setDisplayAppListWithGdiDPIScalingTurnedOff($val) { $this->_propDict["displayAppListWithGdiDPIScalingTurnedOff"] = $val; return $this; } /** * Gets the displayAppListWithGdiDPIScalingTurnedOn * List of legacy applications that have GDI DPI Scaling turned on. * * @return string|null The displayAppListWithGdiDPIScalingTurnedOn */ public function getDisplayAppListWithGdiDPIScalingTurnedOn() { if (array_key_exists("displayAppListWithGdiDPIScalingTurnedOn", $this->_propDict)) { return $this->_propDict["displayAppListWithGdiDPIScalingTurnedOn"]; } else { return null; } } /** * Sets the displayAppListWithGdiDPIScalingTurnedOn * List of legacy applications that have GDI DPI Scaling turned on. * * @param string $val The displayAppListWithGdiDPIScalingTurnedOn * * @return Windows10GeneralConfiguration */ public function setDisplayAppListWithGdiDPIScalingTurnedOn($val) { $this->_propDict["displayAppListWithGdiDPIScalingTurnedOn"] = $val; return $this; } /** * Gets the edgeAllowStartPagesModification * Allow users to change Start pages on Edge. Use the EdgeHomepageUrls to specify the Start pages that the user would see by default when they open Edge. * * @return bool|null The edgeAllowStartPagesModification */ public function getEdgeAllowStartPagesModification() { if (array_key_exists("edgeAllowStartPagesModification", $this->_propDict)) { return $this->_propDict["edgeAllowStartPagesModification"]; } else { return null; } } /** * Sets the edgeAllowStartPagesModification * Allow users to change Start pages on Edge. Use the EdgeHomepageUrls to specify the Start pages that the user would see by default when they open Edge. * * @param bool $val The edgeAllowStartPagesModification * * @return Windows10GeneralConfiguration */ public function setEdgeAllowStartPagesModification($val) { $this->_propDict["edgeAllowStartPagesModification"] = boolval($val); return $this; } /** * Gets the edgeBlockAccessToAboutFlags * Indicates whether or not to prevent access to about flags on Edge browser. * * @return bool|null The edgeBlockAccessToAboutFlags */ public function getEdgeBlockAccessToAboutFlags() { if (array_key_exists("edgeBlockAccessToAboutFlags", $this->_propDict)) { return $this->_propDict["edgeBlockAccessToAboutFlags"]; } else { return null; } } /** * Sets the edgeBlockAccessToAboutFlags * Indicates whether or not to prevent access to about flags on Edge browser. * * @param bool $val The edgeBlockAccessToAboutFlags * * @return Windows10GeneralConfiguration */ public function setEdgeBlockAccessToAboutFlags($val) { $this->_propDict["edgeBlockAccessToAboutFlags"] = boolval($val); return $this; } /** * Gets the edgeBlockAddressBarDropdown * Block the address bar dropdown functionality in Microsoft Edge. Disable this settings to minimize network connections from Microsoft Edge to Microsoft services. * * @return bool|null The edgeBlockAddressBarDropdown */ public function getEdgeBlockAddressBarDropdown() { if (array_key_exists("edgeBlockAddressBarDropdown", $this->_propDict)) { return $this->_propDict["edgeBlockAddressBarDropdown"]; } else { return null; } } /** * Sets the edgeBlockAddressBarDropdown * Block the address bar dropdown functionality in Microsoft Edge. Disable this settings to minimize network connections from Microsoft Edge to Microsoft services. * * @param bool $val The edgeBlockAddressBarDropdown * * @return Windows10GeneralConfiguration */ public function setEdgeBlockAddressBarDropdown($val) { $this->_propDict["edgeBlockAddressBarDropdown"] = boolval($val); return $this; } /** * Gets the edgeBlockAutofill * Indicates whether or not to block auto fill. * * @return bool|null The edgeBlockAutofill */ public function getEdgeBlockAutofill() { if (array_key_exists("edgeBlockAutofill", $this->_propDict)) { return $this->_propDict["edgeBlockAutofill"]; } else { return null; } } /** * Sets the edgeBlockAutofill * Indicates whether or not to block auto fill. * * @param bool $val The edgeBlockAutofill * * @return Windows10GeneralConfiguration */ public function setEdgeBlockAutofill($val) { $this->_propDict["edgeBlockAutofill"] = boolval($val); return $this; } /** * Gets the edgeBlockCompatibilityList * Block Microsoft compatibility list in Microsoft Edge. This list from Microsoft helps Edge properly display sites with known compatibility issues. * * @return bool|null The edgeBlockCompatibilityList */ public function getEdgeBlockCompatibilityList() { if (array_key_exists("edgeBlockCompatibilityList", $this->_propDict)) { return $this->_propDict["edgeBlockCompatibilityList"]; } else { return null; } } /** * Sets the edgeBlockCompatibilityList * Block Microsoft compatibility list in Microsoft Edge. This list from Microsoft helps Edge properly display sites with known compatibility issues. * * @param bool $val The edgeBlockCompatibilityList * * @return Windows10GeneralConfiguration */ public function setEdgeBlockCompatibilityList($val) { $this->_propDict["edgeBlockCompatibilityList"] = boolval($val); return $this; } /** * Gets the edgeBlockDeveloperTools * Indicates whether or not to block developer tools in the Edge browser. * * @return bool|null The edgeBlockDeveloperTools */ public function getEdgeBlockDeveloperTools() { if (array_key_exists("edgeBlockDeveloperTools", $this->_propDict)) { return $this->_propDict["edgeBlockDeveloperTools"]; } else { return null; } } /** * Sets the edgeBlockDeveloperTools * Indicates whether or not to block developer tools in the Edge browser. * * @param bool $val The edgeBlockDeveloperTools * * @return Windows10GeneralConfiguration */ public function setEdgeBlockDeveloperTools($val) { $this->_propDict["edgeBlockDeveloperTools"] = boolval($val); return $this; } /** * Gets the edgeBlocked * Indicates whether or not to Block the user from using the Edge browser. * * @return bool|null The edgeBlocked */ public function getEdgeBlocked() { if (array_key_exists("edgeBlocked", $this->_propDict)) { return $this->_propDict["edgeBlocked"]; } else { return null; } } /** * Sets the edgeBlocked * Indicates whether or not to Block the user from using the Edge browser. * * @param bool $val The edgeBlocked * * @return Windows10GeneralConfiguration */ public function setEdgeBlocked($val) { $this->_propDict["edgeBlocked"] = boolval($val); return $this; } /** * Gets the edgeBlockEditFavorites * Indicates whether or not to Block the user from making changes to Favorites. * * @return bool|null The edgeBlockEditFavorites */ public function getEdgeBlockEditFavorites() { if (array_key_exists("edgeBlockEditFavorites", $this->_propDict)) { return $this->_propDict["edgeBlockEditFavorites"]; } else { return null; } } /** * Sets the edgeBlockEditFavorites * Indicates whether or not to Block the user from making changes to Favorites. * * @param bool $val The edgeBlockEditFavorites * * @return Windows10GeneralConfiguration */ public function setEdgeBlockEditFavorites($val) { $this->_propDict["edgeBlockEditFavorites"] = boolval($val); return $this; } /** * Gets the edgeBlockExtensions * Indicates whether or not to block extensions in the Edge browser. * * @return bool|null The edgeBlockExtensions */ public function getEdgeBlockExtensions() { if (array_key_exists("edgeBlockExtensions", $this->_propDict)) { return $this->_propDict["edgeBlockExtensions"]; } else { return null; } } /** * Sets the edgeBlockExtensions * Indicates whether or not to block extensions in the Edge browser. * * @param bool $val The edgeBlockExtensions * * @return Windows10GeneralConfiguration */ public function setEdgeBlockExtensions($val) { $this->_propDict["edgeBlockExtensions"] = boolval($val); return $this; } /** * Gets the edgeBlockFullScreenMode * Allow or prevent Edge from entering the full screen mode. * * @return bool|null The edgeBlockFullScreenMode */ public function getEdgeBlockFullScreenMode() { if (array_key_exists("edgeBlockFullScreenMode", $this->_propDict)) { return $this->_propDict["edgeBlockFullScreenMode"]; } else { return null; } } /** * Sets the edgeBlockFullScreenMode * Allow or prevent Edge from entering the full screen mode. * * @param bool $val The edgeBlockFullScreenMode * * @return Windows10GeneralConfiguration */ public function setEdgeBlockFullScreenMode($val) { $this->_propDict["edgeBlockFullScreenMode"] = boolval($val); return $this; } /** * Gets the edgeBlockInPrivateBrowsing * Indicates whether or not to block InPrivate browsing on corporate networks, in the Edge browser. * * @return bool|null The edgeBlockInPrivateBrowsing */ public function getEdgeBlockInPrivateBrowsing() { if (array_key_exists("edgeBlockInPrivateBrowsing", $this->_propDict)) { return $this->_propDict["edgeBlockInPrivateBrowsing"]; } else { return null; } } /** * Sets the edgeBlockInPrivateBrowsing * Indicates whether or not to block InPrivate browsing on corporate networks, in the Edge browser. * * @param bool $val The edgeBlockInPrivateBrowsing * * @return Windows10GeneralConfiguration */ public function setEdgeBlockInPrivateBrowsing($val) { $this->_propDict["edgeBlockInPrivateBrowsing"] = boolval($val); return $this; } /** * Gets the edgeBlockJavaScript * Indicates whether or not to Block the user from using JavaScript. * * @return bool|null The edgeBlockJavaScript */ public function getEdgeBlockJavaScript() { if (array_key_exists("edgeBlockJavaScript", $this->_propDict)) { return $this->_propDict["edgeBlockJavaScript"]; } else { return null; } } /** * Sets the edgeBlockJavaScript * Indicates whether or not to Block the user from using JavaScript. * * @param bool $val The edgeBlockJavaScript * * @return Windows10GeneralConfiguration */ public function setEdgeBlockJavaScript($val) { $this->_propDict["edgeBlockJavaScript"] = boolval($val); return $this; } /** * Gets the edgeBlockLiveTileDataCollection * Block the collection of information by Microsoft for live tile creation when users pin a site to Start from Microsoft Edge. * * @return bool|null The edgeBlockLiveTileDataCollection */ public function getEdgeBlockLiveTileDataCollection() { if (array_key_exists("edgeBlockLiveTileDataCollection", $this->_propDict)) { return $this->_propDict["edgeBlockLiveTileDataCollection"]; } else { return null; } } /** * Sets the edgeBlockLiveTileDataCollection * Block the collection of information by Microsoft for live tile creation when users pin a site to Start from Microsoft Edge. * * @param bool $val The edgeBlockLiveTileDataCollection * * @return Windows10GeneralConfiguration */ public function setEdgeBlockLiveTileDataCollection($val) { $this->_propDict["edgeBlockLiveTileDataCollection"] = boolval($val); return $this; } /** * Gets the edgeBlockPasswordManager * Indicates whether or not to Block password manager. * * @return bool|null The edgeBlockPasswordManager */ public function getEdgeBlockPasswordManager() { if (array_key_exists("edgeBlockPasswordManager", $this->_propDict)) { return $this->_propDict["edgeBlockPasswordManager"]; } else { return null; } } /** * Sets the edgeBlockPasswordManager * Indicates whether or not to Block password manager. * * @param bool $val The edgeBlockPasswordManager * * @return Windows10GeneralConfiguration */ public function setEdgeBlockPasswordManager($val) { $this->_propDict["edgeBlockPasswordManager"] = boolval($val); return $this; } /** * Gets the edgeBlockPopups * Indicates whether or not to block popups. * * @return bool|null The edgeBlockPopups */ public function getEdgeBlockPopups() { if (array_key_exists("edgeBlockPopups", $this->_propDict)) { return $this->_propDict["edgeBlockPopups"]; } else { return null; } } /** * Sets the edgeBlockPopups * Indicates whether or not to block popups. * * @param bool $val The edgeBlockPopups * * @return Windows10GeneralConfiguration */ public function setEdgeBlockPopups($val) { $this->_propDict["edgeBlockPopups"] = boolval($val); return $this; } /** * Gets the edgeBlockPrelaunch * Decide whether Microsoft Edge is prelaunched at Windows startup. * * @return bool|null The edgeBlockPrelaunch */ public function getEdgeBlockPrelaunch() { if (array_key_exists("edgeBlockPrelaunch", $this->_propDict)) { return $this->_propDict["edgeBlockPrelaunch"]; } else { return null; } } /** * Sets the edgeBlockPrelaunch * Decide whether Microsoft Edge is prelaunched at Windows startup. * * @param bool $val The edgeBlockPrelaunch * * @return Windows10GeneralConfiguration */ public function setEdgeBlockPrelaunch($val) { $this->_propDict["edgeBlockPrelaunch"] = boolval($val); return $this; } /** * Gets the edgeBlockPrinting * Configure Edge to allow or block printing. * * @return bool|null The edgeBlockPrinting */ public function getEdgeBlockPrinting() { if (array_key_exists("edgeBlockPrinting", $this->_propDict)) { return $this->_propDict["edgeBlockPrinting"]; } else { return null; } } /** * Sets the edgeBlockPrinting * Configure Edge to allow or block printing. * * @param bool $val The edgeBlockPrinting * * @return Windows10GeneralConfiguration */ public function setEdgeBlockPrinting($val) { $this->_propDict["edgeBlockPrinting"] = boolval($val); return $this; } /** * Gets the edgeBlockSavingHistory * Configure Edge to allow browsing history to be saved or to never save browsing history. * * @return bool|null The edgeBlockSavingHistory */ public function getEdgeBlockSavingHistory() { if (array_key_exists("edgeBlockSavingHistory", $this->_propDict)) { return $this->_propDict["edgeBlockSavingHistory"]; } else { return null; } } /** * Sets the edgeBlockSavingHistory * Configure Edge to allow browsing history to be saved or to never save browsing history. * * @param bool $val The edgeBlockSavingHistory * * @return Windows10GeneralConfiguration */ public function setEdgeBlockSavingHistory($val) { $this->_propDict["edgeBlockSavingHistory"] = boolval($val); return $this; } /** * Gets the edgeBlockSearchEngineCustomization * Indicates whether or not to block the user from adding new search engine or changing the default search engine. * * @return bool|null The edgeBlockSearchEngineCustomization */ public function getEdgeBlockSearchEngineCustomization() { if (array_key_exists("edgeBlockSearchEngineCustomization", $this->_propDict)) { return $this->_propDict["edgeBlockSearchEngineCustomization"]; } else { return null; } } /** * Sets the edgeBlockSearchEngineCustomization * Indicates whether or not to block the user from adding new search engine or changing the default search engine. * * @param bool $val The edgeBlockSearchEngineCustomization * * @return Windows10GeneralConfiguration */ public function setEdgeBlockSearchEngineCustomization($val) { $this->_propDict["edgeBlockSearchEngineCustomization"] = boolval($val); return $this; } /** * Gets the edgeBlockSearchSuggestions * Indicates whether or not to block the user from using the search suggestions in the address bar. * * @return bool|null The edgeBlockSearchSuggestions */ public function getEdgeBlockSearchSuggestions() { if (array_key_exists("edgeBlockSearchSuggestions", $this->_propDict)) { return $this->_propDict["edgeBlockSearchSuggestions"]; } else { return null; } } /** * Sets the edgeBlockSearchSuggestions * Indicates whether or not to block the user from using the search suggestions in the address bar. * * @param bool $val The edgeBlockSearchSuggestions * * @return Windows10GeneralConfiguration */ public function setEdgeBlockSearchSuggestions($val) { $this->_propDict["edgeBlockSearchSuggestions"] = boolval($val); return $this; } /** * Gets the edgeBlockSendingDoNotTrackHeader * Indicates whether or not to Block the user from sending the do not track header. * * @return bool|null The edgeBlockSendingDoNotTrackHeader */ public function getEdgeBlockSendingDoNotTrackHeader() { if (array_key_exists("edgeBlockSendingDoNotTrackHeader", $this->_propDict)) { return $this->_propDict["edgeBlockSendingDoNotTrackHeader"]; } else { return null; } } /** * Sets the edgeBlockSendingDoNotTrackHeader * Indicates whether or not to Block the user from sending the do not track header. * * @param bool $val The edgeBlockSendingDoNotTrackHeader * * @return Windows10GeneralConfiguration */ public function setEdgeBlockSendingDoNotTrackHeader($val) { $this->_propDict["edgeBlockSendingDoNotTrackHeader"] = boolval($val); return $this; } /** * Gets the edgeBlockSendingIntranetTrafficToInternetExplorer * Indicates whether or not to switch the intranet traffic from Edge to Internet Explorer. Note: the name of this property is misleading; the property is obsolete, use EdgeSendIntranetTrafficToInternetExplorer instead. * * @return bool|null The edgeBlockSendingIntranetTrafficToInternetExplorer */ public function getEdgeBlockSendingIntranetTrafficToInternetExplorer() { if (array_key_exists("edgeBlockSendingIntranetTrafficToInternetExplorer", $this->_propDict)) { return $this->_propDict["edgeBlockSendingIntranetTrafficToInternetExplorer"]; } else { return null; } } /** * Sets the edgeBlockSendingIntranetTrafficToInternetExplorer * Indicates whether or not to switch the intranet traffic from Edge to Internet Explorer. Note: the name of this property is misleading; the property is obsolete, use EdgeSendIntranetTrafficToInternetExplorer instead. * * @param bool $val The edgeBlockSendingIntranetTrafficToInternetExplorer * * @return Windows10GeneralConfiguration */ public function setEdgeBlockSendingIntranetTrafficToInternetExplorer($val) { $this->_propDict["edgeBlockSendingIntranetTrafficToInternetExplorer"] = boolval($val); return $this; } /** * Gets the edgeBlockSideloadingExtensions * Indicates whether the user can sideload extensions. * * @return bool|null The edgeBlockSideloadingExtensions */ public function getEdgeBlockSideloadingExtensions() { if (array_key_exists("edgeBlockSideloadingExtensions", $this->_propDict)) { return $this->_propDict["edgeBlockSideloadingExtensions"]; } else { return null; } } /** * Sets the edgeBlockSideloadingExtensions * Indicates whether the user can sideload extensions. * * @param bool $val The edgeBlockSideloadingExtensions * * @return Windows10GeneralConfiguration */ public function setEdgeBlockSideloadingExtensions($val) { $this->_propDict["edgeBlockSideloadingExtensions"] = boolval($val); return $this; } /** * Gets the edgeBlockTabPreloading * Configure whether Edge preloads the new tab page at Windows startup. * * @return bool|null The edgeBlockTabPreloading */ public function getEdgeBlockTabPreloading() { if (array_key_exists("edgeBlockTabPreloading", $this->_propDict)) { return $this->_propDict["edgeBlockTabPreloading"]; } else { return null; } } /** * Sets the edgeBlockTabPreloading * Configure whether Edge preloads the new tab page at Windows startup. * * @param bool $val The edgeBlockTabPreloading * * @return Windows10GeneralConfiguration */ public function setEdgeBlockTabPreloading($val) { $this->_propDict["edgeBlockTabPreloading"] = boolval($val); return $this; } /** * Gets the edgeBlockWebContentOnNewTabPage * Configure to load a blank page in Edge instead of the default New tab page and prevent users from changing it. * * @return bool|null The edgeBlockWebContentOnNewTabPage */ public function getEdgeBlockWebContentOnNewTabPage() { if (array_key_exists("edgeBlockWebContentOnNewTabPage", $this->_propDict)) { return $this->_propDict["edgeBlockWebContentOnNewTabPage"]; } else { return null; } } /** * Sets the edgeBlockWebContentOnNewTabPage * Configure to load a blank page in Edge instead of the default New tab page and prevent users from changing it. * * @param bool $val The edgeBlockWebContentOnNewTabPage * * @return Windows10GeneralConfiguration */ public function setEdgeBlockWebContentOnNewTabPage($val) { $this->_propDict["edgeBlockWebContentOnNewTabPage"] = boolval($val); return $this; } /** * Gets the edgeClearBrowsingDataOnExit * Clear browsing data on exiting Microsoft Edge. * * @return bool|null The edgeClearBrowsingDataOnExit */ public function getEdgeClearBrowsingDataOnExit() { if (array_key_exists("edgeClearBrowsingDataOnExit", $this->_propDict)) { return $this->_propDict["edgeClearBrowsingDataOnExit"]; } else { return null; } } /** * Sets the edgeClearBrowsingDataOnExit * Clear browsing data on exiting Microsoft Edge. * * @param bool $val The edgeClearBrowsingDataOnExit * * @return Windows10GeneralConfiguration */ public function setEdgeClearBrowsingDataOnExit($val) { $this->_propDict["edgeClearBrowsingDataOnExit"] = boolval($val); return $this; } /** * Gets the edgeCookiePolicy * Indicates which cookies to block in the Edge browser. Possible values are: userDefined, allow, blockThirdParty, blockAll. * * @return EdgeCookiePolicy|null The edgeCookiePolicy */ public function getEdgeCookiePolicy() { if (array_key_exists("edgeCookiePolicy", $this->_propDict)) { if (is_a($this->_propDict["edgeCookiePolicy"], "\Beta\Microsoft\Graph\Model\EdgeCookiePolicy") || is_null($this->_propDict["edgeCookiePolicy"])) { return $this->_propDict["edgeCookiePolicy"]; } else { $this->_propDict["edgeCookiePolicy"] = new EdgeCookiePolicy($this->_propDict["edgeCookiePolicy"]); return $this->_propDict["edgeCookiePolicy"]; } } return null; } /** * Sets the edgeCookiePolicy * Indicates which cookies to block in the Edge browser. Possible values are: userDefined, allow, blockThirdParty, blockAll. * * @param EdgeCookiePolicy $val The edgeCookiePolicy * * @return Windows10GeneralConfiguration */ public function setEdgeCookiePolicy($val) { $this->_propDict["edgeCookiePolicy"] = $val; return $this; } /** * Gets the edgeDisableFirstRunPage * Block the Microsoft web page that opens on the first use of Microsoft Edge. This policy allows enterprises, like those enrolled in zero emissions configurations, to block this page. * * @return bool|null The edgeDisableFirstRunPage */ public function getEdgeDisableFirstRunPage() { if (array_key_exists("edgeDisableFirstRunPage", $this->_propDict)) { return $this->_propDict["edgeDisableFirstRunPage"]; } else { return null; } } /** * Sets the edgeDisableFirstRunPage * Block the Microsoft web page that opens on the first use of Microsoft Edge. This policy allows enterprises, like those enrolled in zero emissions configurations, to block this page. * * @param bool $val The edgeDisableFirstRunPage * * @return Windows10GeneralConfiguration */ public function setEdgeDisableFirstRunPage($val) { $this->_propDict["edgeDisableFirstRunPage"] = boolval($val); return $this; } /** * Gets the edgeEnterpriseModeSiteListLocation * Indicates the enterprise mode site list location. Could be a local file, local network or http location. * * @return string|null The edgeEnterpriseModeSiteListLocation */ public function getEdgeEnterpriseModeSiteListLocation() { if (array_key_exists("edgeEnterpriseModeSiteListLocation", $this->_propDict)) { return $this->_propDict["edgeEnterpriseModeSiteListLocation"]; } else { return null; } } /** * Sets the edgeEnterpriseModeSiteListLocation * Indicates the enterprise mode site list location. Could be a local file, local network or http location. * * @param string $val The edgeEnterpriseModeSiteListLocation * * @return Windows10GeneralConfiguration */ public function setEdgeEnterpriseModeSiteListLocation($val) { $this->_propDict["edgeEnterpriseModeSiteListLocation"] = $val; return $this; } /** * Gets the edgeFavoritesBarVisibility * Get or set a value that specifies whether to set the favorites bar to always be visible or hidden on any page. Possible values are: notConfigured, hide, show. * * @return VisibilitySetting|null The edgeFavoritesBarVisibility */ public function getEdgeFavoritesBarVisibility() { if (array_key_exists("edgeFavoritesBarVisibility", $this->_propDict)) { if (is_a($this->_propDict["edgeFavoritesBarVisibility"], "\Beta\Microsoft\Graph\Model\VisibilitySetting") || is_null($this->_propDict["edgeFavoritesBarVisibility"])) { return $this->_propDict["edgeFavoritesBarVisibility"]; } else { $this->_propDict["edgeFavoritesBarVisibility"] = new VisibilitySetting($this->_propDict["edgeFavoritesBarVisibility"]); return $this->_propDict["edgeFavoritesBarVisibility"]; } } return null; } /** * Sets the edgeFavoritesBarVisibility * Get or set a value that specifies whether to set the favorites bar to always be visible or hidden on any page. Possible values are: notConfigured, hide, show. * * @param VisibilitySetting $val The edgeFavoritesBarVisibility * * @return Windows10GeneralConfiguration */ public function setEdgeFavoritesBarVisibility($val) { $this->_propDict["edgeFavoritesBarVisibility"] = $val; return $this; } /** * Gets the edgeFavoritesListLocation * The location of the favorites list to provision. Could be a local file, local network or http location. * * @return string|null The edgeFavoritesListLocation */ public function getEdgeFavoritesListLocation() { if (array_key_exists("edgeFavoritesListLocation", $this->_propDict)) { return $this->_propDict["edgeFavoritesListLocation"]; } else { return null; } } /** * Sets the edgeFavoritesListLocation * The location of the favorites list to provision. Could be a local file, local network or http location. * * @param string $val The edgeFavoritesListLocation * * @return Windows10GeneralConfiguration */ public function setEdgeFavoritesListLocation($val) { $this->_propDict["edgeFavoritesListLocation"] = $val; return $this; } /** * Gets the edgeFirstRunUrl * The first run URL for when Edge browser is opened for the first time. * * @return string|null The edgeFirstRunUrl */ public function getEdgeFirstRunUrl() { if (array_key_exists("edgeFirstRunUrl", $this->_propDict)) { return $this->_propDict["edgeFirstRunUrl"]; } else { return null; } } /** * Sets the edgeFirstRunUrl * The first run URL for when Edge browser is opened for the first time. * * @param string $val The edgeFirstRunUrl * * @return Windows10GeneralConfiguration */ public function setEdgeFirstRunUrl($val) { $this->_propDict["edgeFirstRunUrl"] = $val; return $this; } /** * Gets the edgeHomeButtonConfiguration * Causes the Home button to either hide, load the default Start page, load a New tab page, or a custom URL * * @return EdgeHomeButtonConfiguration|null The edgeHomeButtonConfiguration */ public function getEdgeHomeButtonConfiguration() { if (array_key_exists("edgeHomeButtonConfiguration", $this->_propDict)) { if (is_a($this->_propDict["edgeHomeButtonConfiguration"], "\Beta\Microsoft\Graph\Model\EdgeHomeButtonConfiguration") || is_null($this->_propDict["edgeHomeButtonConfiguration"])) { return $this->_propDict["edgeHomeButtonConfiguration"]; } else { $this->_propDict["edgeHomeButtonConfiguration"] = new EdgeHomeButtonConfiguration($this->_propDict["edgeHomeButtonConfiguration"]); return $this->_propDict["edgeHomeButtonConfiguration"]; } } return null; } /** * Sets the edgeHomeButtonConfiguration * Causes the Home button to either hide, load the default Start page, load a New tab page, or a custom URL * * @param EdgeHomeButtonConfiguration $val The edgeHomeButtonConfiguration * * @return Windows10GeneralConfiguration */ public function setEdgeHomeButtonConfiguration($val) { $this->_propDict["edgeHomeButtonConfiguration"] = $val; return $this; } /** * Gets the edgeHomeButtonConfigurationEnabled * Enable the Home button configuration. * * @return bool|null The edgeHomeButtonConfigurationEnabled */ public function getEdgeHomeButtonConfigurationEnabled() { if (array_key_exists("edgeHomeButtonConfigurationEnabled", $this->_propDict)) { return $this->_propDict["edgeHomeButtonConfigurationEnabled"]; } else { return null; } } /** * Sets the edgeHomeButtonConfigurationEnabled * Enable the Home button configuration. * * @param bool $val The edgeHomeButtonConfigurationEnabled * * @return Windows10GeneralConfiguration */ public function setEdgeHomeButtonConfigurationEnabled($val) { $this->_propDict["edgeHomeButtonConfigurationEnabled"] = boolval($val); return $this; } /** * Gets the edgeHomepageUrls * The list of URLs for homepages shodwn on MDM-enrolled devices on Edge browser. * * @return string|null The edgeHomepageUrls */ public function getEdgeHomepageUrls() { if (array_key_exists("edgeHomepageUrls", $this->_propDict)) { return $this->_propDict["edgeHomepageUrls"]; } else { return null; } } /** * Sets the edgeHomepageUrls * The list of URLs for homepages shodwn on MDM-enrolled devices on Edge browser. * * @param string $val The edgeHomepageUrls * * @return Windows10GeneralConfiguration */ public function setEdgeHomepageUrls($val) { $this->_propDict["edgeHomepageUrls"] = $val; return $this; } /** * Gets the edgeKioskModeRestriction * Controls how the Microsoft Edge settings are restricted based on the configure kiosk mode. Possible values are: notConfigured, digitalSignage, normalMode, publicBrowsingSingleApp, publicBrowsingMultiApp. * * @return EdgeKioskModeRestrictionType|null The edgeKioskModeRestriction */ public function getEdgeKioskModeRestriction() { if (array_key_exists("edgeKioskModeRestriction", $this->_propDict)) { if (is_a($this->_propDict["edgeKioskModeRestriction"], "\Beta\Microsoft\Graph\Model\EdgeKioskModeRestrictionType") || is_null($this->_propDict["edgeKioskModeRestriction"])) { return $this->_propDict["edgeKioskModeRestriction"]; } else { $this->_propDict["edgeKioskModeRestriction"] = new EdgeKioskModeRestrictionType($this->_propDict["edgeKioskModeRestriction"]); return $this->_propDict["edgeKioskModeRestriction"]; } } return null; } /** * Sets the edgeKioskModeRestriction * Controls how the Microsoft Edge settings are restricted based on the configure kiosk mode. Possible values are: notConfigured, digitalSignage, normalMode, publicBrowsingSingleApp, publicBrowsingMultiApp. * * @param EdgeKioskModeRestrictionType $val The edgeKioskModeRestriction * * @return Windows10GeneralConfiguration */ public function setEdgeKioskModeRestriction($val) { $this->_propDict["edgeKioskModeRestriction"] = $val; return $this; } /** * Gets the edgeKioskResetAfterIdleTimeInMinutes * Specifies the time in minutes from the last user activity before Microsoft Edge kiosk resets. Valid values are 0-1440. The default is 5. 0 indicates no reset. Valid values 0 to 1440 * * @return int|null The edgeKioskResetAfterIdleTimeInMinutes */ public function getEdgeKioskResetAfterIdleTimeInMinutes() { if (array_key_exists("edgeKioskResetAfterIdleTimeInMinutes", $this->_propDict)) { return $this->_propDict["edgeKioskResetAfterIdleTimeInMinutes"]; } else { return null; } } /** * Sets the edgeKioskResetAfterIdleTimeInMinutes * Specifies the time in minutes from the last user activity before Microsoft Edge kiosk resets. Valid values are 0-1440. The default is 5. 0 indicates no reset. Valid values 0 to 1440 * * @param int $val The edgeKioskResetAfterIdleTimeInMinutes * * @return Windows10GeneralConfiguration */ public function setEdgeKioskResetAfterIdleTimeInMinutes($val) { $this->_propDict["edgeKioskResetAfterIdleTimeInMinutes"] = intval($val); return $this; } /** * Gets the edgeNewTabPageURL * Specify the page opened when new tabs are created. * * @return string|null The edgeNewTabPageURL */ public function getEdgeNewTabPageURL() { if (array_key_exists("edgeNewTabPageURL", $this->_propDict)) { return $this->_propDict["edgeNewTabPageURL"]; } else { return null; } } /** * Sets the edgeNewTabPageURL * Specify the page opened when new tabs are created. * * @param string $val The edgeNewTabPageURL * * @return Windows10GeneralConfiguration */ public function setEdgeNewTabPageURL($val) { $this->_propDict["edgeNewTabPageURL"] = $val; return $this; } /** * Gets the edgeOpensWith * Specify what kind of pages are open at start. Possible values are: notConfigured, startPage, newTabPage, previousPages, specificPages. * * @return EdgeOpenOptions|null The edgeOpensWith */ public function getEdgeOpensWith() { if (array_key_exists("edgeOpensWith", $this->_propDict)) { if (is_a($this->_propDict["edgeOpensWith"], "\Beta\Microsoft\Graph\Model\EdgeOpenOptions") || is_null($this->_propDict["edgeOpensWith"])) { return $this->_propDict["edgeOpensWith"]; } else { $this->_propDict["edgeOpensWith"] = new EdgeOpenOptions($this->_propDict["edgeOpensWith"]); return $this->_propDict["edgeOpensWith"]; } } return null; } /** * Sets the edgeOpensWith * Specify what kind of pages are open at start. Possible values are: notConfigured, startPage, newTabPage, previousPages, specificPages. * * @param EdgeOpenOptions $val The edgeOpensWith * * @return Windows10GeneralConfiguration */ public function setEdgeOpensWith($val) { $this->_propDict["edgeOpensWith"] = $val; return $this; } /** * Gets the edgePreventCertificateErrorOverride * Allow or prevent users from overriding certificate errors. * * @return bool|null The edgePreventCertificateErrorOverride */ public function getEdgePreventCertificateErrorOverride() { if (array_key_exists("edgePreventCertificateErrorOverride", $this->_propDict)) { return $this->_propDict["edgePreventCertificateErrorOverride"]; } else { return null; } } /** * Sets the edgePreventCertificateErrorOverride * Allow or prevent users from overriding certificate errors. * * @param bool $val The edgePreventCertificateErrorOverride * * @return Windows10GeneralConfiguration */ public function setEdgePreventCertificateErrorOverride($val) { $this->_propDict["edgePreventCertificateErrorOverride"] = boolval($val); return $this; } /** * Gets the edgeRequiredExtensionPackageFamilyNames * Specify the list of package family names of browser extensions that are required and cannot be turned off by the user. * * @return string|null The edgeRequiredExtensionPackageFamilyNames */ public function getEdgeRequiredExtensionPackageFamilyNames() { if (array_key_exists("edgeRequiredExtensionPackageFamilyNames", $this->_propDict)) { return $this->_propDict["edgeRequiredExtensionPackageFamilyNames"]; } else { return null; } } /** * Sets the edgeRequiredExtensionPackageFamilyNames * Specify the list of package family names of browser extensions that are required and cannot be turned off by the user. * * @param string $val The edgeRequiredExtensionPackageFamilyNames * * @return Windows10GeneralConfiguration */ public function setEdgeRequiredExtensionPackageFamilyNames($val) { $this->_propDict["edgeRequiredExtensionPackageFamilyNames"] = $val; return $this; } /** * Gets the edgeRequireSmartScreen * Indicates whether or not to Require the user to use the smart screen filter. * * @return bool|null The edgeRequireSmartScreen */ public function getEdgeRequireSmartScreen() { if (array_key_exists("edgeRequireSmartScreen", $this->_propDict)) { return $this->_propDict["edgeRequireSmartScreen"]; } else { return null; } } /** * Sets the edgeRequireSmartScreen * Indicates whether or not to Require the user to use the smart screen filter. * * @param bool $val The edgeRequireSmartScreen * * @return Windows10GeneralConfiguration */ public function setEdgeRequireSmartScreen($val) { $this->_propDict["edgeRequireSmartScreen"] = boolval($val); return $this; } /** * Gets the edgeSearchEngine * Allows IT admins to set a default search engine for MDM-Controlled devices. Users can override this and change their default search engine provided the AllowSearchEngineCustomization policy is not set. * * @return EdgeSearchEngineBase|null The edgeSearchEngine */ public function getEdgeSearchEngine() { if (array_key_exists("edgeSearchEngine", $this->_propDict)) { if (is_a($this->_propDict["edgeSearchEngine"], "\Beta\Microsoft\Graph\Model\EdgeSearchEngineBase") || is_null($this->_propDict["edgeSearchEngine"])) { return $this->_propDict["edgeSearchEngine"]; } else { $this->_propDict["edgeSearchEngine"] = new EdgeSearchEngineBase($this->_propDict["edgeSearchEngine"]); return $this->_propDict["edgeSearchEngine"]; } } return null; } /** * Sets the edgeSearchEngine * Allows IT admins to set a default search engine for MDM-Controlled devices. Users can override this and change their default search engine provided the AllowSearchEngineCustomization policy is not set. * * @param EdgeSearchEngineBase $val The edgeSearchEngine * * @return Windows10GeneralConfiguration */ public function setEdgeSearchEngine($val) { $this->_propDict["edgeSearchEngine"] = $val; return $this; } /** * Gets the edgeSendIntranetTrafficToInternetExplorer * Indicates whether or not to switch the intranet traffic from Edge to Internet Explorer. * * @return bool|null The edgeSendIntranetTrafficToInternetExplorer */ public function getEdgeSendIntranetTrafficToInternetExplorer() { if (array_key_exists("edgeSendIntranetTrafficToInternetExplorer", $this->_propDict)) { return $this->_propDict["edgeSendIntranetTrafficToInternetExplorer"]; } else { return null; } } /** * Sets the edgeSendIntranetTrafficToInternetExplorer * Indicates whether or not to switch the intranet traffic from Edge to Internet Explorer. * * @param bool $val The edgeSendIntranetTrafficToInternetExplorer * * @return Windows10GeneralConfiguration */ public function setEdgeSendIntranetTrafficToInternetExplorer($val) { $this->_propDict["edgeSendIntranetTrafficToInternetExplorer"] = boolval($val); return $this; } /** * Gets the edgeShowMessageWhenOpeningInternetExplorerSites * Controls the message displayed by Edge before switching to Internet Explorer. Possible values are: notConfigured, disabled, enabled, keepGoing. * * @return InternetExplorerMessageSetting|null The edgeShowMessageWhenOpeningInternetExplorerSites */ public function getEdgeShowMessageWhenOpeningInternetExplorerSites() { if (array_key_exists("edgeShowMessageWhenOpeningInternetExplorerSites", $this->_propDict)) { if (is_a($this->_propDict["edgeShowMessageWhenOpeningInternetExplorerSites"], "\Beta\Microsoft\Graph\Model\InternetExplorerMessageSetting") || is_null($this->_propDict["edgeShowMessageWhenOpeningInternetExplorerSites"])) { return $this->_propDict["edgeShowMessageWhenOpeningInternetExplorerSites"]; } else { $this->_propDict["edgeShowMessageWhenOpeningInternetExplorerSites"] = new InternetExplorerMessageSetting($this->_propDict["edgeShowMessageWhenOpeningInternetExplorerSites"]); return $this->_propDict["edgeShowMessageWhenOpeningInternetExplorerSites"]; } } return null; } /** * Sets the edgeShowMessageWhenOpeningInternetExplorerSites * Controls the message displayed by Edge before switching to Internet Explorer. Possible values are: notConfigured, disabled, enabled, keepGoing. * * @param InternetExplorerMessageSetting $val The edgeShowMessageWhenOpeningInternetExplorerSites * * @return Windows10GeneralConfiguration */ public function setEdgeShowMessageWhenOpeningInternetExplorerSites($val) { $this->_propDict["edgeShowMessageWhenOpeningInternetExplorerSites"] = $val; return $this; } /** * Gets the edgeSyncFavoritesWithInternetExplorer * Enable favorites sync between Internet Explorer and Microsoft Edge. Additions, deletions, modifications and order changes to favorites are shared between browsers. * * @return bool|null The edgeSyncFavoritesWithInternetExplorer */ public function getEdgeSyncFavoritesWithInternetExplorer() { if (array_key_exists("edgeSyncFavoritesWithInternetExplorer", $this->_propDict)) { return $this->_propDict["edgeSyncFavoritesWithInternetExplorer"]; } else { return null; } } /** * Sets the edgeSyncFavoritesWithInternetExplorer * Enable favorites sync between Internet Explorer and Microsoft Edge. Additions, deletions, modifications and order changes to favorites are shared between browsers. * * @param bool $val The edgeSyncFavoritesWithInternetExplorer * * @return Windows10GeneralConfiguration */ public function setEdgeSyncFavoritesWithInternetExplorer($val) { $this->_propDict["edgeSyncFavoritesWithInternetExplorer"] = boolval($val); return $this; } /** * Gets the edgeTelemetryForMicrosoft365Analytics * Specifies what type of telemetry data (none, intranet, internet, both) is sent to Microsoft 365 Analytics. Possible values are: notConfigured, intranet, internet, intranetAndInternet. * * @return EdgeTelemetryMode|null The edgeTelemetryForMicrosoft365Analytics */ public function getEdgeTelemetryForMicrosoft365Analytics() { if (array_key_exists("edgeTelemetryForMicrosoft365Analytics", $this->_propDict)) { if (is_a($this->_propDict["edgeTelemetryForMicrosoft365Analytics"], "\Beta\Microsoft\Graph\Model\EdgeTelemetryMode") || is_null($this->_propDict["edgeTelemetryForMicrosoft365Analytics"])) { return $this->_propDict["edgeTelemetryForMicrosoft365Analytics"]; } else { $this->_propDict["edgeTelemetryForMicrosoft365Analytics"] = new EdgeTelemetryMode($this->_propDict["edgeTelemetryForMicrosoft365Analytics"]); return $this->_propDict["edgeTelemetryForMicrosoft365Analytics"]; } } return null; } /** * Sets the edgeTelemetryForMicrosoft365Analytics * Specifies what type of telemetry data (none, intranet, internet, both) is sent to Microsoft 365 Analytics. Possible values are: notConfigured, intranet, internet, intranetAndInternet. * * @param EdgeTelemetryMode $val The edgeTelemetryForMicrosoft365Analytics * * @return Windows10GeneralConfiguration */ public function setEdgeTelemetryForMicrosoft365Analytics($val) { $this->_propDict["edgeTelemetryForMicrosoft365Analytics"] = $val; return $this; } /** * Gets the enableAutomaticRedeployment * Allow users with administrative rights to delete all user data and settings using CTRL + Win + R at the device lock screen so that the device can be automatically re-configured and re-enrolled into management. * * @return bool|null The enableAutomaticRedeployment */ public function getEnableAutomaticRedeployment() { if (array_key_exists("enableAutomaticRedeployment", $this->_propDict)) { return $this->_propDict["enableAutomaticRedeployment"]; } else { return null; } } /** * Sets the enableAutomaticRedeployment * Allow users with administrative rights to delete all user data and settings using CTRL + Win + R at the device lock screen so that the device can be automatically re-configured and re-enrolled into management. * * @param bool $val The enableAutomaticRedeployment * * @return Windows10GeneralConfiguration */ public function setEnableAutomaticRedeployment($val) { $this->_propDict["enableAutomaticRedeployment"] = boolval($val); return $this; } /** * Gets the energySaverOnBatteryThresholdPercentage * This setting allows you to specify battery charge level at which Energy Saver is turned on. While on battery, Energy Saver is automatically turned on at (and below) the specified battery charge level. Valid input range (0-100). Valid values 0 to 100 * * @return int|null The energySaverOnBatteryThresholdPercentage */ public function getEnergySaverOnBatteryThresholdPercentage() { if (array_key_exists("energySaverOnBatteryThresholdPercentage", $this->_propDict)) { return $this->_propDict["energySaverOnBatteryThresholdPercentage"]; } else { return null; } } /** * Sets the energySaverOnBatteryThresholdPercentage * This setting allows you to specify battery charge level at which Energy Saver is turned on. While on battery, Energy Saver is automatically turned on at (and below) the specified battery charge level. Valid input range (0-100). Valid values 0 to 100 * * @param int $val The energySaverOnBatteryThresholdPercentage * * @return Windows10GeneralConfiguration */ public function setEnergySaverOnBatteryThresholdPercentage($val) { $this->_propDict["energySaverOnBatteryThresholdPercentage"] = intval($val); return $this; } /** * Gets the energySaverPluggedInThresholdPercentage * This setting allows you to specify battery charge level at which Energy Saver is turned on. While plugged in, Energy Saver is automatically turned on at (and below) the specified battery charge level. Valid input range (0-100). Valid values 0 to 100 * * @return int|null The energySaverPluggedInThresholdPercentage */ public function getEnergySaverPluggedInThresholdPercentage() { if (array_key_exists("energySaverPluggedInThresholdPercentage", $this->_propDict)) { return $this->_propDict["energySaverPluggedInThresholdPercentage"]; } else { return null; } } /** * Sets the energySaverPluggedInThresholdPercentage * This setting allows you to specify battery charge level at which Energy Saver is turned on. While plugged in, Energy Saver is automatically turned on at (and below) the specified battery charge level. Valid input range (0-100). Valid values 0 to 100 * * @param int $val The energySaverPluggedInThresholdPercentage * * @return Windows10GeneralConfiguration */ public function setEnergySaverPluggedInThresholdPercentage($val) { $this->_propDict["energySaverPluggedInThresholdPercentage"] = intval($val); return $this; } /** * Gets the enterpriseCloudPrintDiscoveryEndPoint * Endpoint for discovering cloud printers. * * @return string|null The enterpriseCloudPrintDiscoveryEndPoint */ public function getEnterpriseCloudPrintDiscoveryEndPoint() { if (array_key_exists("enterpriseCloudPrintDiscoveryEndPoint", $this->_propDict)) { return $this->_propDict["enterpriseCloudPrintDiscoveryEndPoint"]; } else { return null; } } /** * Sets the enterpriseCloudPrintDiscoveryEndPoint * Endpoint for discovering cloud printers. * * @param string $val The enterpriseCloudPrintDiscoveryEndPoint * * @return Windows10GeneralConfiguration */ public function setEnterpriseCloudPrintDiscoveryEndPoint($val) { $this->_propDict["enterpriseCloudPrintDiscoveryEndPoint"] = $val; return $this; } /** * Gets the enterpriseCloudPrintDiscoveryMaxLimit * Maximum number of printers that should be queried from a discovery endpoint. This is a mobile only setting. Valid values 1 to 65535 * * @return int|null The enterpriseCloudPrintDiscoveryMaxLimit */ public function getEnterpriseCloudPrintDiscoveryMaxLimit() { if (array_key_exists("enterpriseCloudPrintDiscoveryMaxLimit", $this->_propDict)) { return $this->_propDict["enterpriseCloudPrintDiscoveryMaxLimit"]; } else { return null; } } /** * Sets the enterpriseCloudPrintDiscoveryMaxLimit * Maximum number of printers that should be queried from a discovery endpoint. This is a mobile only setting. Valid values 1 to 65535 * * @param int $val The enterpriseCloudPrintDiscoveryMaxLimit * * @return Windows10GeneralConfiguration */ public function setEnterpriseCloudPrintDiscoveryMaxLimit($val) { $this->_propDict["enterpriseCloudPrintDiscoveryMaxLimit"] = intval($val); return $this; } /** * Gets the enterpriseCloudPrintMopriaDiscoveryResourceIdentifier * OAuth resource URI for printer discovery service as configured in Azure portal. * * @return string|null The enterpriseCloudPrintMopriaDiscoveryResourceIdentifier */ public function getEnterpriseCloudPrintMopriaDiscoveryResourceIdentifier() { if (array_key_exists("enterpriseCloudPrintMopriaDiscoveryResourceIdentifier", $this->_propDict)) { return $this->_propDict["enterpriseCloudPrintMopriaDiscoveryResourceIdentifier"]; } else { return null; } } /** * Sets the enterpriseCloudPrintMopriaDiscoveryResourceIdentifier * OAuth resource URI for printer discovery service as configured in Azure portal. * * @param string $val The enterpriseCloudPrintMopriaDiscoveryResourceIdentifier * * @return Windows10GeneralConfiguration */ public function setEnterpriseCloudPrintMopriaDiscoveryResourceIdentifier($val) { $this->_propDict["enterpriseCloudPrintMopriaDiscoveryResourceIdentifier"] = $val; return $this; } /** * Gets the enterpriseCloudPrintOAuthAuthority * Authentication endpoint for acquiring OAuth tokens. * * @return string|null The enterpriseCloudPrintOAuthAuthority */ public function getEnterpriseCloudPrintOAuthAuthority() { if (array_key_exists("enterpriseCloudPrintOAuthAuthority", $this->_propDict)) { return $this->_propDict["enterpriseCloudPrintOAuthAuthority"]; } else { return null; } } /** * Sets the enterpriseCloudPrintOAuthAuthority * Authentication endpoint for acquiring OAuth tokens. * * @param string $val The enterpriseCloudPrintOAuthAuthority * * @return Windows10GeneralConfiguration */ public function setEnterpriseCloudPrintOAuthAuthority($val) { $this->_propDict["enterpriseCloudPrintOAuthAuthority"] = $val; return $this; } /** * Gets the enterpriseCloudPrintOAuthClientIdentifier * GUID of a client application authorized to retrieve OAuth tokens from the OAuth Authority. * * @return string|null The enterpriseCloudPrintOAuthClientIdentifier */ public function getEnterpriseCloudPrintOAuthClientIdentifier() { if (array_key_exists("enterpriseCloudPrintOAuthClientIdentifier", $this->_propDict)) { return $this->_propDict["enterpriseCloudPrintOAuthClientIdentifier"]; } else { return null; } } /** * Sets the enterpriseCloudPrintOAuthClientIdentifier * GUID of a client application authorized to retrieve OAuth tokens from the OAuth Authority. * * @param string $val The enterpriseCloudPrintOAuthClientIdentifier * * @return Windows10GeneralConfiguration */ public function setEnterpriseCloudPrintOAuthClientIdentifier($val) { $this->_propDict["enterpriseCloudPrintOAuthClientIdentifier"] = $val; return $this; } /** * Gets the enterpriseCloudPrintResourceIdentifier * OAuth resource URI for print service as configured in the Azure portal. * * @return string|null The enterpriseCloudPrintResourceIdentifier */ public function getEnterpriseCloudPrintResourceIdentifier() { if (array_key_exists("enterpriseCloudPrintResourceIdentifier", $this->_propDict)) { return $this->_propDict["enterpriseCloudPrintResourceIdentifier"]; } else { return null; } } /** * Sets the enterpriseCloudPrintResourceIdentifier * OAuth resource URI for print service as configured in the Azure portal. * * @param string $val The enterpriseCloudPrintResourceIdentifier * * @return Windows10GeneralConfiguration */ public function setEnterpriseCloudPrintResourceIdentifier($val) { $this->_propDict["enterpriseCloudPrintResourceIdentifier"] = $val; return $this; } /** * Gets the experienceBlockDeviceDiscovery * Indicates whether or not to enable device discovery UX. * * @return bool|null The experienceBlockDeviceDiscovery */ public function getExperienceBlockDeviceDiscovery() { if (array_key_exists("experienceBlockDeviceDiscovery", $this->_propDict)) { return $this->_propDict["experienceBlockDeviceDiscovery"]; } else { return null; } } /** * Sets the experienceBlockDeviceDiscovery * Indicates whether or not to enable device discovery UX. * * @param bool $val The experienceBlockDeviceDiscovery * * @return Windows10GeneralConfiguration */ public function setExperienceBlockDeviceDiscovery($val) { $this->_propDict["experienceBlockDeviceDiscovery"] = boolval($val); return $this; } /** * Gets the experienceBlockErrorDialogWhenNoSIM * Indicates whether or not to allow the error dialog from displaying if no SIM card is detected. * * @return bool|null The experienceBlockErrorDialogWhenNoSIM */ public function getExperienceBlockErrorDialogWhenNoSIM() { if (array_key_exists("experienceBlockErrorDialogWhenNoSIM", $this->_propDict)) { return $this->_propDict["experienceBlockErrorDialogWhenNoSIM"]; } else { return null; } } /** * Sets the experienceBlockErrorDialogWhenNoSIM * Indicates whether or not to allow the error dialog from displaying if no SIM card is detected. * * @param bool $val The experienceBlockErrorDialogWhenNoSIM * * @return Windows10GeneralConfiguration */ public function setExperienceBlockErrorDialogWhenNoSIM($val) { $this->_propDict["experienceBlockErrorDialogWhenNoSIM"] = boolval($val); return $this; } /** * Gets the experienceBlockTaskSwitcher * Indicates whether or not to enable task switching on the device. * * @return bool|null The experienceBlockTaskSwitcher */ public function getExperienceBlockTaskSwitcher() { if (array_key_exists("experienceBlockTaskSwitcher", $this->_propDict)) { return $this->_propDict["experienceBlockTaskSwitcher"]; } else { return null; } } /** * Sets the experienceBlockTaskSwitcher * Indicates whether or not to enable task switching on the device. * * @param bool $val The experienceBlockTaskSwitcher * * @return Windows10GeneralConfiguration */ public function setExperienceBlockTaskSwitcher($val) { $this->_propDict["experienceBlockTaskSwitcher"] = boolval($val); return $this; } /** * Gets the experienceDoNotSyncBrowserSettings * Allow or prevent the syncing of Microsoft Edge Browser settings. Option for IT admins to prevent syncing across devices, but allow user override. Possible values are: notConfigured, blockedWithUserOverride, blocked. * * @return BrowserSyncSetting|null The experienceDoNotSyncBrowserSettings */ public function getExperienceDoNotSyncBrowserSettings() { if (array_key_exists("experienceDoNotSyncBrowserSettings", $this->_propDict)) { if (is_a($this->_propDict["experienceDoNotSyncBrowserSettings"], "\Beta\Microsoft\Graph\Model\BrowserSyncSetting") || is_null($this->_propDict["experienceDoNotSyncBrowserSettings"])) { return $this->_propDict["experienceDoNotSyncBrowserSettings"]; } else { $this->_propDict["experienceDoNotSyncBrowserSettings"] = new BrowserSyncSetting($this->_propDict["experienceDoNotSyncBrowserSettings"]); return $this->_propDict["experienceDoNotSyncBrowserSettings"]; } } return null; } /** * Sets the experienceDoNotSyncBrowserSettings * Allow or prevent the syncing of Microsoft Edge Browser settings. Option for IT admins to prevent syncing across devices, but allow user override. Possible values are: notConfigured, blockedWithUserOverride, blocked. * * @param BrowserSyncSetting $val The experienceDoNotSyncBrowserSettings * * @return Windows10GeneralConfiguration */ public function setExperienceDoNotSyncBrowserSettings($val) { $this->_propDict["experienceDoNotSyncBrowserSettings"] = $val; return $this; } /** * Gets the findMyFiles * Controls if the user can configure search to Find My Files mode, which searches files in secondary hard drives and also outside of the user profile. Find My Files does not allow users to search files or locations to which they do not have access. Possible values are: notConfigured, enabled, disabled. * * @return Enablement|null The findMyFiles */ public function getFindMyFiles() { if (array_key_exists("findMyFiles", $this->_propDict)) { if (is_a($this->_propDict["findMyFiles"], "\Beta\Microsoft\Graph\Model\Enablement") || is_null($this->_propDict["findMyFiles"])) { return $this->_propDict["findMyFiles"]; } else { $this->_propDict["findMyFiles"] = new Enablement($this->_propDict["findMyFiles"]); return $this->_propDict["findMyFiles"]; } } return null; } /** * Sets the findMyFiles * Controls if the user can configure search to Find My Files mode, which searches files in secondary hard drives and also outside of the user profile. Find My Files does not allow users to search files or locations to which they do not have access. Possible values are: notConfigured, enabled, disabled. * * @param Enablement $val The findMyFiles * * @return Windows10GeneralConfiguration */ public function setFindMyFiles($val) { $this->_propDict["findMyFiles"] = $val; return $this; } /** * Gets the gameDvrBlocked * Indicates whether or not to block DVR and broadcasting. * * @return bool|null The gameDvrBlocked */ public function getGameDvrBlocked() { if (array_key_exists("gameDvrBlocked", $this->_propDict)) { return $this->_propDict["gameDvrBlocked"]; } else { return null; } } /** * Sets the gameDvrBlocked * Indicates whether or not to block DVR and broadcasting. * * @param bool $val The gameDvrBlocked * * @return Windows10GeneralConfiguration */ public function setGameDvrBlocked($val) { $this->_propDict["gameDvrBlocked"] = boolval($val); return $this; } /** * Gets the inkWorkspaceAccess * Controls the user access to the ink workspace, from the desktop and from above the lock screen. Possible values are: notConfigured, enabled, disabled. * * @return InkAccessSetting|null The inkWorkspaceAccess */ public function getInkWorkspaceAccess() { if (array_key_exists("inkWorkspaceAccess", $this->_propDict)) { if (is_a($this->_propDict["inkWorkspaceAccess"], "\Beta\Microsoft\Graph\Model\InkAccessSetting") || is_null($this->_propDict["inkWorkspaceAccess"])) { return $this->_propDict["inkWorkspaceAccess"]; } else { $this->_propDict["inkWorkspaceAccess"] = new InkAccessSetting($this->_propDict["inkWorkspaceAccess"]); return $this->_propDict["inkWorkspaceAccess"]; } } return null; } /** * Sets the inkWorkspaceAccess * Controls the user access to the ink workspace, from the desktop and from above the lock screen. Possible values are: notConfigured, enabled, disabled. * * @param InkAccessSetting $val The inkWorkspaceAccess * * @return Windows10GeneralConfiguration */ public function setInkWorkspaceAccess($val) { $this->_propDict["inkWorkspaceAccess"] = $val; return $this; } /** * Gets the inkWorkspaceAccessState * Controls the user access to the ink workspace, from the desktop and from above the lock screen. Possible values are: notConfigured, blocked, allowed. * * @return StateManagementSetting|null The inkWorkspaceAccessState */ public function getInkWorkspaceAccessState() { if (array_key_exists("inkWorkspaceAccessState", $this->_propDict)) { if (is_a($this->_propDict["inkWorkspaceAccessState"], "\Beta\Microsoft\Graph\Model\StateManagementSetting") || is_null($this->_propDict["inkWorkspaceAccessState"])) { return $this->_propDict["inkWorkspaceAccessState"]; } else { $this->_propDict["inkWorkspaceAccessState"] = new StateManagementSetting($this->_propDict["inkWorkspaceAccessState"]); return $this->_propDict["inkWorkspaceAccessState"]; } } return null; } /** * Sets the inkWorkspaceAccessState * Controls the user access to the ink workspace, from the desktop and from above the lock screen. Possible values are: notConfigured, blocked, allowed. * * @param StateManagementSetting $val The inkWorkspaceAccessState * * @return Windows10GeneralConfiguration */ public function setInkWorkspaceAccessState($val) { $this->_propDict["inkWorkspaceAccessState"] = $val; return $this; } /** * Gets the inkWorkspaceBlockSuggestedApps * Specify whether to show recommended app suggestions in the ink workspace. * * @return bool|null The inkWorkspaceBlockSuggestedApps */ public function getInkWorkspaceBlockSuggestedApps() { if (array_key_exists("inkWorkspaceBlockSuggestedApps", $this->_propDict)) { return $this->_propDict["inkWorkspaceBlockSuggestedApps"]; } else { return null; } } /** * Sets the inkWorkspaceBlockSuggestedApps * Specify whether to show recommended app suggestions in the ink workspace. * * @param bool $val The inkWorkspaceBlockSuggestedApps * * @return Windows10GeneralConfiguration */ public function setInkWorkspaceBlockSuggestedApps($val) { $this->_propDict["inkWorkspaceBlockSuggestedApps"] = boolval($val); return $this; } /** * Gets the internetSharingBlocked * Indicates whether or not to Block the user from using internet sharing. * * @return bool|null The internetSharingBlocked */ public function getInternetSharingBlocked() { if (array_key_exists("internetSharingBlocked", $this->_propDict)) { return $this->_propDict["internetSharingBlocked"]; } else { return null; } } /** * Sets the internetSharingBlocked * Indicates whether or not to Block the user from using internet sharing. * * @param bool $val The internetSharingBlocked * * @return Windows10GeneralConfiguration */ public function setInternetSharingBlocked($val) { $this->_propDict["internetSharingBlocked"] = boolval($val); return $this; } /** * Gets the locationServicesBlocked * Indicates whether or not to Block the user from location services. * * @return bool|null The locationServicesBlocked */ public function getLocationServicesBlocked() { if (array_key_exists("locationServicesBlocked", $this->_propDict)) { return $this->_propDict["locationServicesBlocked"]; } else { return null; } } /** * Sets the locationServicesBlocked * Indicates whether or not to Block the user from location services. * * @param bool $val The locationServicesBlocked * * @return Windows10GeneralConfiguration */ public function setLocationServicesBlocked($val) { $this->_propDict["locationServicesBlocked"] = boolval($val); return $this; } /** * Gets the lockScreenActivateAppsWithVoice * This policy setting specifies whether Windows apps can be activated by voice while the system is locked. Possible values are: notConfigured, enabled, disabled. * * @return Enablement|null The lockScreenActivateAppsWithVoice */ public function getLockScreenActivateAppsWithVoice() { if (array_key_exists("lockScreenActivateAppsWithVoice", $this->_propDict)) { if (is_a($this->_propDict["lockScreenActivateAppsWithVoice"], "\Beta\Microsoft\Graph\Model\Enablement") || is_null($this->_propDict["lockScreenActivateAppsWithVoice"])) { return $this->_propDict["lockScreenActivateAppsWithVoice"]; } else { $this->_propDict["lockScreenActivateAppsWithVoice"] = new Enablement($this->_propDict["lockScreenActivateAppsWithVoice"]); return $this->_propDict["lockScreenActivateAppsWithVoice"]; } } return null; } /** * Sets the lockScreenActivateAppsWithVoice * This policy setting specifies whether Windows apps can be activated by voice while the system is locked. Possible values are: notConfigured, enabled, disabled. * * @param Enablement $val The lockScreenActivateAppsWithVoice * * @return Windows10GeneralConfiguration */ public function setLockScreenActivateAppsWithVoice($val) { $this->_propDict["lockScreenActivateAppsWithVoice"] = $val; return $this; } /** * Gets the lockScreenAllowTimeoutConfiguration * Specify whether to show a user-configurable setting to control the screen timeout while on the lock screen of Windows 10 Mobile devices. If this policy is set to Allow, the value set by lockScreenTimeoutInSeconds is ignored. * * @return bool|null The lockScreenAllowTimeoutConfiguration */ public function getLockScreenAllowTimeoutConfiguration() { if (array_key_exists("lockScreenAllowTimeoutConfiguration", $this->_propDict)) { return $this->_propDict["lockScreenAllowTimeoutConfiguration"]; } else { return null; } } /** * Sets the lockScreenAllowTimeoutConfiguration * Specify whether to show a user-configurable setting to control the screen timeout while on the lock screen of Windows 10 Mobile devices. If this policy is set to Allow, the value set by lockScreenTimeoutInSeconds is ignored. * * @param bool $val The lockScreenAllowTimeoutConfiguration * * @return Windows10GeneralConfiguration */ public function setLockScreenAllowTimeoutConfiguration($val) { $this->_propDict["lockScreenAllowTimeoutConfiguration"] = boolval($val); return $this; } /** * Gets the lockScreenBlockActionCenterNotifications * Indicates whether or not to block action center notifications over lock screen. * * @return bool|null The lockScreenBlockActionCenterNotifications */ public function getLockScreenBlockActionCenterNotifications() { if (array_key_exists("lockScreenBlockActionCenterNotifications", $this->_propDict)) { return $this->_propDict["lockScreenBlockActionCenterNotifications"]; } else { return null; } } /** * Sets the lockScreenBlockActionCenterNotifications * Indicates whether or not to block action center notifications over lock screen. * * @param bool $val The lockScreenBlockActionCenterNotifications * * @return Windows10GeneralConfiguration */ public function setLockScreenBlockActionCenterNotifications($val) { $this->_propDict["lockScreenBlockActionCenterNotifications"] = boolval($val); return $this; } /** * Gets the lockScreenBlockCortana * Indicates whether or not the user can interact with Cortana using speech while the system is locked. * * @return bool|null The lockScreenBlockCortana */ public function getLockScreenBlockCortana() { if (array_key_exists("lockScreenBlockCortana", $this->_propDict)) { return $this->_propDict["lockScreenBlockCortana"]; } else { return null; } } /** * Sets the lockScreenBlockCortana * Indicates whether or not the user can interact with Cortana using speech while the system is locked. * * @param bool $val The lockScreenBlockCortana * * @return Windows10GeneralConfiguration */ public function setLockScreenBlockCortana($val) { $this->_propDict["lockScreenBlockCortana"] = boolval($val); return $this; } /** * Gets the lockScreenBlockToastNotifications * Indicates whether to allow toast notifications above the device lock screen. * * @return bool|null The lockScreenBlockToastNotifications */ public function getLockScreenBlockToastNotifications() { if (array_key_exists("lockScreenBlockToastNotifications", $this->_propDict)) { return $this->_propDict["lockScreenBlockToastNotifications"]; } else { return null; } } /** * Sets the lockScreenBlockToastNotifications * Indicates whether to allow toast notifications above the device lock screen. * * @param bool $val The lockScreenBlockToastNotifications * * @return Windows10GeneralConfiguration */ public function setLockScreenBlockToastNotifications($val) { $this->_propDict["lockScreenBlockToastNotifications"] = boolval($val); return $this; } /** * Gets the lockScreenTimeoutInSeconds * Set the duration (in seconds) from the screen locking to the screen turning off for Windows 10 Mobile devices. Supported values are 11-1800. Valid values 11 to 1800 * * @return int|null The lockScreenTimeoutInSeconds */ public function getLockScreenTimeoutInSeconds() { if (array_key_exists("lockScreenTimeoutInSeconds", $this->_propDict)) { return $this->_propDict["lockScreenTimeoutInSeconds"]; } else { return null; } } /** * Sets the lockScreenTimeoutInSeconds * Set the duration (in seconds) from the screen locking to the screen turning off for Windows 10 Mobile devices. Supported values are 11-1800. Valid values 11 to 1800 * * @param int $val The lockScreenTimeoutInSeconds * * @return Windows10GeneralConfiguration */ public function setLockScreenTimeoutInSeconds($val) { $this->_propDict["lockScreenTimeoutInSeconds"] = intval($val); return $this; } /** * Gets the logonBlockFastUserSwitching * Disables the ability to quickly switch between users that are logged on simultaneously without logging off. * * @return bool|null The logonBlockFastUserSwitching */ public function getLogonBlockFastUserSwitching() { if (array_key_exists("logonBlockFastUserSwitching", $this->_propDict)) { return $this->_propDict["logonBlockFastUserSwitching"]; } else { return null; } } /** * Sets the logonBlockFastUserSwitching * Disables the ability to quickly switch between users that are logged on simultaneously without logging off. * * @param bool $val The logonBlockFastUserSwitching * * @return Windows10GeneralConfiguration */ public function setLogonBlockFastUserSwitching($val) { $this->_propDict["logonBlockFastUserSwitching"] = boolval($val); return $this; } /** * Gets the messagingBlockMMS * Indicates whether or not to block the MMS send/receive functionality on the device. * * @return bool|null The messagingBlockMMS */ public function getMessagingBlockMMS() { if (array_key_exists("messagingBlockMMS", $this->_propDict)) { return $this->_propDict["messagingBlockMMS"]; } else { return null; } } /** * Sets the messagingBlockMMS * Indicates whether or not to block the MMS send/receive functionality on the device. * * @param bool $val The messagingBlockMMS * * @return Windows10GeneralConfiguration */ public function setMessagingBlockMMS($val) { $this->_propDict["messagingBlockMMS"] = boolval($val); return $this; } /** * Gets the messagingBlockRichCommunicationServices * Indicates whether or not to block the RCS send/receive functionality on the device. * * @return bool|null The messagingBlockRichCommunicationServices */ public function getMessagingBlockRichCommunicationServices() { if (array_key_exists("messagingBlockRichCommunicationServices", $this->_propDict)) { return $this->_propDict["messagingBlockRichCommunicationServices"]; } else { return null; } } /** * Sets the messagingBlockRichCommunicationServices * Indicates whether or not to block the RCS send/receive functionality on the device. * * @param bool $val The messagingBlockRichCommunicationServices * * @return Windows10GeneralConfiguration */ public function setMessagingBlockRichCommunicationServices($val) { $this->_propDict["messagingBlockRichCommunicationServices"] = boolval($val); return $this; } /** * Gets the messagingBlockSync * Indicates whether or not to block text message back up and restore and Messaging Everywhere. * * @return bool|null The messagingBlockSync */ public function getMessagingBlockSync() { if (array_key_exists("messagingBlockSync", $this->_propDict)) { return $this->_propDict["messagingBlockSync"]; } else { return null; } } /** * Sets the messagingBlockSync * Indicates whether or not to block text message back up and restore and Messaging Everywhere. * * @param bool $val The messagingBlockSync * * @return Windows10GeneralConfiguration */ public function setMessagingBlockSync($val) { $this->_propDict["messagingBlockSync"] = boolval($val); return $this; } /** * Gets the microsoftAccountBlocked * Indicates whether or not to Block a Microsoft account. * * @return bool|null The microsoftAccountBlocked */ public function getMicrosoftAccountBlocked() { if (array_key_exists("microsoftAccountBlocked", $this->_propDict)) { return $this->_propDict["microsoftAccountBlocked"]; } else { return null; } } /** * Sets the microsoftAccountBlocked * Indicates whether or not to Block a Microsoft account. * * @param bool $val The microsoftAccountBlocked * * @return Windows10GeneralConfiguration */ public function setMicrosoftAccountBlocked($val) { $this->_propDict["microsoftAccountBlocked"] = boolval($val); return $this; } /** * Gets the microsoftAccountBlockSettingsSync * Indicates whether or not to Block Microsoft account settings sync. * * @return bool|null The microsoftAccountBlockSettingsSync */ public function getMicrosoftAccountBlockSettingsSync() { if (array_key_exists("microsoftAccountBlockSettingsSync", $this->_propDict)) { return $this->_propDict["microsoftAccountBlockSettingsSync"]; } else { return null; } } /** * Sets the microsoftAccountBlockSettingsSync * Indicates whether or not to Block Microsoft account settings sync. * * @param bool $val The microsoftAccountBlockSettingsSync * * @return Windows10GeneralConfiguration */ public function setMicrosoftAccountBlockSettingsSync($val) { $this->_propDict["microsoftAccountBlockSettingsSync"] = boolval($val); return $this; } /** * Gets the microsoftAccountSignInAssistantSettings * Controls the Microsoft Account Sign-In Assistant (wlidsvc) NT service. Possible values are: notConfigured, disabled. * * @return SignInAssistantOptions|null The microsoftAccountSignInAssistantSettings */ public function getMicrosoftAccountSignInAssistantSettings() { if (array_key_exists("microsoftAccountSignInAssistantSettings", $this->_propDict)) { if (is_a($this->_propDict["microsoftAccountSignInAssistantSettings"], "\Beta\Microsoft\Graph\Model\SignInAssistantOptions") || is_null($this->_propDict["microsoftAccountSignInAssistantSettings"])) { return $this->_propDict["microsoftAccountSignInAssistantSettings"]; } else { $this->_propDict["microsoftAccountSignInAssistantSettings"] = new SignInAssistantOptions($this->_propDict["microsoftAccountSignInAssistantSettings"]); return $this->_propDict["microsoftAccountSignInAssistantSettings"]; } } return null; } /** * Sets the microsoftAccountSignInAssistantSettings * Controls the Microsoft Account Sign-In Assistant (wlidsvc) NT service. Possible values are: notConfigured, disabled. * * @param SignInAssistantOptions $val The microsoftAccountSignInAssistantSettings * * @return Windows10GeneralConfiguration */ public function setMicrosoftAccountSignInAssistantSettings($val) { $this->_propDict["microsoftAccountSignInAssistantSettings"] = $val; return $this; } /** * Gets the networkProxyApplySettingsDeviceWide * If set, proxy settings will be applied to all processes and accounts in the device. Otherwise, it will be applied to the user account that’s enrolled into MDM. * * @return bool|null The networkProxyApplySettingsDeviceWide */ public function getNetworkProxyApplySettingsDeviceWide() { if (array_key_exists("networkProxyApplySettingsDeviceWide", $this->_propDict)) { return $this->_propDict["networkProxyApplySettingsDeviceWide"]; } else { return null; } } /** * Sets the networkProxyApplySettingsDeviceWide * If set, proxy settings will be applied to all processes and accounts in the device. Otherwise, it will be applied to the user account that’s enrolled into MDM. * * @param bool $val The networkProxyApplySettingsDeviceWide * * @return Windows10GeneralConfiguration */ public function setNetworkProxyApplySettingsDeviceWide($val) { $this->_propDict["networkProxyApplySettingsDeviceWide"] = boolval($val); return $this; } /** * Gets the networkProxyAutomaticConfigurationUrl * Address to the proxy auto-config (PAC) script you want to use. * * @return string|null The networkProxyAutomaticConfigurationUrl */ public function getNetworkProxyAutomaticConfigurationUrl() { if (array_key_exists("networkProxyAutomaticConfigurationUrl", $this->_propDict)) { return $this->_propDict["networkProxyAutomaticConfigurationUrl"]; } else { return null; } } /** * Sets the networkProxyAutomaticConfigurationUrl * Address to the proxy auto-config (PAC) script you want to use. * * @param string $val The networkProxyAutomaticConfigurationUrl * * @return Windows10GeneralConfiguration */ public function setNetworkProxyAutomaticConfigurationUrl($val) { $this->_propDict["networkProxyAutomaticConfigurationUrl"] = $val; return $this; } /** * Gets the networkProxyDisableAutoDetect * Disable automatic detection of settings. If enabled, the system will try to find the path to a proxy auto-config (PAC) script. * * @return bool|null The networkProxyDisableAutoDetect */ public function getNetworkProxyDisableAutoDetect() { if (array_key_exists("networkProxyDisableAutoDetect", $this->_propDict)) { return $this->_propDict["networkProxyDisableAutoDetect"]; } else { return null; } } /** * Sets the networkProxyDisableAutoDetect * Disable automatic detection of settings. If enabled, the system will try to find the path to a proxy auto-config (PAC) script. * * @param bool $val The networkProxyDisableAutoDetect * * @return Windows10GeneralConfiguration */ public function setNetworkProxyDisableAutoDetect($val) { $this->_propDict["networkProxyDisableAutoDetect"] = boolval($val); return $this; } /** * Gets the networkProxyServer * Specifies manual proxy server settings. * * @return Windows10NetworkProxyServer|null The networkProxyServer */ public function getNetworkProxyServer() { if (array_key_exists("networkProxyServer", $this->_propDict)) { if (is_a($this->_propDict["networkProxyServer"], "\Beta\Microsoft\Graph\Model\Windows10NetworkProxyServer") || is_null($this->_propDict["networkProxyServer"])) { return $this->_propDict["networkProxyServer"]; } else { $this->_propDict["networkProxyServer"] = new Windows10NetworkProxyServer($this->_propDict["networkProxyServer"]); return $this->_propDict["networkProxyServer"]; } } return null; } /** * Sets the networkProxyServer * Specifies manual proxy server settings. * * @param Windows10NetworkProxyServer $val The networkProxyServer * * @return Windows10GeneralConfiguration */ public function setNetworkProxyServer($val) { $this->_propDict["networkProxyServer"] = $val; return $this; } /** * Gets the nfcBlocked * Indicates whether or not to Block the user from using near field communication. * * @return bool|null The nfcBlocked */ public function getNfcBlocked() { if (array_key_exists("nfcBlocked", $this->_propDict)) { return $this->_propDict["nfcBlocked"]; } else { return null; } } /** * Sets the nfcBlocked * Indicates whether or not to Block the user from using near field communication. * * @param bool $val The nfcBlocked * * @return Windows10GeneralConfiguration */ public function setNfcBlocked($val) { $this->_propDict["nfcBlocked"] = boolval($val); return $this; } /** * Gets the oneDriveDisableFileSync * Gets or sets a value allowing IT admins to prevent apps and features from working with files on OneDrive. * * @return bool|null The oneDriveDisableFileSync */ public function getOneDriveDisableFileSync() { if (array_key_exists("oneDriveDisableFileSync", $this->_propDict)) { return $this->_propDict["oneDriveDisableFileSync"]; } else { return null; } } /** * Sets the oneDriveDisableFileSync * Gets or sets a value allowing IT admins to prevent apps and features from working with files on OneDrive. * * @param bool $val The oneDriveDisableFileSync * * @return Windows10GeneralConfiguration */ public function setOneDriveDisableFileSync($val) { $this->_propDict["oneDriveDisableFileSync"] = boolval($val); return $this; } /** * Gets the passwordBlockSimple * Specify whether PINs or passwords such as '1111' or '1234' are allowed. For Windows 10 desktops, it also controls the use of picture passwords. * * @return bool|null The passwordBlockSimple */ public function getPasswordBlockSimple() { if (array_key_exists("passwordBlockSimple", $this->_propDict)) { return $this->_propDict["passwordBlockSimple"]; } else { return null; } } /** * Sets the passwordBlockSimple * Specify whether PINs or passwords such as '1111' or '1234' are allowed. For Windows 10 desktops, it also controls the use of picture passwords. * * @param bool $val The passwordBlockSimple * * @return Windows10GeneralConfiguration */ public function setPasswordBlockSimple($val) { $this->_propDict["passwordBlockSimple"] = boolval($val); return $this; } /** * Gets the passwordExpirationDays * The password expiration in days. Valid values 0 to 730 * * @return int|null The passwordExpirationDays */ public function getPasswordExpirationDays() { if (array_key_exists("passwordExpirationDays", $this->_propDict)) { return $this->_propDict["passwordExpirationDays"]; } else { return null; } } /** * Sets the passwordExpirationDays * The password expiration in days. Valid values 0 to 730 * * @param int $val The passwordExpirationDays * * @return Windows10GeneralConfiguration */ public function setPasswordExpirationDays($val) { $this->_propDict["passwordExpirationDays"] = intval($val); return $this; } /** * Gets the passwordMinimumAgeInDays * This security setting determines the period of time (in days) that a password must be used before the user can change it. Valid values 0 to 998 * * @return int|null The passwordMinimumAgeInDays */ public function getPasswordMinimumAgeInDays() { if (array_key_exists("passwordMinimumAgeInDays", $this->_propDict)) { return $this->_propDict["passwordMinimumAgeInDays"]; } else { return null; } } /** * Sets the passwordMinimumAgeInDays * This security setting determines the period of time (in days) that a password must be used before the user can change it. Valid values 0 to 998 * * @param int $val The passwordMinimumAgeInDays * * @return Windows10GeneralConfiguration */ public function setPasswordMinimumAgeInDays($val) { $this->_propDict["passwordMinimumAgeInDays"] = intval($val); return $this; } /** * Gets the passwordMinimumCharacterSetCount * The number of character sets required in the password. * * @return int|null The passwordMinimumCharacterSetCount */ public function getPasswordMinimumCharacterSetCount() { if (array_key_exists("passwordMinimumCharacterSetCount", $this->_propDict)) { return $this->_propDict["passwordMinimumCharacterSetCount"]; } else { return null; } } /** * Sets the passwordMinimumCharacterSetCount * The number of character sets required in the password. * * @param int $val The passwordMinimumCharacterSetCount * * @return Windows10GeneralConfiguration */ public function setPasswordMinimumCharacterSetCount($val) { $this->_propDict["passwordMinimumCharacterSetCount"] = intval($val); return $this; } /** * Gets the passwordMinimumLength * The minimum password length. Valid values 4 to 16 * * @return int|null The passwordMinimumLength */ public function getPasswordMinimumLength() { if (array_key_exists("passwordMinimumLength", $this->_propDict)) { return $this->_propDict["passwordMinimumLength"]; } else { return null; } } /** * Sets the passwordMinimumLength * The minimum password length. Valid values 4 to 16 * * @param int $val The passwordMinimumLength * * @return Windows10GeneralConfiguration */ public function setPasswordMinimumLength($val) { $this->_propDict["passwordMinimumLength"] = intval($val); return $this; } /** * Gets the passwordMinutesOfInactivityBeforeScreenTimeout * The minutes of inactivity before the screen times out. * * @return int|null The passwordMinutesOfInactivityBeforeScreenTimeout */ public function getPasswordMinutesOfInactivityBeforeScreenTimeout() { if (array_key_exists("passwordMinutesOfInactivityBeforeScreenTimeout", $this->_propDict)) { return $this->_propDict["passwordMinutesOfInactivityBeforeScreenTimeout"]; } else { return null; } } /** * Sets the passwordMinutesOfInactivityBeforeScreenTimeout * The minutes of inactivity before the screen times out. * * @param int $val The passwordMinutesOfInactivityBeforeScreenTimeout * * @return Windows10GeneralConfiguration */ public function setPasswordMinutesOfInactivityBeforeScreenTimeout($val) { $this->_propDict["passwordMinutesOfInactivityBeforeScreenTimeout"] = intval($val); return $this; } /** * Gets the passwordPreviousPasswordBlockCount * The number of previous passwords to prevent reuse of. Valid values 0 to 50 * * @return int|null The passwordPreviousPasswordBlockCount */ public function getPasswordPreviousPasswordBlockCount() { if (array_key_exists("passwordPreviousPasswordBlockCount", $this->_propDict)) { return $this->_propDict["passwordPreviousPasswordBlockCount"]; } else { return null; } } /** * Sets the passwordPreviousPasswordBlockCount * The number of previous passwords to prevent reuse of. Valid values 0 to 50 * * @param int $val The passwordPreviousPasswordBlockCount * * @return Windows10GeneralConfiguration */ public function setPasswordPreviousPasswordBlockCount($val) { $this->_propDict["passwordPreviousPasswordBlockCount"] = intval($val); return $this; } /** * Gets the passwordRequired * Indicates whether or not to require the user to have a password. * * @return bool|null The passwordRequired */ public function getPasswordRequired() { if (array_key_exists("passwordRequired", $this->_propDict)) { return $this->_propDict["passwordRequired"]; } else { return null; } } /** * Sets the passwordRequired * Indicates whether or not to require the user to have a password. * * @param bool $val The passwordRequired * * @return Windows10GeneralConfiguration */ public function setPasswordRequired($val) { $this->_propDict["passwordRequired"] = boolval($val); return $this; } /** * Gets the passwordRequiredType * The required password type. Possible values are: deviceDefault, alphanumeric, numeric. * * @return RequiredPasswordType|null The passwordRequiredType */ public function getPasswordRequiredType() { if (array_key_exists("passwordRequiredType", $this->_propDict)) { if (is_a($this->_propDict["passwordRequiredType"], "\Beta\Microsoft\Graph\Model\RequiredPasswordType") || is_null($this->_propDict["passwordRequiredType"])) { return $this->_propDict["passwordRequiredType"]; } else { $this->_propDict["passwordRequiredType"] = new RequiredPasswordType($this->_propDict["passwordRequiredType"]); return $this->_propDict["passwordRequiredType"]; } } return null; } /** * Sets the passwordRequiredType * The required password type. Possible values are: deviceDefault, alphanumeric, numeric. * * @param RequiredPasswordType $val The passwordRequiredType * * @return Windows10GeneralConfiguration */ public function setPasswordRequiredType($val) { $this->_propDict["passwordRequiredType"] = $val; return $this; } /** * Gets the passwordRequireWhenResumeFromIdleState * Indicates whether or not to require a password upon resuming from an idle state. * * @return bool|null The passwordRequireWhenResumeFromIdleState */ public function getPasswordRequireWhenResumeFromIdleState() { if (array_key_exists("passwordRequireWhenResumeFromIdleState", $this->_propDict)) { return $this->_propDict["passwordRequireWhenResumeFromIdleState"]; } else { return null; } } /** * Sets the passwordRequireWhenResumeFromIdleState * Indicates whether or not to require a password upon resuming from an idle state. * * @param bool $val The passwordRequireWhenResumeFromIdleState * * @return Windows10GeneralConfiguration */ public function setPasswordRequireWhenResumeFromIdleState($val) { $this->_propDict["passwordRequireWhenResumeFromIdleState"] = boolval($val); return $this; } /** * Gets the passwordSignInFailureCountBeforeFactoryReset * The number of sign in failures before factory reset. Valid values 0 to 999 * * @return int|null The passwordSignInFailureCountBeforeFactoryReset */ public function getPasswordSignInFailureCountBeforeFactoryReset() { if (array_key_exists("passwordSignInFailureCountBeforeFactoryReset", $this->_propDict)) { return $this->_propDict["passwordSignInFailureCountBeforeFactoryReset"]; } else { return null; } } /** * Sets the passwordSignInFailureCountBeforeFactoryReset * The number of sign in failures before factory reset. Valid values 0 to 999 * * @param int $val The passwordSignInFailureCountBeforeFactoryReset * * @return Windows10GeneralConfiguration */ public function setPasswordSignInFailureCountBeforeFactoryReset($val) { $this->_propDict["passwordSignInFailureCountBeforeFactoryReset"] = intval($val); return $this; } /** * Gets the personalizationDesktopImageUrl * A http or https Url to a jpg, jpeg or png image that needs to be downloaded and used as the Desktop Image or a file Url to a local image on the file system that needs to used as the Desktop Image. * * @return string|null The personalizationDesktopImageUrl */ public function getPersonalizationDesktopImageUrl() { if (array_key_exists("personalizationDesktopImageUrl", $this->_propDict)) { return $this->_propDict["personalizationDesktopImageUrl"]; } else { return null; } } /** * Sets the personalizationDesktopImageUrl * A http or https Url to a jpg, jpeg or png image that needs to be downloaded and used as the Desktop Image or a file Url to a local image on the file system that needs to used as the Desktop Image. * * @param string $val The personalizationDesktopImageUrl * * @return Windows10GeneralConfiguration */ public function setPersonalizationDesktopImageUrl($val) { $this->_propDict["personalizationDesktopImageUrl"] = $val; return $this; } /** * Gets the personalizationLockScreenImageUrl * A http or https Url to a jpg, jpeg or png image that neeeds to be downloaded and used as the Lock Screen Image or a file Url to a local image on the file system that needs to be used as the Lock Screen Image. * * @return string|null The personalizationLockScreenImageUrl */ public function getPersonalizationLockScreenImageUrl() { if (array_key_exists("personalizationLockScreenImageUrl", $this->_propDict)) { return $this->_propDict["personalizationLockScreenImageUrl"]; } else { return null; } } /** * Sets the personalizationLockScreenImageUrl * A http or https Url to a jpg, jpeg or png image that neeeds to be downloaded and used as the Lock Screen Image or a file Url to a local image on the file system that needs to be used as the Lock Screen Image. * * @param string $val The personalizationLockScreenImageUrl * * @return Windows10GeneralConfiguration */ public function setPersonalizationLockScreenImageUrl($val) { $this->_propDict["personalizationLockScreenImageUrl"] = $val; return $this; } /** * Gets the powerButtonActionOnBattery * This setting specifies the action that Windows takes when a user presses the Power button while on battery. Possible values are: notConfigured, noAction, sleep, hibernate, shutdown. * * @return PowerActionType|null The powerButtonActionOnBattery */ public function getPowerButtonActionOnBattery() { if (array_key_exists("powerButtonActionOnBattery", $this->_propDict)) { if (is_a($this->_propDict["powerButtonActionOnBattery"], "\Beta\Microsoft\Graph\Model\PowerActionType") || is_null($this->_propDict["powerButtonActionOnBattery"])) { return $this->_propDict["powerButtonActionOnBattery"]; } else { $this->_propDict["powerButtonActionOnBattery"] = new PowerActionType($this->_propDict["powerButtonActionOnBattery"]); return $this->_propDict["powerButtonActionOnBattery"]; } } return null; } /** * Sets the powerButtonActionOnBattery * This setting specifies the action that Windows takes when a user presses the Power button while on battery. Possible values are: notConfigured, noAction, sleep, hibernate, shutdown. * * @param PowerActionType $val The powerButtonActionOnBattery * * @return Windows10GeneralConfiguration */ public function setPowerButtonActionOnBattery($val) { $this->_propDict["powerButtonActionOnBattery"] = $val; return $this; } /** * Gets the powerButtonActionPluggedIn * This setting specifies the action that Windows takes when a user presses the Power button while plugged in. Possible values are: notConfigured, noAction, sleep, hibernate, shutdown. * * @return PowerActionType|null The powerButtonActionPluggedIn */ public function getPowerButtonActionPluggedIn() { if (array_key_exists("powerButtonActionPluggedIn", $this->_propDict)) { if (is_a($this->_propDict["powerButtonActionPluggedIn"], "\Beta\Microsoft\Graph\Model\PowerActionType") || is_null($this->_propDict["powerButtonActionPluggedIn"])) { return $this->_propDict["powerButtonActionPluggedIn"]; } else { $this->_propDict["powerButtonActionPluggedIn"] = new PowerActionType($this->_propDict["powerButtonActionPluggedIn"]); return $this->_propDict["powerButtonActionPluggedIn"]; } } return null; } /** * Sets the powerButtonActionPluggedIn * This setting specifies the action that Windows takes when a user presses the Power button while plugged in. Possible values are: notConfigured, noAction, sleep, hibernate, shutdown. * * @param PowerActionType $val The powerButtonActionPluggedIn * * @return Windows10GeneralConfiguration */ public function setPowerButtonActionPluggedIn($val) { $this->_propDict["powerButtonActionPluggedIn"] = $val; return $this; } /** * Gets the powerHybridSleepOnBattery * This setting allows you to turn off hybrid sleep while on battery. If you set this setting to disable, a hiberfile is not generated when the system transitions to sleep (Stand By). If you set this setting to enable or do not configure this policy setting, users control this setting. Possible values are: notConfigured, enabled, disabled. * * @return Enablement|null The powerHybridSleepOnBattery */ public function getPowerHybridSleepOnBattery() { if (array_key_exists("powerHybridSleepOnBattery", $this->_propDict)) { if (is_a($this->_propDict["powerHybridSleepOnBattery"], "\Beta\Microsoft\Graph\Model\Enablement") || is_null($this->_propDict["powerHybridSleepOnBattery"])) { return $this->_propDict["powerHybridSleepOnBattery"]; } else { $this->_propDict["powerHybridSleepOnBattery"] = new Enablement($this->_propDict["powerHybridSleepOnBattery"]); return $this->_propDict["powerHybridSleepOnBattery"]; } } return null; } /** * Sets the powerHybridSleepOnBattery * This setting allows you to turn off hybrid sleep while on battery. If you set this setting to disable, a hiberfile is not generated when the system transitions to sleep (Stand By). If you set this setting to enable or do not configure this policy setting, users control this setting. Possible values are: notConfigured, enabled, disabled. * * @param Enablement $val The powerHybridSleepOnBattery * * @return Windows10GeneralConfiguration */ public function setPowerHybridSleepOnBattery($val) { $this->_propDict["powerHybridSleepOnBattery"] = $val; return $this; } /** * Gets the powerHybridSleepPluggedIn * This setting allows you to turn off hybrid sleep while plugged in. If you set this setting to disable, a hiberfile is not generated when the system transitions to sleep (Stand By). If you set this setting to enable or do not configure this policy setting, users control this setting. Possible values are: notConfigured, enabled, disabled. * * @return Enablement|null The powerHybridSleepPluggedIn */ public function getPowerHybridSleepPluggedIn() { if (array_key_exists("powerHybridSleepPluggedIn", $this->_propDict)) { if (is_a($this->_propDict["powerHybridSleepPluggedIn"], "\Beta\Microsoft\Graph\Model\Enablement") || is_null($this->_propDict["powerHybridSleepPluggedIn"])) { return $this->_propDict["powerHybridSleepPluggedIn"]; } else { $this->_propDict["powerHybridSleepPluggedIn"] = new Enablement($this->_propDict["powerHybridSleepPluggedIn"]); return $this->_propDict["powerHybridSleepPluggedIn"]; } } return null; } /** * Sets the powerHybridSleepPluggedIn * This setting allows you to turn off hybrid sleep while plugged in. If you set this setting to disable, a hiberfile is not generated when the system transitions to sleep (Stand By). If you set this setting to enable or do not configure this policy setting, users control this setting. Possible values are: notConfigured, enabled, disabled. * * @param Enablement $val The powerHybridSleepPluggedIn * * @return Windows10GeneralConfiguration */ public function setPowerHybridSleepPluggedIn($val) { $this->_propDict["powerHybridSleepPluggedIn"] = $val; return $this; } /** * Gets the powerLidCloseActionOnBattery * This setting specifies the action that Windows takes when a user closes the lid on a mobile PC while on battery. Possible values are: notConfigured, noAction, sleep, hibernate, shutdown. * * @return PowerActionType|null The powerLidCloseActionOnBattery */ public function getPowerLidCloseActionOnBattery() { if (array_key_exists("powerLidCloseActionOnBattery", $this->_propDict)) { if (is_a($this->_propDict["powerLidCloseActionOnBattery"], "\Beta\Microsoft\Graph\Model\PowerActionType") || is_null($this->_propDict["powerLidCloseActionOnBattery"])) { return $this->_propDict["powerLidCloseActionOnBattery"]; } else { $this->_propDict["powerLidCloseActionOnBattery"] = new PowerActionType($this->_propDict["powerLidCloseActionOnBattery"]); return $this->_propDict["powerLidCloseActionOnBattery"]; } } return null; } /** * Sets the powerLidCloseActionOnBattery * This setting specifies the action that Windows takes when a user closes the lid on a mobile PC while on battery. Possible values are: notConfigured, noAction, sleep, hibernate, shutdown. * * @param PowerActionType $val The powerLidCloseActionOnBattery * * @return Windows10GeneralConfiguration */ public function setPowerLidCloseActionOnBattery($val) { $this->_propDict["powerLidCloseActionOnBattery"] = $val; return $this; } /** * Gets the powerLidCloseActionPluggedIn * This setting specifies the action that Windows takes when a user closes the lid on a mobile PC while plugged in. Possible values are: notConfigured, noAction, sleep, hibernate, shutdown. * * @return PowerActionType|null The powerLidCloseActionPluggedIn */ public function getPowerLidCloseActionPluggedIn() { if (array_key_exists("powerLidCloseActionPluggedIn", $this->_propDict)) { if (is_a($this->_propDict["powerLidCloseActionPluggedIn"], "\Beta\Microsoft\Graph\Model\PowerActionType") || is_null($this->_propDict["powerLidCloseActionPluggedIn"])) { return $this->_propDict["powerLidCloseActionPluggedIn"]; } else { $this->_propDict["powerLidCloseActionPluggedIn"] = new PowerActionType($this->_propDict["powerLidCloseActionPluggedIn"]); return $this->_propDict["powerLidCloseActionPluggedIn"]; } } return null; } /** * Sets the powerLidCloseActionPluggedIn * This setting specifies the action that Windows takes when a user closes the lid on a mobile PC while plugged in. Possible values are: notConfigured, noAction, sleep, hibernate, shutdown. * * @param PowerActionType $val The powerLidCloseActionPluggedIn * * @return Windows10GeneralConfiguration */ public function setPowerLidCloseActionPluggedIn($val) { $this->_propDict["powerLidCloseActionPluggedIn"] = $val; return $this; } /** * Gets the powerSleepButtonActionOnBattery * This setting specifies the action that Windows takes when a user presses the Sleep button while on battery. Possible values are: notConfigured, noAction, sleep, hibernate, shutdown. * * @return PowerActionType|null The powerSleepButtonActionOnBattery */ public function getPowerSleepButtonActionOnBattery() { if (array_key_exists("powerSleepButtonActionOnBattery", $this->_propDict)) { if (is_a($this->_propDict["powerSleepButtonActionOnBattery"], "\Beta\Microsoft\Graph\Model\PowerActionType") || is_null($this->_propDict["powerSleepButtonActionOnBattery"])) { return $this->_propDict["powerSleepButtonActionOnBattery"]; } else { $this->_propDict["powerSleepButtonActionOnBattery"] = new PowerActionType($this->_propDict["powerSleepButtonActionOnBattery"]); return $this->_propDict["powerSleepButtonActionOnBattery"]; } } return null; } /** * Sets the powerSleepButtonActionOnBattery * This setting specifies the action that Windows takes when a user presses the Sleep button while on battery. Possible values are: notConfigured, noAction, sleep, hibernate, shutdown. * * @param PowerActionType $val The powerSleepButtonActionOnBattery * * @return Windows10GeneralConfiguration */ public function setPowerSleepButtonActionOnBattery($val) { $this->_propDict["powerSleepButtonActionOnBattery"] = $val; return $this; } /** * Gets the powerSleepButtonActionPluggedIn * This setting specifies the action that Windows takes when a user presses the Sleep button while plugged in. Possible values are: notConfigured, noAction, sleep, hibernate, shutdown. * * @return PowerActionType|null The powerSleepButtonActionPluggedIn */ public function getPowerSleepButtonActionPluggedIn() { if (array_key_exists("powerSleepButtonActionPluggedIn", $this->_propDict)) { if (is_a($this->_propDict["powerSleepButtonActionPluggedIn"], "\Beta\Microsoft\Graph\Model\PowerActionType") || is_null($this->_propDict["powerSleepButtonActionPluggedIn"])) { return $this->_propDict["powerSleepButtonActionPluggedIn"]; } else { $this->_propDict["powerSleepButtonActionPluggedIn"] = new PowerActionType($this->_propDict["powerSleepButtonActionPluggedIn"]); return $this->_propDict["powerSleepButtonActionPluggedIn"]; } } return null; } /** * Sets the powerSleepButtonActionPluggedIn * This setting specifies the action that Windows takes when a user presses the Sleep button while plugged in. Possible values are: notConfigured, noAction, sleep, hibernate, shutdown. * * @param PowerActionType $val The powerSleepButtonActionPluggedIn * * @return Windows10GeneralConfiguration */ public function setPowerSleepButtonActionPluggedIn($val) { $this->_propDict["powerSleepButtonActionPluggedIn"] = $val; return $this; } /** * Gets the printerBlockAddition * Prevent user installation of additional printers from printers settings. * * @return bool|null The printerBlockAddition */ public function getPrinterBlockAddition() { if (array_key_exists("printerBlockAddition", $this->_propDict)) { return $this->_propDict["printerBlockAddition"]; } else { return null; } } /** * Sets the printerBlockAddition * Prevent user installation of additional printers from printers settings. * * @param bool $val The printerBlockAddition * * @return Windows10GeneralConfiguration */ public function setPrinterBlockAddition($val) { $this->_propDict["printerBlockAddition"] = boolval($val); return $this; } /** * Gets the printerDefaultName * Name (network host name) of an installed printer. * * @return string|null The printerDefaultName */ public function getPrinterDefaultName() { if (array_key_exists("printerDefaultName", $this->_propDict)) { return $this->_propDict["printerDefaultName"]; } else { return null; } } /** * Sets the printerDefaultName * Name (network host name) of an installed printer. * * @param string $val The printerDefaultName * * @return Windows10GeneralConfiguration */ public function setPrinterDefaultName($val) { $this->_propDict["printerDefaultName"] = $val; return $this; } /** * Gets the printerNames * Automatically provision printers based on their names (network host names). * * @return string|null The printerNames */ public function getPrinterNames() { if (array_key_exists("printerNames", $this->_propDict)) { return $this->_propDict["printerNames"]; } else { return null; } } /** * Sets the printerNames * Automatically provision printers based on their names (network host names). * * @param string $val The printerNames * * @return Windows10GeneralConfiguration */ public function setPrinterNames($val) { $this->_propDict["printerNames"] = $val; return $this; } /** * Gets the privacyAdvertisingId * Enables or disables the use of advertising ID. Added in Windows 10, version 1607. Possible values are: notConfigured, blocked, allowed. * * @return StateManagementSetting|null The privacyAdvertisingId */ public function getPrivacyAdvertisingId() { if (array_key_exists("privacyAdvertisingId", $this->_propDict)) { if (is_a($this->_propDict["privacyAdvertisingId"], "\Beta\Microsoft\Graph\Model\StateManagementSetting") || is_null($this->_propDict["privacyAdvertisingId"])) { return $this->_propDict["privacyAdvertisingId"]; } else { $this->_propDict["privacyAdvertisingId"] = new StateManagementSetting($this->_propDict["privacyAdvertisingId"]); return $this->_propDict["privacyAdvertisingId"]; } } return null; } /** * Sets the privacyAdvertisingId * Enables or disables the use of advertising ID. Added in Windows 10, version 1607. Possible values are: notConfigured, blocked, allowed. * * @param StateManagementSetting $val The privacyAdvertisingId * * @return Windows10GeneralConfiguration */ public function setPrivacyAdvertisingId($val) { $this->_propDict["privacyAdvertisingId"] = $val; return $this; } /** * Gets the privacyAutoAcceptPairingAndConsentPrompts * Indicates whether or not to allow the automatic acceptance of the pairing and privacy user consent dialog when launching apps. * * @return bool|null The privacyAutoAcceptPairingAndConsentPrompts */ public function getPrivacyAutoAcceptPairingAndConsentPrompts() { if (array_key_exists("privacyAutoAcceptPairingAndConsentPrompts", $this->_propDict)) { return $this->_propDict["privacyAutoAcceptPairingAndConsentPrompts"]; } else { return null; } } /** * Sets the privacyAutoAcceptPairingAndConsentPrompts * Indicates whether or not to allow the automatic acceptance of the pairing and privacy user consent dialog when launching apps. * * @param bool $val The privacyAutoAcceptPairingAndConsentPrompts * * @return Windows10GeneralConfiguration */ public function setPrivacyAutoAcceptPairingAndConsentPrompts($val) { $this->_propDict["privacyAutoAcceptPairingAndConsentPrompts"] = boolval($val); return $this; } /** * Gets the privacyBlockActivityFeed * Blocks the usage of cloud based speech services for Cortana, Dictation, or Store applications. * * @return bool|null The privacyBlockActivityFeed */ public function getPrivacyBlockActivityFeed() { if (array_key_exists("privacyBlockActivityFeed", $this->_propDict)) { return $this->_propDict["privacyBlockActivityFeed"]; } else { return null; } } /** * Sets the privacyBlockActivityFeed * Blocks the usage of cloud based speech services for Cortana, Dictation, or Store applications. * * @param bool $val The privacyBlockActivityFeed * * @return Windows10GeneralConfiguration */ public function setPrivacyBlockActivityFeed($val) { $this->_propDict["privacyBlockActivityFeed"] = boolval($val); return $this; } /** * Gets the privacyBlockInputPersonalization * Indicates whether or not to block the usage of cloud based speech services for Cortana, Dictation, or Store applications. * * @return bool|null The privacyBlockInputPersonalization */ public function getPrivacyBlockInputPersonalization() { if (array_key_exists("privacyBlockInputPersonalization", $this->_propDict)) { return $this->_propDict["privacyBlockInputPersonalization"]; } else { return null; } } /** * Sets the privacyBlockInputPersonalization * Indicates whether or not to block the usage of cloud based speech services for Cortana, Dictation, or Store applications. * * @param bool $val The privacyBlockInputPersonalization * * @return Windows10GeneralConfiguration */ public function setPrivacyBlockInputPersonalization($val) { $this->_propDict["privacyBlockInputPersonalization"] = boolval($val); return $this; } /** * Gets the privacyBlockPublishUserActivities * Blocks the shared experiences/discovery of recently used resources in task switcher etc. * * @return bool|null The privacyBlockPublishUserActivities */ public function getPrivacyBlockPublishUserActivities() { if (array_key_exists("privacyBlockPublishUserActivities", $this->_propDict)) { return $this->_propDict["privacyBlockPublishUserActivities"]; } else { return null; } } /** * Sets the privacyBlockPublishUserActivities * Blocks the shared experiences/discovery of recently used resources in task switcher etc. * * @param bool $val The privacyBlockPublishUserActivities * * @return Windows10GeneralConfiguration */ public function setPrivacyBlockPublishUserActivities($val) { $this->_propDict["privacyBlockPublishUserActivities"] = boolval($val); return $this; } /** * Gets the privacyDisableLaunchExperience * This policy prevents the privacy experience from launching during user logon for new and upgraded users. * * @return bool|null The privacyDisableLaunchExperience */ public function getPrivacyDisableLaunchExperience() { if (array_key_exists("privacyDisableLaunchExperience", $this->_propDict)) { return $this->_propDict["privacyDisableLaunchExperience"]; } else { return null; } } /** * Sets the privacyDisableLaunchExperience * This policy prevents the privacy experience from launching during user logon for new and upgraded users. * * @param bool $val The privacyDisableLaunchExperience * * @return Windows10GeneralConfiguration */ public function setPrivacyDisableLaunchExperience($val) { $this->_propDict["privacyDisableLaunchExperience"] = boolval($val); return $this; } /** * Gets the resetProtectionModeBlocked * Indicates whether or not to Block the user from reset protection mode. * * @return bool|null The resetProtectionModeBlocked */ public function getResetProtectionModeBlocked() { if (array_key_exists("resetProtectionModeBlocked", $this->_propDict)) { return $this->_propDict["resetProtectionModeBlocked"]; } else { return null; } } /** * Sets the resetProtectionModeBlocked * Indicates whether or not to Block the user from reset protection mode. * * @param bool $val The resetProtectionModeBlocked * * @return Windows10GeneralConfiguration */ public function setResetProtectionModeBlocked($val) { $this->_propDict["resetProtectionModeBlocked"] = boolval($val); return $this; } /** * Gets the safeSearchFilter * Specifies what filter level of safe search is required. Possible values are: userDefined, strict, moderate. * * @return SafeSearchFilterType|null The safeSearchFilter */ public function getSafeSearchFilter() { if (array_key_exists("safeSearchFilter", $this->_propDict)) { if (is_a($this->_propDict["safeSearchFilter"], "\Beta\Microsoft\Graph\Model\SafeSearchFilterType") || is_null($this->_propDict["safeSearchFilter"])) { return $this->_propDict["safeSearchFilter"]; } else { $this->_propDict["safeSearchFilter"] = new SafeSearchFilterType($this->_propDict["safeSearchFilter"]); return $this->_propDict["safeSearchFilter"]; } } return null; } /** * Sets the safeSearchFilter * Specifies what filter level of safe search is required. Possible values are: userDefined, strict, moderate. * * @param SafeSearchFilterType $val The safeSearchFilter * * @return Windows10GeneralConfiguration */ public function setSafeSearchFilter($val) { $this->_propDict["safeSearchFilter"] = $val; return $this; } /** * Gets the screenCaptureBlocked * Indicates whether or not to Block the user from taking Screenshots. * * @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 or not to Block the user from taking Screenshots. * * @param bool $val The screenCaptureBlocked * * @return Windows10GeneralConfiguration */ public function setScreenCaptureBlocked($val) { $this->_propDict["screenCaptureBlocked"] = boolval($val); return $this; } /** * Gets the searchBlockDiacritics * Specifies if search can use diacritics. * * @return bool|null The searchBlockDiacritics */ public function getSearchBlockDiacritics() { if (array_key_exists("searchBlockDiacritics", $this->_propDict)) { return $this->_propDict["searchBlockDiacritics"]; } else { return null; } } /** * Sets the searchBlockDiacritics * Specifies if search can use diacritics. * * @param bool $val The searchBlockDiacritics * * @return Windows10GeneralConfiguration */ public function setSearchBlockDiacritics($val) { $this->_propDict["searchBlockDiacritics"] = boolval($val); return $this; } /** * Gets the searchBlockWebResults * Indicates whether or not to block the web search. * * @return bool|null The searchBlockWebResults */ public function getSearchBlockWebResults() { if (array_key_exists("searchBlockWebResults", $this->_propDict)) { return $this->_propDict["searchBlockWebResults"]; } else { return null; } } /** * Sets the searchBlockWebResults * Indicates whether or not to block the web search. * * @param bool $val The searchBlockWebResults * * @return Windows10GeneralConfiguration */ public function setSearchBlockWebResults($val) { $this->_propDict["searchBlockWebResults"] = boolval($val); return $this; } /** * Gets the searchDisableAutoLanguageDetection * Specifies whether to use automatic language detection when indexing content and properties. * * @return bool|null The searchDisableAutoLanguageDetection */ public function getSearchDisableAutoLanguageDetection() { if (array_key_exists("searchDisableAutoLanguageDetection", $this->_propDict)) { return $this->_propDict["searchDisableAutoLanguageDetection"]; } else { return null; } } /** * Sets the searchDisableAutoLanguageDetection * Specifies whether to use automatic language detection when indexing content and properties. * * @param bool $val The searchDisableAutoLanguageDetection * * @return Windows10GeneralConfiguration */ public function setSearchDisableAutoLanguageDetection($val) { $this->_propDict["searchDisableAutoLanguageDetection"] = boolval($val); return $this; } /** * Gets the searchDisableIndexerBackoff * Indicates whether or not to disable the search indexer backoff feature. * * @return bool|null The searchDisableIndexerBackoff */ public function getSearchDisableIndexerBackoff() { if (array_key_exists("searchDisableIndexerBackoff", $this->_propDict)) { return $this->_propDict["searchDisableIndexerBackoff"]; } else { return null; } } /** * Sets the searchDisableIndexerBackoff * Indicates whether or not to disable the search indexer backoff feature. * * @param bool $val The searchDisableIndexerBackoff * * @return Windows10GeneralConfiguration */ public function setSearchDisableIndexerBackoff($val) { $this->_propDict["searchDisableIndexerBackoff"] = boolval($val); return $this; } /** * Gets the searchDisableIndexingEncryptedItems * Indicates whether or not to block indexing of WIP-protected items to prevent them from appearing in search results for Cortana or Explorer. * * @return bool|null The searchDisableIndexingEncryptedItems */ public function getSearchDisableIndexingEncryptedItems() { if (array_key_exists("searchDisableIndexingEncryptedItems", $this->_propDict)) { return $this->_propDict["searchDisableIndexingEncryptedItems"]; } else { return null; } } /** * Sets the searchDisableIndexingEncryptedItems * Indicates whether or not to block indexing of WIP-protected items to prevent them from appearing in search results for Cortana or Explorer. * * @param bool $val The searchDisableIndexingEncryptedItems * * @return Windows10GeneralConfiguration */ public function setSearchDisableIndexingEncryptedItems($val) { $this->_propDict["searchDisableIndexingEncryptedItems"] = boolval($val); return $this; } /** * Gets the searchDisableIndexingRemovableDrive * Indicates whether or not to allow users to add locations on removable drives to libraries and to be indexed. * * @return bool|null The searchDisableIndexingRemovableDrive */ public function getSearchDisableIndexingRemovableDrive() { if (array_key_exists("searchDisableIndexingRemovableDrive", $this->_propDict)) { return $this->_propDict["searchDisableIndexingRemovableDrive"]; } else { return null; } } /** * Sets the searchDisableIndexingRemovableDrive * Indicates whether or not to allow users to add locations on removable drives to libraries and to be indexed. * * @param bool $val The searchDisableIndexingRemovableDrive * * @return Windows10GeneralConfiguration */ public function setSearchDisableIndexingRemovableDrive($val) { $this->_propDict["searchDisableIndexingRemovableDrive"] = boolval($val); return $this; } /** * Gets the searchDisableLocation * Specifies if search can use location information. * * @return bool|null The searchDisableLocation */ public function getSearchDisableLocation() { if (array_key_exists("searchDisableLocation", $this->_propDict)) { return $this->_propDict["searchDisableLocation"]; } else { return null; } } /** * Sets the searchDisableLocation * Specifies if search can use location information. * * @param bool $val The searchDisableLocation * * @return Windows10GeneralConfiguration */ public function setSearchDisableLocation($val) { $this->_propDict["searchDisableLocation"] = boolval($val); return $this; } /** * Gets the searchDisableUseLocation * Specifies if search can use location information. * * @return bool|null The searchDisableUseLocation */ public function getSearchDisableUseLocation() { if (array_key_exists("searchDisableUseLocation", $this->_propDict)) { return $this->_propDict["searchDisableUseLocation"]; } else { return null; } } /** * Sets the searchDisableUseLocation * Specifies if search can use location information. * * @param bool $val The searchDisableUseLocation * * @return Windows10GeneralConfiguration */ public function setSearchDisableUseLocation($val) { $this->_propDict["searchDisableUseLocation"] = boolval($val); return $this; } /** * Gets the searchEnableAutomaticIndexSizeManangement * Specifies minimum amount of hard drive space on the same drive as the index location before indexing stops. * * @return bool|null The searchEnableAutomaticIndexSizeManangement */ public function getSearchEnableAutomaticIndexSizeManangement() { if (array_key_exists("searchEnableAutomaticIndexSizeManangement", $this->_propDict)) { return $this->_propDict["searchEnableAutomaticIndexSizeManangement"]; } else { return null; } } /** * Sets the searchEnableAutomaticIndexSizeManangement * Specifies minimum amount of hard drive space on the same drive as the index location before indexing stops. * * @param bool $val The searchEnableAutomaticIndexSizeManangement * * @return Windows10GeneralConfiguration */ public function setSearchEnableAutomaticIndexSizeManangement($val) { $this->_propDict["searchEnableAutomaticIndexSizeManangement"] = boolval($val); return $this; } /** * Gets the searchEnableRemoteQueries * Indicates whether or not to block remote queries of this computer’s index. * * @return bool|null The searchEnableRemoteQueries */ public function getSearchEnableRemoteQueries() { if (array_key_exists("searchEnableRemoteQueries", $this->_propDict)) { return $this->_propDict["searchEnableRemoteQueries"]; } else { return null; } } /** * Sets the searchEnableRemoteQueries * Indicates whether or not to block remote queries of this computer’s index. * * @param bool $val The searchEnableRemoteQueries * * @return Windows10GeneralConfiguration */ public function setSearchEnableRemoteQueries($val) { $this->_propDict["searchEnableRemoteQueries"] = boolval($val); return $this; } /** * Gets the securityBlockAzureADJoinedDevicesAutoEncryption * Specify whether to allow automatic device encryption during OOBE when the device is Azure AD joined (desktop only). * * @return bool|null The securityBlockAzureADJoinedDevicesAutoEncryption */ public function getSecurityBlockAzureADJoinedDevicesAutoEncryption() { if (array_key_exists("securityBlockAzureADJoinedDevicesAutoEncryption", $this->_propDict)) { return $this->_propDict["securityBlockAzureADJoinedDevicesAutoEncryption"]; } else { return null; } } /** * Sets the securityBlockAzureADJoinedDevicesAutoEncryption * Specify whether to allow automatic device encryption during OOBE when the device is Azure AD joined (desktop only). * * @param bool $val The securityBlockAzureADJoinedDevicesAutoEncryption * * @return Windows10GeneralConfiguration */ public function setSecurityBlockAzureADJoinedDevicesAutoEncryption($val) { $this->_propDict["securityBlockAzureADJoinedDevicesAutoEncryption"] = boolval($val); return $this; } /** * Gets the settingsBlockAccountsPage * Indicates whether or not to block access to Accounts in Settings app. * * @return bool|null The settingsBlockAccountsPage */ public function getSettingsBlockAccountsPage() { if (array_key_exists("settingsBlockAccountsPage", $this->_propDict)) { return $this->_propDict["settingsBlockAccountsPage"]; } else { return null; } } /** * Sets the settingsBlockAccountsPage * Indicates whether or not to block access to Accounts in Settings app. * * @param bool $val The settingsBlockAccountsPage * * @return Windows10GeneralConfiguration */ public function setSettingsBlockAccountsPage($val) { $this->_propDict["settingsBlockAccountsPage"] = boolval($val); return $this; } /** * Gets the settingsBlockAddProvisioningPackage * Indicates whether or not to block the user from installing provisioning packages. * * @return bool|null The settingsBlockAddProvisioningPackage */ public function getSettingsBlockAddProvisioningPackage() { if (array_key_exists("settingsBlockAddProvisioningPackage", $this->_propDict)) { return $this->_propDict["settingsBlockAddProvisioningPackage"]; } else { return null; } } /** * Sets the settingsBlockAddProvisioningPackage * Indicates whether or not to block the user from installing provisioning packages. * * @param bool $val The settingsBlockAddProvisioningPackage * * @return Windows10GeneralConfiguration */ public function setSettingsBlockAddProvisioningPackage($val) { $this->_propDict["settingsBlockAddProvisioningPackage"] = boolval($val); return $this; } /** * Gets the settingsBlockAppsPage * Indicates whether or not to block access to Apps in Settings app. * * @return bool|null The settingsBlockAppsPage */ public function getSettingsBlockAppsPage() { if (array_key_exists("settingsBlockAppsPage", $this->_propDict)) { return $this->_propDict["settingsBlockAppsPage"]; } else { return null; } } /** * Sets the settingsBlockAppsPage * Indicates whether or not to block access to Apps in Settings app. * * @param bool $val The settingsBlockAppsPage * * @return Windows10GeneralConfiguration */ public function setSettingsBlockAppsPage($val) { $this->_propDict["settingsBlockAppsPage"] = boolval($val); return $this; } /** * Gets the settingsBlockChangeLanguage * Indicates whether or not to block the user from changing the language settings. * * @return bool|null The settingsBlockChangeLanguage */ public function getSettingsBlockChangeLanguage() { if (array_key_exists("settingsBlockChangeLanguage", $this->_propDict)) { return $this->_propDict["settingsBlockChangeLanguage"]; } else { return null; } } /** * Sets the settingsBlockChangeLanguage * Indicates whether or not to block the user from changing the language settings. * * @param bool $val The settingsBlockChangeLanguage * * @return Windows10GeneralConfiguration */ public function setSettingsBlockChangeLanguage($val) { $this->_propDict["settingsBlockChangeLanguage"] = boolval($val); return $this; } /** * Gets the settingsBlockChangePowerSleep * Indicates whether or not to block the user from changing power and sleep settings. * * @return bool|null The settingsBlockChangePowerSleep */ public function getSettingsBlockChangePowerSleep() { if (array_key_exists("settingsBlockChangePowerSleep", $this->_propDict)) { return $this->_propDict["settingsBlockChangePowerSleep"]; } else { return null; } } /** * Sets the settingsBlockChangePowerSleep * Indicates whether or not to block the user from changing power and sleep settings. * * @param bool $val The settingsBlockChangePowerSleep * * @return Windows10GeneralConfiguration */ public function setSettingsBlockChangePowerSleep($val) { $this->_propDict["settingsBlockChangePowerSleep"] = boolval($val); return $this; } /** * Gets the settingsBlockChangeRegion * Indicates whether or not to block the user from changing the region settings. * * @return bool|null The settingsBlockChangeRegion */ public function getSettingsBlockChangeRegion() { if (array_key_exists("settingsBlockChangeRegion", $this->_propDict)) { return $this->_propDict["settingsBlockChangeRegion"]; } else { return null; } } /** * Sets the settingsBlockChangeRegion * Indicates whether or not to block the user from changing the region settings. * * @param bool $val The settingsBlockChangeRegion * * @return Windows10GeneralConfiguration */ public function setSettingsBlockChangeRegion($val) { $this->_propDict["settingsBlockChangeRegion"] = boolval($val); return $this; } /** * Gets the settingsBlockChangeSystemTime * Indicates whether or not to block the user from changing date and time settings. * * @return bool|null The settingsBlockChangeSystemTime */ public function getSettingsBlockChangeSystemTime() { if (array_key_exists("settingsBlockChangeSystemTime", $this->_propDict)) { return $this->_propDict["settingsBlockChangeSystemTime"]; } else { return null; } } /** * Sets the settingsBlockChangeSystemTime * Indicates whether or not to block the user from changing date and time settings. * * @param bool $val The settingsBlockChangeSystemTime * * @return Windows10GeneralConfiguration */ public function setSettingsBlockChangeSystemTime($val) { $this->_propDict["settingsBlockChangeSystemTime"] = boolval($val); return $this; } /** * Gets the settingsBlockDevicesPage * Indicates whether or not to block access to Devices in Settings app. * * @return bool|null The settingsBlockDevicesPage */ public function getSettingsBlockDevicesPage() { if (array_key_exists("settingsBlockDevicesPage", $this->_propDict)) { return $this->_propDict["settingsBlockDevicesPage"]; } else { return null; } } /** * Sets the settingsBlockDevicesPage * Indicates whether or not to block access to Devices in Settings app. * * @param bool $val The settingsBlockDevicesPage * * @return Windows10GeneralConfiguration */ public function setSettingsBlockDevicesPage($val) { $this->_propDict["settingsBlockDevicesPage"] = boolval($val); return $this; } /** * Gets the settingsBlockEaseOfAccessPage * Indicates whether or not to block access to Ease of Access in Settings app. * * @return bool|null The settingsBlockEaseOfAccessPage */ public function getSettingsBlockEaseOfAccessPage() { if (array_key_exists("settingsBlockEaseOfAccessPage", $this->_propDict)) { return $this->_propDict["settingsBlockEaseOfAccessPage"]; } else { return null; } } /** * Sets the settingsBlockEaseOfAccessPage * Indicates whether or not to block access to Ease of Access in Settings app. * * @param bool $val The settingsBlockEaseOfAccessPage * * @return Windows10GeneralConfiguration */ public function setSettingsBlockEaseOfAccessPage($val) { $this->_propDict["settingsBlockEaseOfAccessPage"] = boolval($val); return $this; } /** * Gets the settingsBlockEditDeviceName * Indicates whether or not to block the user from editing the device name. * * @return bool|null The settingsBlockEditDeviceName */ public function getSettingsBlockEditDeviceName() { if (array_key_exists("settingsBlockEditDeviceName", $this->_propDict)) { return $this->_propDict["settingsBlockEditDeviceName"]; } else { return null; } } /** * Sets the settingsBlockEditDeviceName * Indicates whether or not to block the user from editing the device name. * * @param bool $val The settingsBlockEditDeviceName * * @return Windows10GeneralConfiguration */ public function setSettingsBlockEditDeviceName($val) { $this->_propDict["settingsBlockEditDeviceName"] = boolval($val); return $this; } /** * Gets the settingsBlockGamingPage * Indicates whether or not to block access to Gaming in Settings app. * * @return bool|null The settingsBlockGamingPage */ public function getSettingsBlockGamingPage() { if (array_key_exists("settingsBlockGamingPage", $this->_propDict)) { return $this->_propDict["settingsBlockGamingPage"]; } else { return null; } } /** * Sets the settingsBlockGamingPage * Indicates whether or not to block access to Gaming in Settings app. * * @param bool $val The settingsBlockGamingPage * * @return Windows10GeneralConfiguration */ public function setSettingsBlockGamingPage($val) { $this->_propDict["settingsBlockGamingPage"] = boolval($val); return $this; } /** * Gets the settingsBlockNetworkInternetPage * Indicates whether or not to block access to Network & Internet in Settings app. * * @return bool|null The settingsBlockNetworkInternetPage */ public function getSettingsBlockNetworkInternetPage() { if (array_key_exists("settingsBlockNetworkInternetPage", $this->_propDict)) { return $this->_propDict["settingsBlockNetworkInternetPage"]; } else { return null; } } /** * Sets the settingsBlockNetworkInternetPage * Indicates whether or not to block access to Network & Internet in Settings app. * * @param bool $val The settingsBlockNetworkInternetPage * * @return Windows10GeneralConfiguration */ public function setSettingsBlockNetworkInternetPage($val) { $this->_propDict["settingsBlockNetworkInternetPage"] = boolval($val); return $this; } /** * Gets the settingsBlockPersonalizationPage * Indicates whether or not to block access to Personalization in Settings app. * * @return bool|null The settingsBlockPersonalizationPage */ public function getSettingsBlockPersonalizationPage() { if (array_key_exists("settingsBlockPersonalizationPage", $this->_propDict)) { return $this->_propDict["settingsBlockPersonalizationPage"]; } else { return null; } } /** * Sets the settingsBlockPersonalizationPage * Indicates whether or not to block access to Personalization in Settings app. * * @param bool $val The settingsBlockPersonalizationPage * * @return Windows10GeneralConfiguration */ public function setSettingsBlockPersonalizationPage($val) { $this->_propDict["settingsBlockPersonalizationPage"] = boolval($val); return $this; } /** * Gets the settingsBlockPrivacyPage * Indicates whether or not to block access to Privacy in Settings app. * * @return bool|null The settingsBlockPrivacyPage */ public function getSettingsBlockPrivacyPage() { if (array_key_exists("settingsBlockPrivacyPage", $this->_propDict)) { return $this->_propDict["settingsBlockPrivacyPage"]; } else { return null; } } /** * Sets the settingsBlockPrivacyPage * Indicates whether or not to block access to Privacy in Settings app. * * @param bool $val The settingsBlockPrivacyPage * * @return Windows10GeneralConfiguration */ public function setSettingsBlockPrivacyPage($val) { $this->_propDict["settingsBlockPrivacyPage"] = boolval($val); return $this; } /** * Gets the settingsBlockRemoveProvisioningPackage * Indicates whether or not to block the runtime configuration agent from removing provisioning packages. * * @return bool|null The settingsBlockRemoveProvisioningPackage */ public function getSettingsBlockRemoveProvisioningPackage() { if (array_key_exists("settingsBlockRemoveProvisioningPackage", $this->_propDict)) { return $this->_propDict["settingsBlockRemoveProvisioningPackage"]; } else { return null; } } /** * Sets the settingsBlockRemoveProvisioningPackage * Indicates whether or not to block the runtime configuration agent from removing provisioning packages. * * @param bool $val The settingsBlockRemoveProvisioningPackage * * @return Windows10GeneralConfiguration */ public function setSettingsBlockRemoveProvisioningPackage($val) { $this->_propDict["settingsBlockRemoveProvisioningPackage"] = boolval($val); return $this; } /** * Gets the settingsBlockSettingsApp * Indicates whether or not to block access to Settings app. * * @return bool|null The settingsBlockSettingsApp */ public function getSettingsBlockSettingsApp() { if (array_key_exists("settingsBlockSettingsApp", $this->_propDict)) { return $this->_propDict["settingsBlockSettingsApp"]; } else { return null; } } /** * Sets the settingsBlockSettingsApp * Indicates whether or not to block access to Settings app. * * @param bool $val The settingsBlockSettingsApp * * @return Windows10GeneralConfiguration */ public function setSettingsBlockSettingsApp($val) { $this->_propDict["settingsBlockSettingsApp"] = boolval($val); return $this; } /** * Gets the settingsBlockSystemPage * Indicates whether or not to block access to System in Settings app. * * @return bool|null The settingsBlockSystemPage */ public function getSettingsBlockSystemPage() { if (array_key_exists("settingsBlockSystemPage", $this->_propDict)) { return $this->_propDict["settingsBlockSystemPage"]; } else { return null; } } /** * Sets the settingsBlockSystemPage * Indicates whether or not to block access to System in Settings app. * * @param bool $val The settingsBlockSystemPage * * @return Windows10GeneralConfiguration */ public function setSettingsBlockSystemPage($val) { $this->_propDict["settingsBlockSystemPage"] = boolval($val); return $this; } /** * Gets the settingsBlockTimeLanguagePage * Indicates whether or not to block access to Time & Language in Settings app. * * @return bool|null The settingsBlockTimeLanguagePage */ public function getSettingsBlockTimeLanguagePage() { if (array_key_exists("settingsBlockTimeLanguagePage", $this->_propDict)) { return $this->_propDict["settingsBlockTimeLanguagePage"]; } else { return null; } } /** * Sets the settingsBlockTimeLanguagePage * Indicates whether or not to block access to Time & Language in Settings app. * * @param bool $val The settingsBlockTimeLanguagePage * * @return Windows10GeneralConfiguration */ public function setSettingsBlockTimeLanguagePage($val) { $this->_propDict["settingsBlockTimeLanguagePage"] = boolval($val); return $this; } /** * Gets the settingsBlockUpdateSecurityPage * Indicates whether or not to block access to Update & Security in Settings app. * * @return bool|null The settingsBlockUpdateSecurityPage */ public function getSettingsBlockUpdateSecurityPage() { if (array_key_exists("settingsBlockUpdateSecurityPage", $this->_propDict)) { return $this->_propDict["settingsBlockUpdateSecurityPage"]; } else { return null; } } /** * Sets the settingsBlockUpdateSecurityPage * Indicates whether or not to block access to Update & Security in Settings app. * * @param bool $val The settingsBlockUpdateSecurityPage * * @return Windows10GeneralConfiguration */ public function setSettingsBlockUpdateSecurityPage($val) { $this->_propDict["settingsBlockUpdateSecurityPage"] = boolval($val); return $this; } /** * Gets the sharedUserAppDataAllowed * Indicates whether or not to block multiple users of the same app to share data. * * @return bool|null The sharedUserAppDataAllowed */ public function getSharedUserAppDataAllowed() { if (array_key_exists("sharedUserAppDataAllowed", $this->_propDict)) { return $this->_propDict["sharedUserAppDataAllowed"]; } else { return null; } } /** * Sets the sharedUserAppDataAllowed * Indicates whether or not to block multiple users of the same app to share data. * * @param bool $val The sharedUserAppDataAllowed * * @return Windows10GeneralConfiguration */ public function setSharedUserAppDataAllowed($val) { $this->_propDict["sharedUserAppDataAllowed"] = boolval($val); return $this; } /** * Gets the smartScreenAppInstallControl * Added in Windows 10, version 1703. Allows IT Admins to control whether users are allowed to install apps from places other than the Store. Possible values are: notConfigured, anywhere, storeOnly, recommendations, preferStore. * * @return AppInstallControlType|null The smartScreenAppInstallControl */ public function getSmartScreenAppInstallControl() { if (array_key_exists("smartScreenAppInstallControl", $this->_propDict)) { if (is_a($this->_propDict["smartScreenAppInstallControl"], "\Beta\Microsoft\Graph\Model\AppInstallControlType") || is_null($this->_propDict["smartScreenAppInstallControl"])) { return $this->_propDict["smartScreenAppInstallControl"]; } else { $this->_propDict["smartScreenAppInstallControl"] = new AppInstallControlType($this->_propDict["smartScreenAppInstallControl"]); return $this->_propDict["smartScreenAppInstallControl"]; } } return null; } /** * Sets the smartScreenAppInstallControl * Added in Windows 10, version 1703. Allows IT Admins to control whether users are allowed to install apps from places other than the Store. Possible values are: notConfigured, anywhere, storeOnly, recommendations, preferStore. * * @param AppInstallControlType $val The smartScreenAppInstallControl * * @return Windows10GeneralConfiguration */ public function setSmartScreenAppInstallControl($val) { $this->_propDict["smartScreenAppInstallControl"] = $val; return $this; } /** * Gets the smartScreenBlockPromptOverride * Indicates whether or not users can override SmartScreen Filter warnings about potentially malicious websites. * * @return bool|null The smartScreenBlockPromptOverride */ public function getSmartScreenBlockPromptOverride() { if (array_key_exists("smartScreenBlockPromptOverride", $this->_propDict)) { return $this->_propDict["smartScreenBlockPromptOverride"]; } else { return null; } } /** * Sets the smartScreenBlockPromptOverride * Indicates whether or not users can override SmartScreen Filter warnings about potentially malicious websites. * * @param bool $val The smartScreenBlockPromptOverride * * @return Windows10GeneralConfiguration */ public function setSmartScreenBlockPromptOverride($val) { $this->_propDict["smartScreenBlockPromptOverride"] = boolval($val); return $this; } /** * Gets the smartScreenBlockPromptOverrideForFiles * Indicates whether or not users can override the SmartScreen Filter warnings about downloading unverified files * * @return bool|null The smartScreenBlockPromptOverrideForFiles */ public function getSmartScreenBlockPromptOverrideForFiles() { if (array_key_exists("smartScreenBlockPromptOverrideForFiles", $this->_propDict)) { return $this->_propDict["smartScreenBlockPromptOverrideForFiles"]; } else { return null; } } /** * Sets the smartScreenBlockPromptOverrideForFiles * Indicates whether or not users can override the SmartScreen Filter warnings about downloading unverified files * * @param bool $val The smartScreenBlockPromptOverrideForFiles * * @return Windows10GeneralConfiguration */ public function setSmartScreenBlockPromptOverrideForFiles($val) { $this->_propDict["smartScreenBlockPromptOverrideForFiles"] = boolval($val); return $this; } /** * Gets the smartScreenEnableAppInstallControl * This property will be deprecated in July 2019 and will be replaced by property SmartScreenAppInstallControl. Allows IT Admins to control whether users are allowed to install apps from places other than the Store. * * @return bool|null The smartScreenEnableAppInstallControl */ public function getSmartScreenEnableAppInstallControl() { if (array_key_exists("smartScreenEnableAppInstallControl", $this->_propDict)) { return $this->_propDict["smartScreenEnableAppInstallControl"]; } else { return null; } } /** * Sets the smartScreenEnableAppInstallControl * This property will be deprecated in July 2019 and will be replaced by property SmartScreenAppInstallControl. Allows IT Admins to control whether users are allowed to install apps from places other than the Store. * * @param bool $val The smartScreenEnableAppInstallControl * * @return Windows10GeneralConfiguration */ public function setSmartScreenEnableAppInstallControl($val) { $this->_propDict["smartScreenEnableAppInstallControl"] = boolval($val); return $this; } /** * Gets the startBlockUnpinningAppsFromTaskbar * Indicates whether or not to block the user from unpinning apps from taskbar. * * @return bool|null The startBlockUnpinningAppsFromTaskbar */ public function getStartBlockUnpinningAppsFromTaskbar() { if (array_key_exists("startBlockUnpinningAppsFromTaskbar", $this->_propDict)) { return $this->_propDict["startBlockUnpinningAppsFromTaskbar"]; } else { return null; } } /** * Sets the startBlockUnpinningAppsFromTaskbar * Indicates whether or not to block the user from unpinning apps from taskbar. * * @param bool $val The startBlockUnpinningAppsFromTaskbar * * @return Windows10GeneralConfiguration */ public function setStartBlockUnpinningAppsFromTaskbar($val) { $this->_propDict["startBlockUnpinningAppsFromTaskbar"] = boolval($val); return $this; } /** * Gets the startMenuAppListVisibility * Setting the value of this collapses the app list, removes the app list entirely, or disables the corresponding toggle in the Settings app. Possible values are: userDefined, collapse, remove, disableSettingsApp. * * @return WindowsStartMenuAppListVisibilityType|null The startMenuAppListVisibility */ public function getStartMenuAppListVisibility() { if (array_key_exists("startMenuAppListVisibility", $this->_propDict)) { if (is_a($this->_propDict["startMenuAppListVisibility"], "\Beta\Microsoft\Graph\Model\WindowsStartMenuAppListVisibilityType") || is_null($this->_propDict["startMenuAppListVisibility"])) { return $this->_propDict["startMenuAppListVisibility"]; } else { $this->_propDict["startMenuAppListVisibility"] = new WindowsStartMenuAppListVisibilityType($this->_propDict["startMenuAppListVisibility"]); return $this->_propDict["startMenuAppListVisibility"]; } } return null; } /** * Sets the startMenuAppListVisibility * Setting the value of this collapses the app list, removes the app list entirely, or disables the corresponding toggle in the Settings app. Possible values are: userDefined, collapse, remove, disableSettingsApp. * * @param WindowsStartMenuAppListVisibilityType $val The startMenuAppListVisibility * * @return Windows10GeneralConfiguration */ public function setStartMenuAppListVisibility($val) { $this->_propDict["startMenuAppListVisibility"] = $val; return $this; } /** * Gets the startMenuHideChangeAccountSettings * Enabling this policy hides the change account setting from appearing in the user tile in the start menu. * * @return bool|null The startMenuHideChangeAccountSettings */ public function getStartMenuHideChangeAccountSettings() { if (array_key_exists("startMenuHideChangeAccountSettings", $this->_propDict)) { return $this->_propDict["startMenuHideChangeAccountSettings"]; } else { return null; } } /** * Sets the startMenuHideChangeAccountSettings * Enabling this policy hides the change account setting from appearing in the user tile in the start menu. * * @param bool $val The startMenuHideChangeAccountSettings * * @return Windows10GeneralConfiguration */ public function setStartMenuHideChangeAccountSettings($val) { $this->_propDict["startMenuHideChangeAccountSettings"] = boolval($val); return $this; } /** * Gets the startMenuHideFrequentlyUsedApps * Enabling this policy hides the most used apps from appearing on the start menu and disables the corresponding toggle in the Settings app. * * @return bool|null The startMenuHideFrequentlyUsedApps */ public function getStartMenuHideFrequentlyUsedApps() { if (array_key_exists("startMenuHideFrequentlyUsedApps", $this->_propDict)) { return $this->_propDict["startMenuHideFrequentlyUsedApps"]; } else { return null; } } /** * Sets the startMenuHideFrequentlyUsedApps * Enabling this policy hides the most used apps from appearing on the start menu and disables the corresponding toggle in the Settings app. * * @param bool $val The startMenuHideFrequentlyUsedApps * * @return Windows10GeneralConfiguration */ public function setStartMenuHideFrequentlyUsedApps($val) { $this->_propDict["startMenuHideFrequentlyUsedApps"] = boolval($val); return $this; } /** * Gets the startMenuHideHibernate * Enabling this policy hides hibernate from appearing in the power button in the start menu. * * @return bool|null The startMenuHideHibernate */ public function getStartMenuHideHibernate() { if (array_key_exists("startMenuHideHibernate", $this->_propDict)) { return $this->_propDict["startMenuHideHibernate"]; } else { return null; } } /** * Sets the startMenuHideHibernate * Enabling this policy hides hibernate from appearing in the power button in the start menu. * * @param bool $val The startMenuHideHibernate * * @return Windows10GeneralConfiguration */ public function setStartMenuHideHibernate($val) { $this->_propDict["startMenuHideHibernate"] = boolval($val); return $this; } /** * Gets the startMenuHideLock * Enabling this policy hides lock from appearing in the user tile in the start menu. * * @return bool|null The startMenuHideLock */ public function getStartMenuHideLock() { if (array_key_exists("startMenuHideLock", $this->_propDict)) { return $this->_propDict["startMenuHideLock"]; } else { return null; } } /** * Sets the startMenuHideLock * Enabling this policy hides lock from appearing in the user tile in the start menu. * * @param bool $val The startMenuHideLock * * @return Windows10GeneralConfiguration */ public function setStartMenuHideLock($val) { $this->_propDict["startMenuHideLock"] = boolval($val); return $this; } /** * Gets the startMenuHidePowerButton * Enabling this policy hides the power button from appearing in the start menu. * * @return bool|null The startMenuHidePowerButton */ public function getStartMenuHidePowerButton() { if (array_key_exists("startMenuHidePowerButton", $this->_propDict)) { return $this->_propDict["startMenuHidePowerButton"]; } else { return null; } } /** * Sets the startMenuHidePowerButton * Enabling this policy hides the power button from appearing in the start menu. * * @param bool $val The startMenuHidePowerButton * * @return Windows10GeneralConfiguration */ public function setStartMenuHidePowerButton($val) { $this->_propDict["startMenuHidePowerButton"] = boolval($val); return $this; } /** * Gets the startMenuHideRecentJumpLists * Enabling this policy hides recent jump lists from appearing on the start menu/taskbar and disables the corresponding toggle in the Settings app. * * @return bool|null The startMenuHideRecentJumpLists */ public function getStartMenuHideRecentJumpLists() { if (array_key_exists("startMenuHideRecentJumpLists", $this->_propDict)) { return $this->_propDict["startMenuHideRecentJumpLists"]; } else { return null; } } /** * Sets the startMenuHideRecentJumpLists * Enabling this policy hides recent jump lists from appearing on the start menu/taskbar and disables the corresponding toggle in the Settings app. * * @param bool $val The startMenuHideRecentJumpLists * * @return Windows10GeneralConfiguration */ public function setStartMenuHideRecentJumpLists($val) { $this->_propDict["startMenuHideRecentJumpLists"] = boolval($val); return $this; } /** * Gets the startMenuHideRecentlyAddedApps * Enabling this policy hides recently added apps from appearing on the start menu and disables the corresponding toggle in the Settings app. * * @return bool|null The startMenuHideRecentlyAddedApps */ public function getStartMenuHideRecentlyAddedApps() { if (array_key_exists("startMenuHideRecentlyAddedApps", $this->_propDict)) { return $this->_propDict["startMenuHideRecentlyAddedApps"]; } else { return null; } } /** * Sets the startMenuHideRecentlyAddedApps * Enabling this policy hides recently added apps from appearing on the start menu and disables the corresponding toggle in the Settings app. * * @param bool $val The startMenuHideRecentlyAddedApps * * @return Windows10GeneralConfiguration */ public function setStartMenuHideRecentlyAddedApps($val) { $this->_propDict["startMenuHideRecentlyAddedApps"] = boolval($val); return $this; } /** * Gets the startMenuHideRestartOptions * Enabling this policy hides 'Restart/Update and Restart' from appearing in the power button in the start menu. * * @return bool|null The startMenuHideRestartOptions */ public function getStartMenuHideRestartOptions() { if (array_key_exists("startMenuHideRestartOptions", $this->_propDict)) { return $this->_propDict["startMenuHideRestartOptions"]; } else { return null; } } /** * Sets the startMenuHideRestartOptions * Enabling this policy hides 'Restart/Update and Restart' from appearing in the power button in the start menu. * * @param bool $val The startMenuHideRestartOptions * * @return Windows10GeneralConfiguration */ public function setStartMenuHideRestartOptions($val) { $this->_propDict["startMenuHideRestartOptions"] = boolval($val); return $this; } /** * Gets the startMenuHideShutDown * Enabling this policy hides shut down/update and shut down from appearing in the power button in the start menu. * * @return bool|null The startMenuHideShutDown */ public function getStartMenuHideShutDown() { if (array_key_exists("startMenuHideShutDown", $this->_propDict)) { return $this->_propDict["startMenuHideShutDown"]; } else { return null; } } /** * Sets the startMenuHideShutDown * Enabling this policy hides shut down/update and shut down from appearing in the power button in the start menu. * * @param bool $val The startMenuHideShutDown * * @return Windows10GeneralConfiguration */ public function setStartMenuHideShutDown($val) { $this->_propDict["startMenuHideShutDown"] = boolval($val); return $this; } /** * Gets the startMenuHideSignOut * Enabling this policy hides sign out from appearing in the user tile in the start menu. * * @return bool|null The startMenuHideSignOut */ public function getStartMenuHideSignOut() { if (array_key_exists("startMenuHideSignOut", $this->_propDict)) { return $this->_propDict["startMenuHideSignOut"]; } else { return null; } } /** * Sets the startMenuHideSignOut * Enabling this policy hides sign out from appearing in the user tile in the start menu. * * @param bool $val The startMenuHideSignOut * * @return Windows10GeneralConfiguration */ public function setStartMenuHideSignOut($val) { $this->_propDict["startMenuHideSignOut"] = boolval($val); return $this; } /** * Gets the startMenuHideSleep * Enabling this policy hides sleep from appearing in the power button in the start menu. * * @return bool|null The startMenuHideSleep */ public function getStartMenuHideSleep() { if (array_key_exists("startMenuHideSleep", $this->_propDict)) { return $this->_propDict["startMenuHideSleep"]; } else { return null; } } /** * Sets the startMenuHideSleep * Enabling this policy hides sleep from appearing in the power button in the start menu. * * @param bool $val The startMenuHideSleep * * @return Windows10GeneralConfiguration */ public function setStartMenuHideSleep($val) { $this->_propDict["startMenuHideSleep"] = boolval($val); return $this; } /** * Gets the startMenuHideSwitchAccount * Enabling this policy hides switch account from appearing in the user tile in the start menu. * * @return bool|null The startMenuHideSwitchAccount */ public function getStartMenuHideSwitchAccount() { if (array_key_exists("startMenuHideSwitchAccount", $this->_propDict)) { return $this->_propDict["startMenuHideSwitchAccount"]; } else { return null; } } /** * Sets the startMenuHideSwitchAccount * Enabling this policy hides switch account from appearing in the user tile in the start menu. * * @param bool $val The startMenuHideSwitchAccount * * @return Windows10GeneralConfiguration */ public function setStartMenuHideSwitchAccount($val) { $this->_propDict["startMenuHideSwitchAccount"] = boolval($val); return $this; } /** * Gets the startMenuHideUserTile * Enabling this policy hides the user tile from appearing in the start menu. * * @return bool|null The startMenuHideUserTile */ public function getStartMenuHideUserTile() { if (array_key_exists("startMenuHideUserTile", $this->_propDict)) { return $this->_propDict["startMenuHideUserTile"]; } else { return null; } } /** * Sets the startMenuHideUserTile * Enabling this policy hides the user tile from appearing in the start menu. * * @param bool $val The startMenuHideUserTile * * @return Windows10GeneralConfiguration */ public function setStartMenuHideUserTile($val) { $this->_propDict["startMenuHideUserTile"] = boolval($val); return $this; } /** * Gets the startMenuLayoutEdgeAssetsXml * This policy setting allows you to import Edge assets to be used with startMenuLayoutXml policy. Start layout can contain secondary tile from Edge app which looks for Edge local asset file. Edge local asset would not exist and cause Edge secondary tile to appear empty in this case. This policy only gets applied when startMenuLayoutXml policy is modified. The value should be a UTF-8 Base64 encoded byte array. * * @return \GuzzleHttp\Psr7\Stream|null The startMenuLayoutEdgeAssetsXml */ public function getStartMenuLayoutEdgeAssetsXml() { if (array_key_exists("startMenuLayoutEdgeAssetsXml", $this->_propDict)) { if (is_a($this->_propDict["startMenuLayoutEdgeAssetsXml"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["startMenuLayoutEdgeAssetsXml"])) { return $this->_propDict["startMenuLayoutEdgeAssetsXml"]; } else { $this->_propDict["startMenuLayoutEdgeAssetsXml"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["startMenuLayoutEdgeAssetsXml"]); return $this->_propDict["startMenuLayoutEdgeAssetsXml"]; } } return null; } /** * Sets the startMenuLayoutEdgeAssetsXml * This policy setting allows you to import Edge assets to be used with startMenuLayoutXml policy. Start layout can contain secondary tile from Edge app which looks for Edge local asset file. Edge local asset would not exist and cause Edge secondary tile to appear empty in this case. This policy only gets applied when startMenuLayoutXml policy is modified. The value should be a UTF-8 Base64 encoded byte array. * * @param \GuzzleHttp\Psr7\Stream $val The startMenuLayoutEdgeAssetsXml * * @return Windows10GeneralConfiguration */ public function setStartMenuLayoutEdgeAssetsXml($val) { $this->_propDict["startMenuLayoutEdgeAssetsXml"] = $val; return $this; } /** * Gets the startMenuLayoutXml * Allows admins to override the default Start menu layout and prevents the user from changing it. The layout is modified by specifying an XML file based on a layout modification schema. XML needs to be in a UTF8 encoded byte array format. * * @return \GuzzleHttp\Psr7\Stream|null The startMenuLayoutXml */ public function getStartMenuLayoutXml() { if (array_key_exists("startMenuLayoutXml", $this->_propDict)) { if (is_a($this->_propDict["startMenuLayoutXml"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["startMenuLayoutXml"])) { return $this->_propDict["startMenuLayoutXml"]; } else { $this->_propDict["startMenuLayoutXml"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["startMenuLayoutXml"]); return $this->_propDict["startMenuLayoutXml"]; } } return null; } /** * Sets the startMenuLayoutXml * Allows admins to override the default Start menu layout and prevents the user from changing it. The layout is modified by specifying an XML file based on a layout modification schema. XML needs to be in a UTF8 encoded byte array format. * * @param \GuzzleHttp\Psr7\Stream $val The startMenuLayoutXml * * @return Windows10GeneralConfiguration */ public function setStartMenuLayoutXml($val) { $this->_propDict["startMenuLayoutXml"] = $val; return $this; } /** * Gets the startMenuMode * Allows admins to decide how the Start menu is displayed. Possible values are: userDefined, fullScreen, nonFullScreen. * * @return WindowsStartMenuModeType|null The startMenuMode */ public function getStartMenuMode() { if (array_key_exists("startMenuMode", $this->_propDict)) { if (is_a($this->_propDict["startMenuMode"], "\Beta\Microsoft\Graph\Model\WindowsStartMenuModeType") || is_null($this->_propDict["startMenuMode"])) { return $this->_propDict["startMenuMode"]; } else { $this->_propDict["startMenuMode"] = new WindowsStartMenuModeType($this->_propDict["startMenuMode"]); return $this->_propDict["startMenuMode"]; } } return null; } /** * Sets the startMenuMode * Allows admins to decide how the Start menu is displayed. Possible values are: userDefined, fullScreen, nonFullScreen. * * @param WindowsStartMenuModeType $val The startMenuMode * * @return Windows10GeneralConfiguration */ public function setStartMenuMode($val) { $this->_propDict["startMenuMode"] = $val; return $this; } /** * Gets the startMenuPinnedFolderDocuments * Enforces the visibility (Show/Hide) of the Documents folder shortcut on the Start menu. Possible values are: notConfigured, hide, show. * * @return VisibilitySetting|null The startMenuPinnedFolderDocuments */ public function getStartMenuPinnedFolderDocuments() { if (array_key_exists("startMenuPinnedFolderDocuments", $this->_propDict)) { if (is_a($this->_propDict["startMenuPinnedFolderDocuments"], "\Beta\Microsoft\Graph\Model\VisibilitySetting") || is_null($this->_propDict["startMenuPinnedFolderDocuments"])) { return $this->_propDict["startMenuPinnedFolderDocuments"]; } else { $this->_propDict["startMenuPinnedFolderDocuments"] = new VisibilitySetting($this->_propDict["startMenuPinnedFolderDocuments"]); return $this->_propDict["startMenuPinnedFolderDocuments"]; } } return null; } /** * Sets the startMenuPinnedFolderDocuments * Enforces the visibility (Show/Hide) of the Documents folder shortcut on the Start menu. Possible values are: notConfigured, hide, show. * * @param VisibilitySetting $val The startMenuPinnedFolderDocuments * * @return Windows10GeneralConfiguration */ public function setStartMenuPinnedFolderDocuments($val) { $this->_propDict["startMenuPinnedFolderDocuments"] = $val; return $this; } /** * Gets the startMenuPinnedFolderDownloads * Enforces the visibility (Show/Hide) of the Downloads folder shortcut on the Start menu. Possible values are: notConfigured, hide, show. * * @return VisibilitySetting|null The startMenuPinnedFolderDownloads */ public function getStartMenuPinnedFolderDownloads() { if (array_key_exists("startMenuPinnedFolderDownloads", $this->_propDict)) { if (is_a($this->_propDict["startMenuPinnedFolderDownloads"], "\Beta\Microsoft\Graph\Model\VisibilitySetting") || is_null($this->_propDict["startMenuPinnedFolderDownloads"])) { return $this->_propDict["startMenuPinnedFolderDownloads"]; } else { $this->_propDict["startMenuPinnedFolderDownloads"] = new VisibilitySetting($this->_propDict["startMenuPinnedFolderDownloads"]); return $this->_propDict["startMenuPinnedFolderDownloads"]; } } return null; } /** * Sets the startMenuPinnedFolderDownloads * Enforces the visibility (Show/Hide) of the Downloads folder shortcut on the Start menu. Possible values are: notConfigured, hide, show. * * @param VisibilitySetting $val The startMenuPinnedFolderDownloads * * @return Windows10GeneralConfiguration */ public function setStartMenuPinnedFolderDownloads($val) { $this->_propDict["startMenuPinnedFolderDownloads"] = $val; return $this; } /** * Gets the startMenuPinnedFolderFileExplorer * Enforces the visibility (Show/Hide) of the FileExplorer shortcut on the Start menu. Possible values are: notConfigured, hide, show. * * @return VisibilitySetting|null The startMenuPinnedFolderFileExplorer */ public function getStartMenuPinnedFolderFileExplorer() { if (array_key_exists("startMenuPinnedFolderFileExplorer", $this->_propDict)) { if (is_a($this->_propDict["startMenuPinnedFolderFileExplorer"], "\Beta\Microsoft\Graph\Model\VisibilitySetting") || is_null($this->_propDict["startMenuPinnedFolderFileExplorer"])) { return $this->_propDict["startMenuPinnedFolderFileExplorer"]; } else { $this->_propDict["startMenuPinnedFolderFileExplorer"] = new VisibilitySetting($this->_propDict["startMenuPinnedFolderFileExplorer"]); return $this->_propDict["startMenuPinnedFolderFileExplorer"]; } } return null; } /** * Sets the startMenuPinnedFolderFileExplorer * Enforces the visibility (Show/Hide) of the FileExplorer shortcut on the Start menu. Possible values are: notConfigured, hide, show. * * @param VisibilitySetting $val The startMenuPinnedFolderFileExplorer * * @return Windows10GeneralConfiguration */ public function setStartMenuPinnedFolderFileExplorer($val) { $this->_propDict["startMenuPinnedFolderFileExplorer"] = $val; return $this; } /** * Gets the startMenuPinnedFolderHomeGroup * Enforces the visibility (Show/Hide) of the HomeGroup folder shortcut on the Start menu. Possible values are: notConfigured, hide, show. * * @return VisibilitySetting|null The startMenuPinnedFolderHomeGroup */ public function getStartMenuPinnedFolderHomeGroup() { if (array_key_exists("startMenuPinnedFolderHomeGroup", $this->_propDict)) { if (is_a($this->_propDict["startMenuPinnedFolderHomeGroup"], "\Beta\Microsoft\Graph\Model\VisibilitySetting") || is_null($this->_propDict["startMenuPinnedFolderHomeGroup"])) { return $this->_propDict["startMenuPinnedFolderHomeGroup"]; } else { $this->_propDict["startMenuPinnedFolderHomeGroup"] = new VisibilitySetting($this->_propDict["startMenuPinnedFolderHomeGroup"]); return $this->_propDict["startMenuPinnedFolderHomeGroup"]; } } return null; } /** * Sets the startMenuPinnedFolderHomeGroup * Enforces the visibility (Show/Hide) of the HomeGroup folder shortcut on the Start menu. Possible values are: notConfigured, hide, show. * * @param VisibilitySetting $val The startMenuPinnedFolderHomeGroup * * @return Windows10GeneralConfiguration */ public function setStartMenuPinnedFolderHomeGroup($val) { $this->_propDict["startMenuPinnedFolderHomeGroup"] = $val; return $this; } /** * Gets the startMenuPinnedFolderMusic * Enforces the visibility (Show/Hide) of the Music folder shortcut on the Start menu. Possible values are: notConfigured, hide, show. * * @return VisibilitySetting|null The startMenuPinnedFolderMusic */ public function getStartMenuPinnedFolderMusic() { if (array_key_exists("startMenuPinnedFolderMusic", $this->_propDict)) { if (is_a($this->_propDict["startMenuPinnedFolderMusic"], "\Beta\Microsoft\Graph\Model\VisibilitySetting") || is_null($this->_propDict["startMenuPinnedFolderMusic"])) { return $this->_propDict["startMenuPinnedFolderMusic"]; } else { $this->_propDict["startMenuPinnedFolderMusic"] = new VisibilitySetting($this->_propDict["startMenuPinnedFolderMusic"]); return $this->_propDict["startMenuPinnedFolderMusic"]; } } return null; } /** * Sets the startMenuPinnedFolderMusic * Enforces the visibility (Show/Hide) of the Music folder shortcut on the Start menu. Possible values are: notConfigured, hide, show. * * @param VisibilitySetting $val The startMenuPinnedFolderMusic * * @return Windows10GeneralConfiguration */ public function setStartMenuPinnedFolderMusic($val) { $this->_propDict["startMenuPinnedFolderMusic"] = $val; return $this; } /** * Gets the startMenuPinnedFolderNetwork * Enforces the visibility (Show/Hide) of the Network folder shortcut on the Start menu. Possible values are: notConfigured, hide, show. * * @return VisibilitySetting|null The startMenuPinnedFolderNetwork */ public function getStartMenuPinnedFolderNetwork() { if (array_key_exists("startMenuPinnedFolderNetwork", $this->_propDict)) { if (is_a($this->_propDict["startMenuPinnedFolderNetwork"], "\Beta\Microsoft\Graph\Model\VisibilitySetting") || is_null($this->_propDict["startMenuPinnedFolderNetwork"])) { return $this->_propDict["startMenuPinnedFolderNetwork"]; } else { $this->_propDict["startMenuPinnedFolderNetwork"] = new VisibilitySetting($this->_propDict["startMenuPinnedFolderNetwork"]); return $this->_propDict["startMenuPinnedFolderNetwork"]; } } return null; } /** * Sets the startMenuPinnedFolderNetwork * Enforces the visibility (Show/Hide) of the Network folder shortcut on the Start menu. Possible values are: notConfigured, hide, show. * * @param VisibilitySetting $val The startMenuPinnedFolderNetwork * * @return Windows10GeneralConfiguration */ public function setStartMenuPinnedFolderNetwork($val) { $this->_propDict["startMenuPinnedFolderNetwork"] = $val; return $this; } /** * Gets the startMenuPinnedFolderPersonalFolder * Enforces the visibility (Show/Hide) of the PersonalFolder shortcut on the Start menu. Possible values are: notConfigured, hide, show. * * @return VisibilitySetting|null The startMenuPinnedFolderPersonalFolder */ public function getStartMenuPinnedFolderPersonalFolder() { if (array_key_exists("startMenuPinnedFolderPersonalFolder", $this->_propDict)) { if (is_a($this->_propDict["startMenuPinnedFolderPersonalFolder"], "\Beta\Microsoft\Graph\Model\VisibilitySetting") || is_null($this->_propDict["startMenuPinnedFolderPersonalFolder"])) { return $this->_propDict["startMenuPinnedFolderPersonalFolder"]; } else { $this->_propDict["startMenuPinnedFolderPersonalFolder"] = new VisibilitySetting($this->_propDict["startMenuPinnedFolderPersonalFolder"]); return $this->_propDict["startMenuPinnedFolderPersonalFolder"]; } } return null; } /** * Sets the startMenuPinnedFolderPersonalFolder * Enforces the visibility (Show/Hide) of the PersonalFolder shortcut on the Start menu. Possible values are: notConfigured, hide, show. * * @param VisibilitySetting $val The startMenuPinnedFolderPersonalFolder * * @return Windows10GeneralConfiguration */ public function setStartMenuPinnedFolderPersonalFolder($val) { $this->_propDict["startMenuPinnedFolderPersonalFolder"] = $val; return $this; } /** * Gets the startMenuPinnedFolderPictures * Enforces the visibility (Show/Hide) of the Pictures folder shortcut on the Start menu. Possible values are: notConfigured, hide, show. * * @return VisibilitySetting|null The startMenuPinnedFolderPictures */ public function getStartMenuPinnedFolderPictures() { if (array_key_exists("startMenuPinnedFolderPictures", $this->_propDict)) { if (is_a($this->_propDict["startMenuPinnedFolderPictures"], "\Beta\Microsoft\Graph\Model\VisibilitySetting") || is_null($this->_propDict["startMenuPinnedFolderPictures"])) { return $this->_propDict["startMenuPinnedFolderPictures"]; } else { $this->_propDict["startMenuPinnedFolderPictures"] = new VisibilitySetting($this->_propDict["startMenuPinnedFolderPictures"]); return $this->_propDict["startMenuPinnedFolderPictures"]; } } return null; } /** * Sets the startMenuPinnedFolderPictures * Enforces the visibility (Show/Hide) of the Pictures folder shortcut on the Start menu. Possible values are: notConfigured, hide, show. * * @param VisibilitySetting $val The startMenuPinnedFolderPictures * * @return Windows10GeneralConfiguration */ public function setStartMenuPinnedFolderPictures($val) { $this->_propDict["startMenuPinnedFolderPictures"] = $val; return $this; } /** * Gets the startMenuPinnedFolderSettings * Enforces the visibility (Show/Hide) of the Settings folder shortcut on the Start menu. Possible values are: notConfigured, hide, show. * * @return VisibilitySetting|null The startMenuPinnedFolderSettings */ public function getStartMenuPinnedFolderSettings() { if (array_key_exists("startMenuPinnedFolderSettings", $this->_propDict)) { if (is_a($this->_propDict["startMenuPinnedFolderSettings"], "\Beta\Microsoft\Graph\Model\VisibilitySetting") || is_null($this->_propDict["startMenuPinnedFolderSettings"])) { return $this->_propDict["startMenuPinnedFolderSettings"]; } else { $this->_propDict["startMenuPinnedFolderSettings"] = new VisibilitySetting($this->_propDict["startMenuPinnedFolderSettings"]); return $this->_propDict["startMenuPinnedFolderSettings"]; } } return null; } /** * Sets the startMenuPinnedFolderSettings * Enforces the visibility (Show/Hide) of the Settings folder shortcut on the Start menu. Possible values are: notConfigured, hide, show. * * @param VisibilitySetting $val The startMenuPinnedFolderSettings * * @return Windows10GeneralConfiguration */ public function setStartMenuPinnedFolderSettings($val) { $this->_propDict["startMenuPinnedFolderSettings"] = $val; return $this; } /** * Gets the startMenuPinnedFolderVideos * Enforces the visibility (Show/Hide) of the Videos folder shortcut on the Start menu. Possible values are: notConfigured, hide, show. * * @return VisibilitySetting|null The startMenuPinnedFolderVideos */ public function getStartMenuPinnedFolderVideos() { if (array_key_exists("startMenuPinnedFolderVideos", $this->_propDict)) { if (is_a($this->_propDict["startMenuPinnedFolderVideos"], "\Beta\Microsoft\Graph\Model\VisibilitySetting") || is_null($this->_propDict["startMenuPinnedFolderVideos"])) { return $this->_propDict["startMenuPinnedFolderVideos"]; } else { $this->_propDict["startMenuPinnedFolderVideos"] = new VisibilitySetting($this->_propDict["startMenuPinnedFolderVideos"]); return $this->_propDict["startMenuPinnedFolderVideos"]; } } return null; } /** * Sets the startMenuPinnedFolderVideos * Enforces the visibility (Show/Hide) of the Videos folder shortcut on the Start menu. Possible values are: notConfigured, hide, show. * * @param VisibilitySetting $val The startMenuPinnedFolderVideos * * @return Windows10GeneralConfiguration */ public function setStartMenuPinnedFolderVideos($val) { $this->_propDict["startMenuPinnedFolderVideos"] = $val; return $this; } /** * Gets the storageBlockRemovableStorage * Indicates whether or not to Block the user from using removable storage. * * @return bool|null The storageBlockRemovableStorage */ public function getStorageBlockRemovableStorage() { if (array_key_exists("storageBlockRemovableStorage", $this->_propDict)) { return $this->_propDict["storageBlockRemovableStorage"]; } else { return null; } } /** * Sets the storageBlockRemovableStorage * Indicates whether or not to Block the user from using removable storage. * * @param bool $val The storageBlockRemovableStorage * * @return Windows10GeneralConfiguration */ public function setStorageBlockRemovableStorage($val) { $this->_propDict["storageBlockRemovableStorage"] = boolval($val); return $this; } /** * Gets the storageRequireMobileDeviceEncryption * Indicating whether or not to require encryption on a mobile device. * * @return bool|null The storageRequireMobileDeviceEncryption */ public function getStorageRequireMobileDeviceEncryption() { if (array_key_exists("storageRequireMobileDeviceEncryption", $this->_propDict)) { return $this->_propDict["storageRequireMobileDeviceEncryption"]; } else { return null; } } /** * Sets the storageRequireMobileDeviceEncryption * Indicating whether or not to require encryption on a mobile device. * * @param bool $val The storageRequireMobileDeviceEncryption * * @return Windows10GeneralConfiguration */ public function setStorageRequireMobileDeviceEncryption($val) { $this->_propDict["storageRequireMobileDeviceEncryption"] = boolval($val); return $this; } /** * Gets the storageRestrictAppDataToSystemVolume * Indicates whether application data is restricted to the system drive. * * @return bool|null The storageRestrictAppDataToSystemVolume */ public function getStorageRestrictAppDataToSystemVolume() { if (array_key_exists("storageRestrictAppDataToSystemVolume", $this->_propDict)) { return $this->_propDict["storageRestrictAppDataToSystemVolume"]; } else { return null; } } /** * Sets the storageRestrictAppDataToSystemVolume * Indicates whether application data is restricted to the system drive. * * @param bool $val The storageRestrictAppDataToSystemVolume * * @return Windows10GeneralConfiguration */ public function setStorageRestrictAppDataToSystemVolume($val) { $this->_propDict["storageRestrictAppDataToSystemVolume"] = boolval($val); return $this; } /** * Gets the storageRestrictAppInstallToSystemVolume * Indicates whether the installation of applications is restricted to the system drive. * * @return bool|null The storageRestrictAppInstallToSystemVolume */ public function getStorageRestrictAppInstallToSystemVolume() { if (array_key_exists("storageRestrictAppInstallToSystemVolume", $this->_propDict)) { return $this->_propDict["storageRestrictAppInstallToSystemVolume"]; } else { return null; } } /** * Sets the storageRestrictAppInstallToSystemVolume * Indicates whether the installation of applications is restricted to the system drive. * * @param bool $val The storageRestrictAppInstallToSystemVolume * * @return Windows10GeneralConfiguration */ public function setStorageRestrictAppInstallToSystemVolume($val) { $this->_propDict["storageRestrictAppInstallToSystemVolume"] = boolval($val); return $this; } /** * Gets the systemTelemetryProxyServer * Gets or sets the fully qualified domain name (FQDN) or IP address of a proxy server to forward Connected User Experiences and Telemetry requests. * * @return string|null The systemTelemetryProxyServer */ public function getSystemTelemetryProxyServer() { if (array_key_exists("systemTelemetryProxyServer", $this->_propDict)) { return $this->_propDict["systemTelemetryProxyServer"]; } else { return null; } } /** * Sets the systemTelemetryProxyServer * Gets or sets the fully qualified domain name (FQDN) or IP address of a proxy server to forward Connected User Experiences and Telemetry requests. * * @param string $val The systemTelemetryProxyServer * * @return Windows10GeneralConfiguration */ public function setSystemTelemetryProxyServer($val) { $this->_propDict["systemTelemetryProxyServer"] = $val; return $this; } /** * Gets the taskManagerBlockEndTask * Specify whether non-administrators can use Task Manager to end tasks. * * @return bool|null The taskManagerBlockEndTask */ public function getTaskManagerBlockEndTask() { if (array_key_exists("taskManagerBlockEndTask", $this->_propDict)) { return $this->_propDict["taskManagerBlockEndTask"]; } else { return null; } } /** * Sets the taskManagerBlockEndTask * Specify whether non-administrators can use Task Manager to end tasks. * * @param bool $val The taskManagerBlockEndTask * * @return Windows10GeneralConfiguration */ public function setTaskManagerBlockEndTask($val) { $this->_propDict["taskManagerBlockEndTask"] = boolval($val); return $this; } /** * Gets the tenantLockdownRequireNetworkDuringOutOfBoxExperience * Whether the device is required to connect to the network. * * @return bool|null The tenantLockdownRequireNetworkDuringOutOfBoxExperience */ public function getTenantLockdownRequireNetworkDuringOutOfBoxExperience() { if (array_key_exists("tenantLockdownRequireNetworkDuringOutOfBoxExperience", $this->_propDict)) { return $this->_propDict["tenantLockdownRequireNetworkDuringOutOfBoxExperience"]; } else { return null; } } /** * Sets the tenantLockdownRequireNetworkDuringOutOfBoxExperience * Whether the device is required to connect to the network. * * @param bool $val The tenantLockdownRequireNetworkDuringOutOfBoxExperience * * @return Windows10GeneralConfiguration */ public function setTenantLockdownRequireNetworkDuringOutOfBoxExperience($val) { $this->_propDict["tenantLockdownRequireNetworkDuringOutOfBoxExperience"] = boolval($val); return $this; } /** * Gets the uninstallBuiltInApps * Indicates whether or not to uninstall a fixed list of built-in Windows apps. * * @return bool|null The uninstallBuiltInApps */ public function getUninstallBuiltInApps() { if (array_key_exists("uninstallBuiltInApps", $this->_propDict)) { return $this->_propDict["uninstallBuiltInApps"]; } else { return null; } } /** * Sets the uninstallBuiltInApps * Indicates whether or not to uninstall a fixed list of built-in Windows apps. * * @param bool $val The uninstallBuiltInApps * * @return Windows10GeneralConfiguration */ public function setUninstallBuiltInApps($val) { $this->_propDict["uninstallBuiltInApps"] = boolval($val); return $this; } /** * Gets the usbBlocked * Indicates whether or not to Block the user from USB connection. * * @return bool|null The usbBlocked */ public function getUsbBlocked() { if (array_key_exists("usbBlocked", $this->_propDict)) { return $this->_propDict["usbBlocked"]; } else { return null; } } /** * Sets the usbBlocked * Indicates whether or not to Block the user from USB connection. * * @param bool $val The usbBlocked * * @return Windows10GeneralConfiguration */ public function setUsbBlocked($val) { $this->_propDict["usbBlocked"] = boolval($val); return $this; } /** * Gets the voiceRecordingBlocked * Indicates whether or not to Block the user from voice recording. * * @return bool|null The voiceRecordingBlocked */ public function getVoiceRecordingBlocked() { if (array_key_exists("voiceRecordingBlocked", $this->_propDict)) { return $this->_propDict["voiceRecordingBlocked"]; } else { return null; } } /** * Sets the voiceRecordingBlocked * Indicates whether or not to Block the user from voice recording. * * @param bool $val The voiceRecordingBlocked * * @return Windows10GeneralConfiguration */ public function setVoiceRecordingBlocked($val) { $this->_propDict["voiceRecordingBlocked"] = boolval($val); return $this; } /** * Gets the webRtcBlockLocalhostIpAddress * Indicates whether or not user's localhost IP address is displayed while making phone calls using the WebRTC * * @return bool|null The webRtcBlockLocalhostIpAddress */ public function getWebRtcBlockLocalhostIpAddress() { if (array_key_exists("webRtcBlockLocalhostIpAddress", $this->_propDict)) { return $this->_propDict["webRtcBlockLocalhostIpAddress"]; } else { return null; } } /** * Sets the webRtcBlockLocalhostIpAddress * Indicates whether or not user's localhost IP address is displayed while making phone calls using the WebRTC * * @param bool $val The webRtcBlockLocalhostIpAddress * * @return Windows10GeneralConfiguration */ public function setWebRtcBlockLocalhostIpAddress($val) { $this->_propDict["webRtcBlockLocalhostIpAddress"] = boolval($val); return $this; } /** * Gets the wiFiBlockAutomaticConnectHotspots * Indicating whether or not to block automatically connecting to Wi-Fi hotspots. Has no impact if Wi-Fi is blocked. * * @return bool|null The wiFiBlockAutomaticConnectHotspots */ public function getWiFiBlockAutomaticConnectHotspots() { if (array_key_exists("wiFiBlockAutomaticConnectHotspots", $this->_propDict)) { return $this->_propDict["wiFiBlockAutomaticConnectHotspots"]; } else { return null; } } /** * Sets the wiFiBlockAutomaticConnectHotspots * Indicating whether or not to block automatically connecting to Wi-Fi hotspots. Has no impact if Wi-Fi is blocked. * * @param bool $val The wiFiBlockAutomaticConnectHotspots * * @return Windows10GeneralConfiguration */ public function setWiFiBlockAutomaticConnectHotspots($val) { $this->_propDict["wiFiBlockAutomaticConnectHotspots"] = boolval($val); return $this; } /** * Gets the wiFiBlocked * Indicates whether or not to Block the user from using Wi-Fi. * * @return bool|null The wiFiBlocked */ public function getWiFiBlocked() { if (array_key_exists("wiFiBlocked", $this->_propDict)) { return $this->_propDict["wiFiBlocked"]; } else { return null; } } /** * Sets the wiFiBlocked * Indicates whether or not to Block the user from using Wi-Fi. * * @param bool $val The wiFiBlocked * * @return Windows10GeneralConfiguration */ public function setWiFiBlocked($val) { $this->_propDict["wiFiBlocked"] = boolval($val); return $this; } /** * Gets the wiFiBlockManualConfiguration * Indicates whether or not to Block the user from using Wi-Fi manual configuration. * * @return bool|null The wiFiBlockManualConfiguration */ public function getWiFiBlockManualConfiguration() { if (array_key_exists("wiFiBlockManualConfiguration", $this->_propDict)) { return $this->_propDict["wiFiBlockManualConfiguration"]; } else { return null; } } /** * Sets the wiFiBlockManualConfiguration * Indicates whether or not to Block the user from using Wi-Fi manual configuration. * * @param bool $val The wiFiBlockManualConfiguration * * @return Windows10GeneralConfiguration */ public function setWiFiBlockManualConfiguration($val) { $this->_propDict["wiFiBlockManualConfiguration"] = boolval($val); return $this; } /** * Gets the wiFiScanInterval * Specify how often devices scan for Wi-Fi networks. Supported values are 1-500, where 100 = default, and 500 = low frequency. Valid values 1 to 500 * * @return int|null The wiFiScanInterval */ public function getWiFiScanInterval() { if (array_key_exists("wiFiScanInterval", $this->_propDict)) { return $this->_propDict["wiFiScanInterval"]; } else { return null; } } /** * Sets the wiFiScanInterval * Specify how often devices scan for Wi-Fi networks. Supported values are 1-500, where 100 = default, and 500 = low frequency. Valid values 1 to 500 * * @param int $val The wiFiScanInterval * * @return Windows10GeneralConfiguration */ public function setWiFiScanInterval($val) { $this->_propDict["wiFiScanInterval"] = intval($val); return $this; } /** * Gets the windows10AppsForceUpdateSchedule * Windows 10 force update schedule for Apps. * * @return Windows10AppsForceUpdateSchedule|null The windows10AppsForceUpdateSchedule */ public function getWindows10AppsForceUpdateSchedule() { if (array_key_exists("windows10AppsForceUpdateSchedule", $this->_propDict)) { if (is_a($this->_propDict["windows10AppsForceUpdateSchedule"], "\Beta\Microsoft\Graph\Model\Windows10AppsForceUpdateSchedule") || is_null($this->_propDict["windows10AppsForceUpdateSchedule"])) { return $this->_propDict["windows10AppsForceUpdateSchedule"]; } else { $this->_propDict["windows10AppsForceUpdateSchedule"] = new Windows10AppsForceUpdateSchedule($this->_propDict["windows10AppsForceUpdateSchedule"]); return $this->_propDict["windows10AppsForceUpdateSchedule"]; } } return null; } /** * Sets the windows10AppsForceUpdateSchedule * Windows 10 force update schedule for Apps. * * @param Windows10AppsForceUpdateSchedule $val The windows10AppsForceUpdateSchedule * * @return Windows10GeneralConfiguration */ public function setWindows10AppsForceUpdateSchedule($val) { $this->_propDict["windows10AppsForceUpdateSchedule"] = $val; return $this; } /** * Gets the windowsSpotlightBlockConsumerSpecificFeatures * Allows IT admins to block experiences that are typically for consumers only, such as Start suggestions, Membership notifications, Post-OOBE app install and redirect tiles. * * @return bool|null The windowsSpotlightBlockConsumerSpecificFeatures */ public function getWindowsSpotlightBlockConsumerSpecificFeatures() { if (array_key_exists("windowsSpotlightBlockConsumerSpecificFeatures", $this->_propDict)) { return $this->_propDict["windowsSpotlightBlockConsumerSpecificFeatures"]; } else { return null; } } /** * Sets the windowsSpotlightBlockConsumerSpecificFeatures * Allows IT admins to block experiences that are typically for consumers only, such as Start suggestions, Membership notifications, Post-OOBE app install and redirect tiles. * * @param bool $val The windowsSpotlightBlockConsumerSpecificFeatures * * @return Windows10GeneralConfiguration */ public function setWindowsSpotlightBlockConsumerSpecificFeatures($val) { $this->_propDict["windowsSpotlightBlockConsumerSpecificFeatures"] = boolval($val); return $this; } /** * Gets the windowsSpotlightBlocked * Allows IT admins to turn off all Windows Spotlight features * * @return bool|null The windowsSpotlightBlocked */ public function getWindowsSpotlightBlocked() { if (array_key_exists("windowsSpotlightBlocked", $this->_propDict)) { return $this->_propDict["windowsSpotlightBlocked"]; } else { return null; } } /** * Sets the windowsSpotlightBlocked * Allows IT admins to turn off all Windows Spotlight features * * @param bool $val The windowsSpotlightBlocked * * @return Windows10GeneralConfiguration */ public function setWindowsSpotlightBlocked($val) { $this->_propDict["windowsSpotlightBlocked"] = boolval($val); return $this; } /** * Gets the windowsSpotlightBlockOnActionCenter * Block suggestions from Microsoft that show after each OS clean install, upgrade or in an on-going basis to introduce users to what is new or changed * * @return bool|null The windowsSpotlightBlockOnActionCenter */ public function getWindowsSpotlightBlockOnActionCenter() { if (array_key_exists("windowsSpotlightBlockOnActionCenter", $this->_propDict)) { return $this->_propDict["windowsSpotlightBlockOnActionCenter"]; } else { return null; } } /** * Sets the windowsSpotlightBlockOnActionCenter * Block suggestions from Microsoft that show after each OS clean install, upgrade or in an on-going basis to introduce users to what is new or changed * * @param bool $val The windowsSpotlightBlockOnActionCenter * * @return Windows10GeneralConfiguration */ public function setWindowsSpotlightBlockOnActionCenter($val) { $this->_propDict["windowsSpotlightBlockOnActionCenter"] = boolval($val); return $this; } /** * Gets the windowsSpotlightBlockTailoredExperiences * Block personalized content in Windows spotlight based on user’s device usage. * * @return bool|null The windowsSpotlightBlockTailoredExperiences */ public function getWindowsSpotlightBlockTailoredExperiences() { if (array_key_exists("windowsSpotlightBlockTailoredExperiences", $this->_propDict)) { return $this->_propDict["windowsSpotlightBlockTailoredExperiences"]; } else { return null; } } /** * Sets the windowsSpotlightBlockTailoredExperiences * Block personalized content in Windows spotlight based on user’s device usage. * * @param bool $val The windowsSpotlightBlockTailoredExperiences * * @return Windows10GeneralConfiguration */ public function setWindowsSpotlightBlockTailoredExperiences($val) { $this->_propDict["windowsSpotlightBlockTailoredExperiences"] = boolval($val); return $this; } /** * Gets the windowsSpotlightBlockThirdPartyNotifications * Block third party content delivered via Windows Spotlight * * @return bool|null The windowsSpotlightBlockThirdPartyNotifications */ public function getWindowsSpotlightBlockThirdPartyNotifications() { if (array_key_exists("windowsSpotlightBlockThirdPartyNotifications", $this->_propDict)) { return $this->_propDict["windowsSpotlightBlockThirdPartyNotifications"]; } else { return null; } } /** * Sets the windowsSpotlightBlockThirdPartyNotifications * Block third party content delivered via Windows Spotlight * * @param bool $val The windowsSpotlightBlockThirdPartyNotifications * * @return Windows10GeneralConfiguration */ public function setWindowsSpotlightBlockThirdPartyNotifications($val) { $this->_propDict["windowsSpotlightBlockThirdPartyNotifications"] = boolval($val); return $this; } /** * Gets the windowsSpotlightBlockWelcomeExperience * Block Windows Spotlight Windows welcome experience * * @return bool|null The windowsSpotlightBlockWelcomeExperience */ public function getWindowsSpotlightBlockWelcomeExperience() { if (array_key_exists("windowsSpotlightBlockWelcomeExperience", $this->_propDict)) { return $this->_propDict["windowsSpotlightBlockWelcomeExperience"]; } else { return null; } } /** * Sets the windowsSpotlightBlockWelcomeExperience * Block Windows Spotlight Windows welcome experience * * @param bool $val The windowsSpotlightBlockWelcomeExperience * * @return Windows10GeneralConfiguration */ public function setWindowsSpotlightBlockWelcomeExperience($val) { $this->_propDict["windowsSpotlightBlockWelcomeExperience"] = boolval($val); return $this; } /** * Gets the windowsSpotlightBlockWindowsTips * Allows IT admins to turn off the popup of Windows Tips. * * @return bool|null The windowsSpotlightBlockWindowsTips */ public function getWindowsSpotlightBlockWindowsTips() { if (array_key_exists("windowsSpotlightBlockWindowsTips", $this->_propDict)) { return $this->_propDict["windowsSpotlightBlockWindowsTips"]; } else { return null; } } /** * Sets the windowsSpotlightBlockWindowsTips * Allows IT admins to turn off the popup of Windows Tips. * * @param bool $val The windowsSpotlightBlockWindowsTips * * @return Windows10GeneralConfiguration */ public function setWindowsSpotlightBlockWindowsTips($val) { $this->_propDict["windowsSpotlightBlockWindowsTips"] = boolval($val); return $this; } /** * Gets the windowsSpotlightConfigureOnLockScreen * Specifies the type of Spotlight. Possible values are: notConfigured, disabled, enabled. * * @return WindowsSpotlightEnablementSettings|null The windowsSpotlightConfigureOnLockScreen */ public function getWindowsSpotlightConfigureOnLockScreen() { if (array_key_exists("windowsSpotlightConfigureOnLockScreen", $this->_propDict)) { if (is_a($this->_propDict["windowsSpotlightConfigureOnLockScreen"], "\Beta\Microsoft\Graph\Model\WindowsSpotlightEnablementSettings") || is_null($this->_propDict["windowsSpotlightConfigureOnLockScreen"])) { return $this->_propDict["windowsSpotlightConfigureOnLockScreen"]; } else { $this->_propDict["windowsSpotlightConfigureOnLockScreen"] = new WindowsSpotlightEnablementSettings($this->_propDict["windowsSpotlightConfigureOnLockScreen"]); return $this->_propDict["windowsSpotlightConfigureOnLockScreen"]; } } return null; } /** * Sets the windowsSpotlightConfigureOnLockScreen * Specifies the type of Spotlight. Possible values are: notConfigured, disabled, enabled. * * @param WindowsSpotlightEnablementSettings $val The windowsSpotlightConfigureOnLockScreen * * @return Windows10GeneralConfiguration */ public function setWindowsSpotlightConfigureOnLockScreen($val) { $this->_propDict["windowsSpotlightConfigureOnLockScreen"] = $val; return $this; } /** * Gets the windowsStoreBlockAutoUpdate * Indicates whether or not to block automatic update of apps from Windows Store. * * @return bool|null The windowsStoreBlockAutoUpdate */ public function getWindowsStoreBlockAutoUpdate() { if (array_key_exists("windowsStoreBlockAutoUpdate", $this->_propDict)) { return $this->_propDict["windowsStoreBlockAutoUpdate"]; } else { return null; } } /** * Sets the windowsStoreBlockAutoUpdate * Indicates whether or not to block automatic update of apps from Windows Store. * * @param bool $val The windowsStoreBlockAutoUpdate * * @return Windows10GeneralConfiguration */ public function setWindowsStoreBlockAutoUpdate($val) { $this->_propDict["windowsStoreBlockAutoUpdate"] = boolval($val); return $this; } /** * Gets the windowsStoreBlocked * Indicates whether or not to Block the user from using the Windows store. * * @return bool|null The windowsStoreBlocked */ public function getWindowsStoreBlocked() { if (array_key_exists("windowsStoreBlocked", $this->_propDict)) { return $this->_propDict["windowsStoreBlocked"]; } else { return null; } } /** * Sets the windowsStoreBlocked * Indicates whether or not to Block the user from using the Windows store. * * @param bool $val The windowsStoreBlocked * * @return Windows10GeneralConfiguration */ public function setWindowsStoreBlocked($val) { $this->_propDict["windowsStoreBlocked"] = boolval($val); return $this; } /** * Gets the windowsStoreEnablePrivateStoreOnly * Indicates whether or not to enable Private Store Only. * * @return bool|null The windowsStoreEnablePrivateStoreOnly */ public function getWindowsStoreEnablePrivateStoreOnly() { if (array_key_exists("windowsStoreEnablePrivateStoreOnly", $this->_propDict)) { return $this->_propDict["windowsStoreEnablePrivateStoreOnly"]; } else { return null; } } /** * Sets the windowsStoreEnablePrivateStoreOnly * Indicates whether or not to enable Private Store Only. * * @param bool $val The windowsStoreEnablePrivateStoreOnly * * @return Windows10GeneralConfiguration */ public function setWindowsStoreEnablePrivateStoreOnly($val) { $this->_propDict["windowsStoreEnablePrivateStoreOnly"] = boolval($val); return $this; } /** * Gets the wirelessDisplayBlockProjectionToThisDevice * Indicates whether or not to allow other devices from discovering this PC for projection. * * @return bool|null The wirelessDisplayBlockProjectionToThisDevice */ public function getWirelessDisplayBlockProjectionToThisDevice() { if (array_key_exists("wirelessDisplayBlockProjectionToThisDevice", $this->_propDict)) { return $this->_propDict["wirelessDisplayBlockProjectionToThisDevice"]; } else { return null; } } /** * Sets the wirelessDisplayBlockProjectionToThisDevice * Indicates whether or not to allow other devices from discovering this PC for projection. * * @param bool $val The wirelessDisplayBlockProjectionToThisDevice * * @return Windows10GeneralConfiguration */ public function setWirelessDisplayBlockProjectionToThisDevice($val) { $this->_propDict["wirelessDisplayBlockProjectionToThisDevice"] = boolval($val); return $this; } /** * Gets the wirelessDisplayBlockUserInputFromReceiver * Indicates whether or not to allow user input from wireless display receiver. * * @return bool|null The wirelessDisplayBlockUserInputFromReceiver */ public function getWirelessDisplayBlockUserInputFromReceiver() { if (array_key_exists("wirelessDisplayBlockUserInputFromReceiver", $this->_propDict)) { return $this->_propDict["wirelessDisplayBlockUserInputFromReceiver"]; } else { return null; } } /** * Sets the wirelessDisplayBlockUserInputFromReceiver * Indicates whether or not to allow user input from wireless display receiver. * * @param bool $val The wirelessDisplayBlockUserInputFromReceiver * * @return Windows10GeneralConfiguration */ public function setWirelessDisplayBlockUserInputFromReceiver($val) { $this->_propDict["wirelessDisplayBlockUserInputFromReceiver"] = boolval($val); return $this; } /** * Gets the wirelessDisplayRequirePinForPairing * Indicates whether or not to require a PIN for new devices to initiate pairing. * * @return bool|null The wirelessDisplayRequirePinForPairing */ public function getWirelessDisplayRequirePinForPairing() { if (array_key_exists("wirelessDisplayRequirePinForPairing", $this->_propDict)) { return $this->_propDict["wirelessDisplayRequirePinForPairing"]; } else { return null; } } /** * Sets the wirelessDisplayRequirePinForPairing * Indicates whether or not to require a PIN for new devices to initiate pairing. * * @param bool $val The wirelessDisplayRequirePinForPairing * * @return Windows10GeneralConfiguration */ public function setWirelessDisplayRequirePinForPairing($val) { $this->_propDict["wirelessDisplayRequirePinForPairing"] = boolval($val); return $this; } /** * Gets the privacyAccessControls * Indicates a list of applications with their access control levels over privacy data categories, and/or the default access levels per category. This collection can contain a maximum of 500 elements. * * @return array|null The privacyAccessControls */ public function getPrivacyAccessControls() { if (array_key_exists("privacyAccessControls", $this->_propDict)) { return $this->_propDict["privacyAccessControls"]; } else { return null; } } /** * Sets the privacyAccessControls * Indicates a list of applications with their access control levels over privacy data categories, and/or the default access levels per category. This collection can contain a maximum of 500 elements. * * @param WindowsPrivacyDataAccessControlItem[] $val The privacyAccessControls * * @return Windows10GeneralConfiguration */ public function setPrivacyAccessControls($val) { $this->_propDict["privacyAccessControls"] = $val; return $this; } }
[+]
..
[-] AadUserConversationMember.php
[edit]
[-] AadUserConversationMemberResult.php
[edit]
[-] AadUserNotificationRecipient.php
[edit]
[-] AcceptJoinResponse.php
[edit]
[-] AccessAction.php
[edit]
[-] AccessLevel.php
[edit]
[-] AccessPackage.php
[edit]
[-] AccessPackageAnswer.php
[edit]
[-] AccessPackageAnswerChoice.php
[edit]
[-] AccessPackageAnswerString.php
[edit]
[-] AccessPackageAssignment.php
[edit]
[-] AccessPackageAssignmentFilterByCurrentUserOptions.php
[edit]
[-] AccessPackageAssignmentPolicy.php
[edit]
[-] AccessPackageAssignmentRequest.php
[edit]
[-] AccessPackageAssignmentRequestFilterByCurrentUserOptions.php
[edit]
[-] AccessPackageAssignmentRequestRequirements.php
[edit]
[-] AccessPackageAssignmentResourceRole.php
[edit]
[-] AccessPackageCatalog.php
[edit]
[-] AccessPackageCustomExtensionHandlerStatus.php
[edit]
[-] AccessPackageCustomExtensionStage.php
[edit]
[-] AccessPackageFilterByCurrentUserOptions.php
[edit]
[-] AccessPackageLocalizedContent.php
[edit]
[-] AccessPackageLocalizedText.php
[edit]
[-] AccessPackageMultipleChoiceQuestion.php
[edit]
[-] AccessPackageQuestion.php
[edit]
[-] AccessPackageResource.php
[edit]
[-] AccessPackageResourceAttribute.php
[edit]
[-] AccessPackageResourceAttributeDestination.php
[edit]
[-] AccessPackageResourceAttributeQuestion.php
[edit]
[-] AccessPackageResourceAttributeSource.php
[edit]
[-] AccessPackageResourceEnvironment.php
[edit]
[-] AccessPackageResourceRequest.php
[edit]
[-] AccessPackageResourceRole.php
[edit]
[-] AccessPackageResourceRoleScope.php
[edit]
[-] AccessPackageResourceScope.php
[edit]
[-] AccessPackageSubject.php
[edit]
[-] AccessPackageSubjectLifecycle.php
[edit]
[-] AccessPackageTextInputQuestion.php
[edit]
[-] AccessPackageUserDirectoryAttributeStore.php
[edit]
[-] AccessReview.php
[edit]
[-] AccessReviewApplyAction.php
[edit]
[-] AccessReviewDecision.php
[edit]
[-] AccessReviewError.php
[edit]
[-] AccessReviewHistoryDecisionFilter.php
[edit]
[-] AccessReviewHistoryDefinition.php
[edit]
[-] AccessReviewHistoryInstance.php
[edit]
[-] AccessReviewHistoryScheduleSettings.php
[edit]
[-] AccessReviewHistoryStatus.php
[edit]
[-] AccessReviewInactiveUsersQueryScope.php
[edit]
[-] AccessReviewInstance.php
[edit]
[-] AccessReviewInstanceDecisionItem.php
[edit]
[-] AccessReviewInstanceDecisionItemAccessPackageAssignmentPolicyResource.php
[edit]
[-] AccessReviewInstanceDecisionItemAzureRoleResource.php
[edit]
[-] AccessReviewInstanceDecisionItemFilterByCurrentUserOptions.php
[edit]
[-] AccessReviewInstanceDecisionItemResource.php
[edit]
[-] AccessReviewInstanceDecisionItemServicePrincipalResource.php
[edit]
[-] AccessReviewInstanceDecisionItemServicePrincipalTarget.php
[edit]
[-] AccessReviewInstanceDecisionItemTarget.php
[edit]
[-] AccessReviewInstanceDecisionItemUserTarget.php
[edit]
[-] AccessReviewInstanceFilterByCurrentUserOptions.php
[edit]
[-] AccessReviewNotificationRecipientItem.php
[edit]
[-] AccessReviewNotificationRecipientQueryScope.php
[edit]
[-] AccessReviewNotificationRecipientScope.php
[edit]
[-] AccessReviewPolicy.php
[edit]
[-] AccessReviewQueryScope.php
[edit]
[-] AccessReviewRecommendationInsightSetting.php
[edit]
[-] AccessReviewRecurrenceSettings.php
[edit]
[-] AccessReviewReviewer.php
[edit]
[-] AccessReviewReviewerScope.php
[edit]
[-] AccessReviewScheduleDefinition.php
[edit]
[-] AccessReviewScheduleDefinitionFilterByCurrentUserOptions.php
[edit]
[-] AccessReviewScheduleSettings.php
[edit]
[-] AccessReviewScope.php
[edit]
[-] AccessReviewSet.php
[edit]
[-] AccessReviewSettings.php
[edit]
[-] AccessReviewStage.php
[edit]
[-] AccessReviewStageFilterByCurrentUserOptions.php
[edit]
[-] AccessReviewStageSettings.php
[edit]
[-] Account.php
[edit]
[-] AccessReviewTimeoutBehavior.php
[edit]
[-] AccessScope.php
[edit]
[-] AccessType.php
[edit]
[-] AccountAlias.php
[edit]
[-] AccountStatus.php
[edit]
[-] Acl.php
[edit]
[-] AclType.php
[edit]
[-] ActionResultPart.php
[edit]
[-] ActionSource.php
[edit]
[-] ActionState.php
[edit]
[-] ActionStep.php
[edit]
[-] ActionUrl.php
[edit]
[-] ActivateDeviceEsimActionResult.php
[edit]
[-] ActiveDirectoryWindowsAutopilotDeploymentProfile.php
[edit]
[-] ActivityBasedTimeoutPolicy.php
[edit]
[-] ActivityDomain.php
[edit]
[-] ActivityHistoryItem.php
[edit]
[-] ActivityStatistics.php
[edit]
[-] ActivityType.php
[edit]
[-] AddContentFooterAction.php
[edit]
[-] AddContentHeaderAction.php
[edit]
[-] AddFooter.php
[edit]
[-] AddHeader.php
[edit]
[-] AddIn.php
[edit]
[-] AddLargeGalleryViewOperation.php
[edit]
[-] AddWatermark.php
[edit]
[-] AddWatermarkAction.php
[edit]
[-] Admin.php
[edit]
[-] AdminConsent.php
[edit]
[-] AdminConsentRequestPolicy.php
[edit]
[-] AdminConsentState.php
[edit]
[-] AdminReportSettings.php
[edit]
[-] AdministrativeUnit.php
[edit]
[-] AdministratorConfiguredDeviceComplianceState.php
[edit]
[-] AdvancedBitLockerState.php
[edit]
[-] AdvancedConfigState.php
[edit]
[-] AdvancedThreatProtectionOnboardingDeviceSettingState.php
[edit]
[-] AdvancedThreatProtectionOnboardingStateSummary.php
[edit]
[-] AgedAccountsPayable.php
[edit]
[-] AgedAccountsReceivable.php
[edit]
[-] AgentStatus.php
[edit]
[-] AggregationOption.php
[edit]
[-] Agreement.php
[edit]
[-] AgreementAcceptance.php
[edit]
[-] AgreementAcceptanceState.php
[edit]
[-] AgreementFile.php
[edit]
[-] AgreementFileData.php
[edit]
[-] AgreementFileLocalization.php
[edit]
[-] AgreementFileProperties.php
[edit]
[-] AgreementFileVersion.php
[edit]
[-] AirPrintDestination.php
[edit]
[-] Album.php
[edit]
[-] Alert.php
[edit]
[-] AlertDetection.php
[edit]
[-] AlertFeedback.php
[edit]
[-] AlertHistoryState.php
[edit]
[-] AlertSeverity.php
[edit]
[-] AlertStatus.php
[edit]
[-] AlertTrigger.php
[edit]
[-] Alignment.php
[edit]
[-] AllDevicesAssignmentTarget.php
[edit]
[-] AllLicensedUsersAssignmentTarget.php
[edit]
[-] AllowInvitesFrom.php
[edit]
[-] AllowedAudiences.php
[edit]
[-] AllowedDataLocation.php
[edit]
[-] AllowedValue.php
[edit]
[-] AlterationResponse.php
[edit]
[-] AlteredQueryToken.php
[edit]
[-] AlternativeSecurityId.php
[edit]
[-] AnalyticsActivityType.php
[edit]
[-] AndroidCertificateProfileBase.php
[edit]
[-] AndroidCompliancePolicy.php
[edit]
[-] AndroidCustomConfiguration.php
[edit]
[-] AndroidDeviceComplianceLocalActionBase.php
[edit]
[-] AndroidDeviceComplianceLocalActionLockDevice.php
[edit]
[-] AndroidDeviceComplianceLocalActionLockDeviceWithPasscode.php
[edit]
[-] AndroidDeviceOwnerAppAutoUpdatePolicyType.php
[edit]
[-] AndroidDeviceOwnerBatteryPluggedMode.php
[edit]
[-] AndroidDeviceOwnerCertificateProfileBase.php
[edit]
[-] AndroidDeviceOwnerCompliancePolicy.php
[edit]
[-] AndroidDeviceOwnerCrossProfileDataSharing.php
[edit]
[-] AndroidDeviceOwnerDefaultAppPermissionPolicyType.php
[edit]
[-] AndroidDeviceOwnerDerivedCredentialAuthenticationConfiguration.php
[edit]
[-] AndroidDeviceOwnerEnrollmentMode.php
[edit]
[-] AndroidDeviceOwnerEnrollmentProfile.php
[edit]
[-] AndroidDeviceOwnerEnrollmentProfileType.php
[edit]
[-] AndroidDeviceOwnerEnrollmentTokenType.php
[edit]
[-] AndroidDeviceOwnerEnterpriseWiFiConfiguration.php
[edit]
[-] AndroidDeviceOwnerGeneralDeviceConfiguration.php
[edit]
[-] AndroidDeviceOwnerGlobalProxy.php
[edit]
[-] AndroidDeviceOwnerGlobalProxyAutoConfig.php
[edit]
[-] AndroidDeviceOwnerGlobalProxyDirect.php
[edit]
[-] AndroidDeviceOwnerImportedPFXCertificateProfile.php
[edit]
[-] AndroidEapType.php
[edit]
[-] AndroidDeviceOwnerKioskCustomizationStatusBar.php
[edit]
[-] AndroidDeviceOwnerKioskCustomizationSystemNavigation.php
[edit]
[-] AndroidDeviceOwnerKioskModeApp.php
[edit]
[-] AndroidDeviceOwnerKioskModeAppPositionItem.php
[edit]
[-] AndroidDeviceOwnerKioskModeFolderIcon.php
[edit]
[-] AndroidDeviceOwnerKioskModeFolderItem.php
[edit]
[-] AndroidDeviceOwnerKioskModeHomeScreenItem.php
[edit]
[-] AndroidDeviceOwnerKioskModeIconSize.php
[edit]
[-] AndroidDeviceOwnerKioskModeManagedFolder.php
[edit]
[-] AndroidDeviceOwnerKioskModeManagedFolderReference.php
[edit]
[-] AndroidDeviceOwnerKioskModeScreenOrientation.php
[edit]
[-] AndroidDeviceOwnerKioskModeWeblink.php
[edit]
[-] AndroidDeviceOwnerPkcsCertificateProfile.php
[edit]
[-] AndroidDeviceOwnerPlayStoreMode.php
[edit]
[-] AndroidDeviceOwnerRequiredPasswordType.php
[edit]
[-] AndroidDeviceOwnerRequiredPasswordUnlock.php
[edit]
[-] AndroidDeviceOwnerScepCertificateProfile.php
[edit]
[-] AndroidDeviceOwnerSystemUpdateFreezePeriod.php
[edit]
[-] AndroidDeviceOwnerSystemUpdateInstallType.php
[edit]
[-] AndroidDeviceOwnerTrustedRootCertificate.php
[edit]
[-] AndroidDeviceOwnerUserFacingMessage.php
[edit]
[-] AndroidDeviceOwnerVirtualHomeButtonType.php
[edit]
[-] AndroidDeviceOwnerVpnConfiguration.php
[edit]
[-] AndroidDeviceOwnerWiFiConfiguration.php
[edit]
[-] AndroidDeviceOwnerWiFiSecurityType.php
[edit]
[-] AndroidEasEmailProfileConfiguration.php
[edit]
[-] AndroidEnrollmentCompanyCode.php
[edit]
[-] AndroidEnterpriseWiFiConfiguration.php
[edit]
[-] AndroidForWorkApp.php
[edit]
[-] AndroidForWorkAppConfigurationSchema.php
[edit]
[-] AndroidForWorkAppConfigurationSchemaItem.php
[edit]
[-] AndroidForWorkAppConfigurationSchemaItemDataType.php
[edit]
[-] AndroidForWorkBindStatus.php
[edit]
[-] AndroidForWorkCertificateProfileBase.php
[edit]
[-] AndroidForWorkCompliancePolicy.php
[edit]
[-] AndroidForWorkCrossProfileDataSharingType.php
[edit]
[-] AndroidForWorkCustomConfiguration.php
[edit]
[-] AndroidForWorkDefaultAppPermissionPolicyType.php
[edit]
[-] AndroidForWorkEasEmailProfileBase.php
[edit]
[-] AndroidForWorkEnrollmentProfile.php
[edit]
[-] AndroidForWorkEnrollmentTarget.php
[edit]
[-] AndroidForWorkEnterpriseWiFiConfiguration.php
[edit]
[-] AndroidForWorkGeneralDeviceConfiguration.php
[edit]
[-] AndroidForWorkGmailEasConfiguration.php
[edit]
[-] AndroidForWorkImportedPFXCertificateProfile.php
[edit]
[-] AndroidForWorkMobileAppConfiguration.php
[edit]
[-] AndroidForWorkNineWorkEasConfiguration.php
[edit]
[-] AndroidForWorkPkcsCertificateProfile.php
[edit]
[-] AndroidForWorkRequiredPasswordType.php
[edit]
[-] AndroidForWorkScepCertificateProfile.php
[edit]
[-] AndroidForWorkSettings.php
[edit]
[-] AndroidForWorkSyncStatus.php
[edit]
[-] AndroidForWorkTrustedRootCertificate.php
[edit]
[-] AndroidForWorkVpnConfiguration.php
[edit]
[-] AndroidForWorkVpnConnectionType.php
[edit]
[-] AndroidForWorkWiFiConfiguration.php
[edit]
[-] AndroidFotaDeploymentAssignment.php
[edit]
[-] AndroidFotaDeploymentAssignmentTarget.php
[edit]
[-] AndroidGeneralDeviceConfiguration.php
[edit]
[-] AndroidImportedPFXCertificateProfile.php
[edit]
[-] AndroidKeyguardFeature.php
[edit]
[-] AndroidLobApp.php
[edit]
[-] AndroidManagedAppProtection.php
[edit]
[-] AndroidManagedAppRegistration.php
[edit]
[-] AndroidManagedAppSafetyNetAppsVerificationType.php
[edit]
[-] AndroidManagedAppSafetyNetDeviceAttestationType.php
[edit]
[-] AndroidManagedAppSafetyNetEvaluationType.php
[edit]
[-] AndroidManagedStoreAccountAppSyncStatus.php
[edit]
[-] AndroidManagedStoreAccountBindStatus.php
[edit]
[-] AndroidManagedStoreAccountEnrollmentTarget.php
[edit]
[-] AndroidManagedStoreAccountEnterpriseSettings.php
[edit]
[-] AndroidManagedStoreApp.php
[edit]
[-] AndroidManagedStoreAppAssignmentSettings.php
[edit]
[-] AndroidManagedStoreAppConfiguration.php
[edit]
[-] AndroidManagedStoreAppConfigurationSchema.php
[edit]
[-] AndroidManagedStoreAppConfigurationSchemaItem.php
[edit]
[-] AndroidManagedStoreAppConfigurationSchemaItemDataType.php
[edit]
[-] AndroidManagedStoreAppTrack.php
[edit]
[-] AndroidManagedStoreAutoUpdateMode.php
[edit]
[-] AndroidManagedStoreWebApp.php
[edit]
[-] AndroidMinimumOperatingSystem.php
[edit]
[-] AndroidMobileAppIdentifier.php
[edit]
[-] AndroidOmaCpConfiguration.php
[edit]
[-] AndroidPermissionAction.php
[edit]
[-] AndroidPermissionActionType.php
[edit]
[-] AndroidPkcsCertificateProfile.php
[edit]
[-] AndroidProfileApplicability.php
[edit]
[-] AndroidRequiredPasswordComplexity.php
[edit]
[-] AndroidRequiredPasswordType.php
[edit]
[-] AndroidSafetyNetEvaluationType.php
[edit]
[-] AndroidScepCertificateProfile.php
[edit]
[-] AndroidStoreApp.php
[edit]
[-] AndroidTrustedRootCertificate.php
[edit]
[-] AndroidUsernameSource.php
[edit]
[-] AndroidVpnConfiguration.php
[edit]
[-] AndroidVpnConnectionType.php
[edit]
[-] AndroidWiFiConfiguration.php
[edit]
[-] AndroidWiFiSecurityType.php
[edit]
[-] AndroidWorkProfileCertificateProfileBase.php
[edit]
[-] AndroidWorkProfileCompliancePolicy.php
[edit]
[-] AndroidWorkProfileCrossProfileDataSharingType.php
[edit]
[-] AndroidWorkProfileCustomConfiguration.php
[edit]
[-] AndroidWorkProfileDefaultAppPermissionPolicyType.php
[edit]
[-] AndroidWorkProfileEasEmailProfileBase.php
[edit]
[-] AndroidWorkProfileEnterpriseWiFiConfiguration.php
[edit]
[-] AndroidWorkProfileGeneralDeviceConfiguration.php
[edit]
[-] AndroidWorkProfileGmailEasConfiguration.php
[edit]
[-] AndroidWorkProfileNineWorkEasConfiguration.php
[edit]
[-] AndroidWorkProfilePkcsCertificateProfile.php
[edit]
[-] AndroidWorkProfileRequiredPasswordType.php
[edit]
[-] AndroidWorkProfileScepCertificateProfile.php
[edit]
[-] AndroidWorkProfileTrustedRootCertificate.php
[edit]
[-] AndroidWorkProfileVpnConfiguration.php
[edit]
[-] AndroidWorkProfileVpnConnectionType.php
[edit]
[-] AndroidWorkProfileWiFiConfiguration.php
[edit]
[-] AnonymousGuestConversationMember.php
[edit]
[-] AnswerInputType.php
[edit]
[-] AospDeviceOwnerCertificateProfileBase.php
[edit]
[-] AospDeviceOwnerCompliancePolicy.php
[edit]
[-] AospDeviceOwnerDeviceConfiguration.php
[edit]
[-] AospDeviceOwnerEnterpriseWiFiConfiguration.php
[edit]
[-] AospDeviceOwnerPkcsCertificateProfile.php
[edit]
[-] AospDeviceOwnerScepCertificateProfile.php
[edit]
[-] AospDeviceOwnerTrustedRootCertificate.php
[edit]
[-] AospDeviceOwnerWiFiConfiguration.php
[edit]
[-] AospDeviceOwnerWiFiSecurityType.php
[edit]
[-] AospWifiSecurityType.php
[edit]
[-] ApiApplication.php
[edit]
[-] ApiAuthenticationConfigurationBase.php
[edit]
[-] ApiServicePrincipal.php
[edit]
[-] AppCatalogs.php
[edit]
[-] AppConfigurationSettingItem.php
[edit]
[-] AppConsentApprovalRoute.php
[edit]
[-] AppConsentRequest.php
[edit]
[-] AppConsentRequestScope.php
[edit]
[-] AppCredentialRestrictionType.php
[edit]
[-] AppHostedMediaConfig.php
[edit]
[-] AppIdentity.php
[edit]
[-] AppInstallControlType.php
[edit]
[-] AppKeyCredentialRestrictionType.php
[edit]
[-] AppListItem.php
[edit]
[-] AppListType.php
[edit]
[-] AppLockerApplicationControlType.php
[edit]
[-] AppLogCollectionDownloadDetails.php
[edit]
[-] AppLogCollectionRequest.php
[edit]
[-] AppLogDecryptionAlgorithm.php
[edit]
[-] AppLogUploadState.php
[edit]
[-] AppManagementConfiguration.php
[edit]
[-] AppManagementLevel.php
[edit]
[-] AppManagementPolicy.php
[edit]
[-] AppMetadata.php
[edit]
[-] AppMetadataEntry.php
[edit]
[-] AppRole.php
[edit]
[-] AppRoleAssignment.php
[edit]
[-] AppScope.php
[edit]
[-] AppVulnerabilityManagedDevice.php
[edit]
[-] AppVulnerabilityMobileApp.php
[edit]
[-] AppVulnerabilityTask.php
[edit]
[-] AppVulnerabilityTaskMitigationType.php
[edit]
[-] AppleAppListItem.php
[edit]
[-] AppleDeploymentChannel.php
[edit]
[-] AppleDeviceFeaturesConfigurationBase.php
[edit]
[-] AppleEnrollmentProfileAssignment.php
[edit]
[-] AppleExpeditedCheckinConfigurationBase.php
[edit]
[-] AppleManagedIdentityProvider.php
[edit]
[-] AppleOwnerTypeEnrollmentType.php
[edit]
[-] ApplePushNotificationCertificate.php
[edit]
[-] AppleSubjectNameFormat.php
[edit]
[-] AppleUserInitiatedEnrollmentProfile.php
[edit]
[-] AppleUserInitiatedEnrollmentType.php
[edit]
[-] AppleVpnAlwaysOnConfiguration.php
[edit]
[-] AppleVpnConfiguration.php
[edit]
[-] AppleVpnConnectionType.php
[edit]
[-] AppleVppTokenTroubleshootingEvent.php
[edit]
[-] Application.php
[edit]
[-] ApplicationEnforcedRestrictionsSessionControl.php
[edit]
[-] ApplicationGuardBlockClipboardSharingType.php
[edit]
[-] ApplicationGuardBlockFileTransferType.php
[edit]
[-] ApplicationGuardEnabledOptions.php
[edit]
[-] ApplicationMode.php
[edit]
[-] ApplicationPermissionsRequired.php
[edit]
[-] ApplicationServicePrincipal.php
[edit]
[-] ApplicationSignInDetailedSummary.php
[edit]
[-] ApplicationSignInSummary.php
[edit]
[-] ApplicationTemplate.php
[edit]
[-] ApplicationType.php
[edit]
[-] AppliedConditionalAccessPolicy.php
[edit]
[-] AppliedConditionalAccessPolicyResult.php
[edit]
[-] ApplyLabelAction.php
[edit]
[-] Approval.php
[edit]
[-] ApprovalFilterByCurrentUserOptions.php
[edit]
[-] ApprovalSettings.php
[edit]
[-] ApprovalStage.php
[edit]
[-] ApprovalState.php
[edit]
[-] ApprovalStep.php
[edit]
[-] ApprovalWorkflowProvider.php
[edit]
[-] ArchivedPrintJob.php
[edit]
[-] AssignedLabel.php
[edit]
[-] AssignedLicense.php
[edit]
[-] AssignedPlan.php
[edit]
[-] AssignedTrainingInfo.php
[edit]
[-] AssignmentFilterEvaluateRequest.php
[edit]
[-] AssignmentFilterEvaluationResult.php
[edit]
[-] AssignmentFilterEvaluationStatusDetails.php
[edit]
[-] AssignmentFilterEvaluationSummary.php
[edit]
[-] AssignmentFilterOperator.php
[edit]
[-] AssignmentFilterPayloadType.php
[edit]
[-] AssignmentFilterState.php
[edit]
[-] AssignmentFilterStatusDetails.php
[edit]
[-] AssignmentFilterSupportedProperty.php
[edit]
[-] AssignmentFilterTypeAndEvaluationResult.php
[edit]
[-] AssignmentFilterValidationResult.php
[edit]
[-] AssignmentMethod.php
[edit]
[-] AssignmentOrder.php
[edit]
[-] AssignmentReviewSettings.php
[edit]
[-] AssociatedTeamInfo.php
[edit]
[-] Attachment.php
[edit]
[-] AttachmentBase.php
[edit]
[-] AttachmentInfo.php
[edit]
[-] AttachmentItem.php
[edit]
[-] AttachmentSession.php
[edit]
[-] AttachmentType.php
[edit]
[-] AttackSimulationRepeatOffender.php
[edit]
[-] AttackSimulationRoot.php
[edit]
[-] AttackSimulationSimulationUserCoverage.php
[edit]
[-] AttackSimulationTrainingUserCoverage.php
[edit]
[-] AttackSimulationUser.php
[edit]
[-] AttendanceInterval.php
[edit]
[-] AttendanceRecord.php
[edit]
[-] Attendee.php
[edit]
[-] AttendeeAvailability.php
[edit]
[-] AttendeeBase.php
[edit]
[-] AttendeeType.php
[edit]
[-] AttestationLevel.php
[edit]
[-] AttributeDefinition.php
[edit]
[-] AttributeFlowBehavior.php
[edit]
[-] AttributeFlowType.php
[edit]
[-] AttributeMapping.php
[edit]
[-] AttributeMappingFunctionSchema.php
[edit]
[-] AttributeMappingParameterSchema.php
[edit]
[-] AttributeMappingSource.php
[edit]
[-] AttributeMappingSourceType.php
[edit]
[-] AttributeSet.php
[edit]
[-] AttributeType.php
[edit]
[-] Audio.php
[edit]
[-] AudioConferencing.php
[edit]
[-] AudioRoutingGroup.php
[edit]
[-] AuditActivityInitiator.php
[edit]
[-] AuditActor.php
[edit]
[-] AuditEvent.php
[edit]
[-] AuditLogRoot.php
[edit]
[-] AuditProperty.php
[edit]
[-] AuditResource.php
[edit]
[-] AuditUserIdentity.php
[edit]
[-] BaseItem.php
[edit]
[-] AuthMethodsType.php
[edit]
[-] Authentication.php
[edit]
[-] AuthenticationContext.php
[edit]
[-] AuthenticationContextClassReference.php
[edit]
[-] AuthenticationContextDetail.php
[edit]
[-] AuthenticationDetail.php
[edit]
[-] AuthenticationEventsPolicy.php
[edit]
[-] AuthenticationFlowsPolicy.php
[edit]
[-] AuthenticationListener.php
[edit]
[-] AuthenticationMethod.php
[edit]
[-] AuthenticationMethodConfiguration.php
[edit]
[-] AuthenticationMethodFeature.php
[edit]
[-] AuthenticationMethodKeyStrength.php
[edit]
[-] AuthenticationMethodSignInState.php
[edit]
[-] AuthenticationMethodState.php
[edit]
[-] AuthenticationMethodTarget.php
[edit]
[-] AuthenticationMethodTargetType.php
[edit]
[-] AuthenticationMethodsPolicy.php
[edit]
[-] AuthenticationMethodsRegistrationCampaign.php
[edit]
[-] AuthenticationMethodsRegistrationCampaignIncludeTarget.php
[edit]
[-] AuthenticationMethodsRoot.php
[edit]
[-] AuthenticationPhoneType.php
[edit]
[-] AuthenticationProtocol.php
[edit]
[-] AuthenticationRequirementPolicy.php
[edit]
[-] AuthenticationSourceFilter.php
[edit]
[-] AuthenticationStrength.php
[edit]
[-] AuthenticationTransformConstant.php
[edit]
[-] AuthoredNote.php
[edit]
[-] AuthorizationInfo.php
[edit]
[-] AuthorizationPolicy.php
[edit]
[-] AutoAdmittedUsersType.php
[edit]
[-] AutoLabeling.php
[edit]
[-] AutoRestartNotificationDismissalMethod.php
[edit]
[-] AutoReviewSettings.php
[edit]
[-] AutomaticRepliesMailTips.php
[edit]
[-] AutomaticRepliesSetting.php
[edit]
[-] AutomaticRepliesStatus.php
[edit]
[-] AutomaticUpdateMode.php
[edit]
[-] AvailabilityItem.php
[edit]
[-] AverageComparativeScore.php
[edit]
[-] AzureADFeatureUsage.php
[edit]
[-] AzureADLicenseType.php
[edit]
[-] AzureADLicenseUsage.php
[edit]
[-] AzureADRegistrationPolicy.php
[edit]
[-] AzureADUserFeatureUsage.php
[edit]
[-] AzureADWindowsAutopilotDeploymentProfile.php
[edit]
[-] AzureActiveDirectoryTenant.php
[edit]
[-] AzureAdJoinPolicy.php
[edit]
[-] AzureAdTokenAuthentication.php
[edit]
[-] AzureCommunicationServicesUserIdentity.php
[edit]
[-] B2cAuthenticationMethodsPolicy.php
[edit]
[-] B2cIdentityUserFlow.php
[edit]
[-] B2xIdentityUserFlow.php
[edit]
[-] BaseItemVersion.php
[edit]
[-] BaseTask.php
[edit]
[-] BaseTaskList.php
[edit]
[-] BasicAuthentication.php
[edit]
[-] BinaryOperator.php
[edit]
[-] BitLockerEncryptionMethod.php
[edit]
[-] BitLockerFixedDrivePolicy.php
[edit]
[-] BitLockerRecoveryInformationType.php
[edit]
[-] BitLockerRecoveryOptions.php
[edit]
[-] BitLockerRecoveryPasswordRotationType.php
[edit]
[-] BitLockerRemovableDrivePolicy.php
[edit]
[-] BitLockerSystemDrivePolicy.php
[edit]
[-] Bitlocker.php
[edit]
[-] BitlockerRecoveryKey.php
[edit]
[-] BlockAccessAction.php
[edit]
[-] BodyType.php
[edit]
[-] BookingAppointment.php
[edit]
[-] BookingBusiness.php
[edit]
[-] BookingCurrency.php
[edit]
[-] BookingCustomQuestion.php
[edit]
[-] BookingCustomer.php
[edit]
[-] BookingCustomerInformation.php
[edit]
[-] BookingCustomerInformationBase.php
[edit]
[-] BookingInvoiceStatus.php
[edit]
[-] BookingNamedEntity.php
[edit]
[-] BookingPerson.php
[edit]
[-] BookingPriceType.php
[edit]
[-] BookingQuestionAnswer.php
[edit]
[-] BookingQuestionAssignment.php
[edit]
[-] BookingReminder.php
[edit]
[-] BookingReminderRecipients.php
[edit]
[-] BookingSchedulingPolicy.php
[edit]
[-] BookingService.php
[edit]
[-] BookingStaffMember.php
[edit]
[-] BookingStaffRole.php
[edit]
[-] BookingType.php
[edit]
[-] BookingWorkHours.php
[edit]
[-] BookingWorkTimeSlot.php
[edit]
[-] BookingsAvailabilityStatus.php
[edit]
[-] BooleanColumn.php
[edit]
[-] BroadcastMeetingAudience.php
[edit]
[-] BroadcastMeetingCaptionSettings.php
[edit]
[-] BroadcastMeetingSettings.php
[edit]
[-] BrowserSyncSetting.php
[edit]
[-] BucketAggregationDefinition.php
[edit]
[-] BucketAggregationRange.php
[edit]
[-] BucketAggregationSortProperty.php
[edit]
[-] BufferDecryptionResult.php
[edit]
[-] BufferEncryptionResult.php
[edit]
[-] BuiltInIdentityProvider.php
[edit]
[-] BulkDriverActionResult.php
[edit]
[-] BulkManagedDeviceActionResult.php
[edit]
[-] Bundle.php
[edit]
[-] BusinessFlow.php
[edit]
[-] BusinessFlowSettings.php
[edit]
[-] BusinessFlowTemplate.php
[edit]
[-] CalculatedColumn.php
[edit]
[-] Calendar.php
[edit]
[-] CalendarColor.php
[edit]
[-] CalendarGroup.php
[edit]
[-] CalendarPermission.php
[edit]
[-] CalendarRoleType.php
[edit]
[-] CalendarSharingAction.php
[edit]
[-] CalendarSharingActionImportance.php
[edit]
[-] CalendarSharingActionType.php
[edit]
[-] CalendarSharingMessage.php
[edit]
[-] CalendarSharingMessageAction.php
[edit]
[-] Call.php
[edit]
[-] CallActivityStatistics.php
[edit]
[-] CallDirection.php
[edit]
[-] CallDisposition.php
[edit]
[-] CallEndedEventMessageDetail.php
[edit]
[-] CallMediaState.php
[edit]
[-] CallOptions.php
[edit]
[-] CallParticipantInfo.php
[edit]
[-] CallRecordingEventMessageDetail.php
[edit]
[-] CallRecordingStatus.php
[edit]
[-] CallRoute.php
[edit]
[-] CallStartedEventMessageDetail.php
[edit]
[-] CallState.php
[edit]
[-] CallTranscriptEventMessageDetail.php
[edit]
[-] CallTranscriptionInfo.php
[edit]
[-] CallTranscriptionState.php
[edit]
[-] CancelMediaProcessingOperation.php
[edit]
[-] CartToClassAssociation.php
[edit]
[-] CategoryColor.php
[edit]
[-] CertificateAuthority.php
[edit]
[-] CertificateBasedAuthConfiguration.php
[edit]
[-] CertificateConnectorDetails.php
[edit]
[-] CertificateConnectorHealthMetricValue.php
[edit]
[-] CertificateConnectorSetting.php
[edit]
[-] CertificateDestinationStore.php
[edit]
[-] CertificateIssuanceStates.php
[edit]
[-] CertificateRevocationStatus.php
[edit]
[-] CertificateStatus.php
[edit]
[-] CertificateStore.php
[edit]
[-] CertificateValidityPeriodScale.php
[edit]
[-] Certification.php
[edit]
[-] CertificationControl.php
[edit]
[-] ChangeNotification.php
[edit]
[-] ChangeNotificationCollection.php
[edit]
[-] ChangeNotificationEncryptedContent.php
[edit]
[-] ChangeTrackedEntity.php
[edit]
[-] ChangeType.php
[edit]
[-] ChangeUefiSettingsPermission.php
[edit]
[-] Channel.php
[edit]
[-] ChannelAddedEventMessageDetail.php
[edit]
[-] ChannelDeletedEventMessageDetail.php
[edit]
[-] ChannelDescriptionUpdatedEventMessageDetail.php
[edit]
[-] ChannelIdentity.php
[edit]
[-] ChannelMembersNotificationRecipient.php
[edit]
[-] ChannelMembershipType.php
[edit]
[-] ChannelModerationSettings.php
[edit]
[-] ChannelRenamedEventMessageDetail.php
[edit]
[-] ChannelSetAsFavoriteByDefaultEventMessageDetail.php
[edit]
[-] ChannelUnsetAsFavoriteByDefaultEventMessageDetail.php
[edit]
[-] ChassisType.php
[edit]
[-] Chat.php
[edit]
[-] ChatActivityStatistics.php
[edit]
[-] ChatInfo.php
[edit]
[-] ChatMembersNotificationRecipient.php
[edit]
[-] ChatMessage.php
[edit]
[-] ChatMessageAttachment.php
[edit]
[-] ChatMessageFromIdentitySet.php
[edit]
[-] ChatMessageHostedContent.php
[edit]
[-] ChatMessageImportance.php
[edit]
[-] ChatMessageInfo.php
[edit]
[-] ChatMessageMention.php
[edit]
[-] ChatMessageMentionedIdentitySet.php
[edit]
[-] ChatMessagePolicyViolation.php
[edit]
[-] ChatMessagePolicyViolationDlpActionTypes.php
[edit]
[-] ChatMessagePolicyViolationPolicyTip.php
[edit]
[-] ChatMessagePolicyViolationUserActionTypes.php
[edit]
[-] ChatMessagePolicyViolationVerdictDetailsTypes.php
[edit]
[-] ChatMessageReaction.php
[edit]
[-] ChatMessageReactionIdentitySet.php
[edit]
[-] ChatMessageType.php
[edit]
[-] ChatRenamedEventMessageDetail.php
[edit]
[-] ChatType.php
[edit]
[-] ChatViewpoint.php
[edit]
[-] ChecklistItem.php
[edit]
[-] ChoiceColumn.php
[edit]
[-] ChromeOSDeviceProperty.php
[edit]
[-] ChromeOSOnboardingSettings.php
[edit]
[-] ChromeOSOnboardingStatus.php
[edit]
[-] ClaimsMapping.php
[edit]
[-] ClaimsMappingPolicy.php
[edit]
[-] ClassifcationErrorBase.php
[edit]
[-] ClassificationAttribute.php
[edit]
[-] ClassificationError.php
[edit]
[-] ClassificationInnerError.php
[edit]
[-] ClassificationJobResponse.php
[edit]
[-] ClassificationMethod.php
[edit]
[-] ClassificationResult.php
[edit]
[-] ClientCertificateAuthentication.php
[edit]
[-] ClientCredentialType.php
[edit]
[-] ClonableTeamParts.php
[edit]
[-] CloudAppSecurityProfile.php
[edit]
[-] CloudAppSecuritySessionControl.php
[edit]
[-] CloudAppSecuritySessionControlType.php
[edit]
[-] CloudAppSecurityState.php
[edit]
[-] CloudCommunications.php
[edit]
[-] CloudPC.php
[edit]
[-] CloudPCConnectivityIssue.php
[edit]
[-] CloudPcAuditActivityOperationType.php
[edit]
[-] CloudPcAuditActivityResult.php
[edit]
[-] CloudPcAuditActor.php
[edit]
[-] CloudPcAuditActorType.php
[edit]
[-] CloudPcAuditCategory.php
[edit]
[-] CloudPcAuditEvent.php
[edit]
[-] CloudPcAuditProperty.php
[edit]
[-] CloudPcAuditResource.php
[edit]
[-] CloudPcBulkRemoteActionResult.php
[edit]
[-] CloudPcConnectivityEvent.php
[edit]
[-] CloudPcConnectivityEventResult.php
[edit]
[-] CloudPcConnectivityEventType.php
[edit]
[-] CloudPcConnectivityResult.php
[edit]
[-] CloudPcConnectivityStatus.php
[edit]
[-] CloudPcDeviceImage.php
[edit]
[-] CloudPcDeviceImageOsStatus.php
[edit]
[-] CloudPcDeviceImageStatus.php
[edit]
[-] CloudPcDeviceImageStatusDetails.php
[edit]
[-] CloudPcDomainJoinConfiguration.php
[edit]
[-] CloudPcDomainJoinType.php
[edit]
[-] CloudPcExternalPartnerSetting.php
[edit]
[-] CloudPcExternalPartnerStatus.php
[edit]
[-] CloudPcForensicStorageAccount.php
[edit]
[-] CloudPcGalleryImage.php
[edit]
[-] CloudPcGalleryImageStatus.php
[edit]
[-] CloudPcHealthCheckItem.php
[edit]
[-] CloudPcLaunchInfo.php
[edit]
[-] CloudPcLoginResult.php
[edit]
[-] CloudPcManagementAssignmentTarget.php
[edit]
[-] CloudPcManagementGroupAssignmentTarget.php
[edit]
[-] CloudPcManagementService.php
[edit]
[-] CloudPcOnPremisesConnection.php
[edit]
[-] CloudPcOnPremisesConnectionHealthCheck.php
[edit]
[-] CloudPcOnPremisesConnectionHealthCheckErrorType.php
[edit]
[-] CloudPcOnPremisesConnectionStatus.php
[edit]
[-] CloudPcOnPremisesConnectionStatusDetails.php
[edit]
[-] CloudPcOnPremisesConnectionType.php
[edit]
[-] CloudPcOperatingSystem.php
[edit]
[-] CloudPcOrganizationSettings.php
[edit]
[-] CloudPcProvisioningPolicy.php
[edit]
[-] CloudPcProvisioningPolicyAssignment.php
[edit]
[-] CloudPcProvisioningPolicyImageType.php
[edit]
[-] CloudPcRemoteActionResult.php
[edit]
[-] CloudPcRestorePointSetting.php
[edit]
[-] CloudPcReviewStatus.php
[edit]
[-] CloudPcServicePlan.php
[edit]
[-] CloudPcServicePlanType.php
[edit]
[-] CloudPcSnapshot.php
[edit]
[-] CloudPcSnapshotStatus.php
[edit]
[-] CloudPcSourceDeviceImage.php
[edit]
[-] CloudPcStatus.php
[edit]
[-] CloudPcStatusDetails.php
[edit]
[-] CloudPcSubscription.php
[edit]
[-] CloudPcSupportedRegion.php
[edit]
[-] CloudPcSupportedRegionStatus.php
[edit]
[-] CloudPcUserAccessLevel.php
[edit]
[-] CloudPcUserAccountType.php
[edit]
[-] CloudPcUserRoleScopeTagInfo.php
[edit]
[-] CloudPcUserSetting.php
[edit]
[-] CloudPcUserSettingAssignment.php
[edit]
[-] CloudPcWindowsSettings.php
[edit]
[-] Code.php
[edit]
[-] ColumnDefinition.php
[edit]
[-] ColumnLink.php
[edit]
[-] ColumnTypes.php
[edit]
[-] ColumnValidation.php
[edit]
[-] ComanagedDevicesSummary.php
[edit]
[-] ComanagementEligibleDevice.php
[edit]
[-] ComanagementEligibleType.php
[edit]
[-] ComanagementEligibleDevicesSummary.php
[edit]
[-] Command.php
[edit]
[-] CommentAction.php
[edit]
[-] CommsApplication.php
[edit]
[-] CommsNotification.php
[edit]
[-] CommsNotifications.php
[edit]
[-] CommsOperation.php
[edit]
[-] CommunicationsApplicationIdentity.php
[edit]
[-] CommunicationsApplicationInstanceIdentity.php
[edit]
[-] CommunicationsEncryptedIdentity.php
[edit]
[-] CommunicationsGuestIdentity.php
[edit]
[-] CommunicationsIdentitySet.php
[edit]
[-] CommunicationsPhoneIdentity.php
[edit]
[-] CommunicationsUserIdentity.php
[edit]
[-] Company.php
[edit]
[-] CompanyDetail.php
[edit]
[-] CompanyInformation.php
[edit]
[-] CompanyPortalAction.php
[edit]
[-] CompanyPortalBlockedAction.php
[edit]
[-] ComplexExtensionValue.php
[edit]
[-] Compliance.php
[edit]
[-] ComplianceInformation.php
[edit]
[-] ComplianceManagementPartner.php
[edit]
[-] ComplianceManagementPartnerAssignment.php
[edit]
[-] ComplianceState.php
[edit]
[-] ComplianceStatus.php
[edit]
[-] Component.php
[edit]
[-] ConditionalAccessApplications.php
[edit]
[-] ConditionalAccessClientApp.php
[edit]
[-] ConditionalAccessClientApplications.php
[edit]
[-] ConditionalAccessConditionSet.php
[edit]
[-] ConditionalAccessConditions.php
[edit]
[-] ConditionalAccessDevicePlatform.php
[edit]
[-] ConditionalAccessDeviceStates.php
[edit]
[-] ConditionalAccessDevices.php
[edit]
[-] ConditionalAccessFilter.php
[edit]
[-] ConditionalAccessGrantControl.php
[edit]
[-] ConditionalAccessGrantControls.php
[edit]
[-] ConditionalAccessLocations.php
[edit]
[-] ConditionalAccessPlatforms.php
[edit]
[-] ConditionalAccessPolicy.php
[edit]
[-] ConditionalAccessPolicyState.php
[edit]
[-] ConditionalAccessRoot.php
[edit]
[-] ConditionalAccessRule.php
[edit]
[-] ConditionalAccessRuleSatisfied.php
[edit]
[-] ConditionalAccessSessionControl.php
[edit]
[-] ConditionalAccessSessionControls.php
[edit]
[-] ConditionalAccessStatus.php
[edit]
[-] ConditionalAccessUsers.php
[edit]
[-] ConfigManagerCollection.php
[edit]
[-] ConfigManagerPolicySummary.php
[edit]
[-] Configuration.php
[edit]
[-] ConfigurationManagerAction.php
[edit]
[-] ConfigurationManagerActionDeliveryStatus.php
[edit]
[-] ConfigurationManagerActionResult.php
[edit]
[-] ConfigurationManagerActionType.php
[edit]
[-] ConfigurationManagerClientEnabledFeatures.php
[edit]
[-] ConfigurationManagerClientHealthState.php
[edit]
[-] ConfigurationManagerClientInformation.php
[edit]
[-] ConfigurationManagerClientState.php
[edit]
[-] ConfigurationManagerCollectionAssignmentTarget.php
[edit]
[-] ConfigurationUsage.php
[edit]
[-] ConfirmedBy.php
[edit]
[-] ConnectedOrganization.php
[edit]
[-] ConnectedOrganizationMembers.php
[edit]
[-] ConnectedOrganizationState.php
[edit]
[-] ConnectionDirection.php
[edit]
[-] ConnectionInfo.php
[edit]
[-] ConnectionOperation.php
[edit]
[-] ConnectionOperationStatus.php
[edit]
[-] ConnectionState.php
[edit]
[-] ConnectionStatus.php
[edit]
[-] Connector.php
[edit]
[-] ConnectorGroup.php
[edit]
[-] ConnectorGroupRegion.php
[edit]
[-] ConnectorGroupType.php
[edit]
[-] ConnectorStatus.php
[edit]
[-] ConsentRequestFilterByCurrentUserOptions.php
[edit]
[-] Contact.php
[edit]
[-] ContactFolder.php
[edit]
[-] ContactMergeSuggestions.php
[edit]
[-] ContactRelationship.php
[edit]
[-] ContentAlignment.php
[edit]
[-] ContentApprovalStatusColumn.php
[edit]
[-] ContentClassification.php
[edit]
[-] ContentFormat.php
[edit]
[-] ContentInfo.php
[edit]
[-] ContentMetadata.php
[edit]
[-] ContentProperties.php
[edit]
[-] ContentSharingSession.php
[edit]
[-] ContentState.php
[edit]
[-] ContentType.php
[edit]
[-] ContentTypeInfo.php
[edit]
[-] ContentTypeOrder.php
[edit]
[-] ContinuousAccessEvaluationMode.php
[edit]
[-] Contract.php
[edit]
[-] ContinuousAccessEvaluationPolicy.php
[edit]
[-] ContinuousAccessEvaluationSessionControl.php
[edit]
[-] ControlScore.php
[edit]
[-] Conversation.php
[edit]
[-] ConversationMember.php
[edit]
[-] ConversationMemberRoleUpdatedEventMessageDetail.php
[edit]
[-] ConversationThread.php
[edit]
[-] ConvertIdResult.php
[edit]
[-] CopyNotebookModel.php
[edit]
[-] CorsConfiguration.php
[edit]
[-] CountryLookupMethodType.php
[edit]
[-] CountryNamedLocation.php
[edit]
[-] CountryRegion.php
[edit]
[-] CreateAction.php
[edit]
[-] Credential.php
[edit]
[-] CredentialSingleSignOnExtension.php
[edit]
[-] CredentialUsageSummary.php
[edit]
[-] CredentialUserRegistrationCount.php
[edit]
[-] CredentialUserRegistrationDetails.php
[edit]
[-] CrossCloudAzureActiveDirectoryTenant.php
[edit]
[-] CrossTenantAccessPolicy.php
[edit]
[-] CrossTenantAccessPolicyB2BSetting.php
[edit]
[-] CrossTenantAccessPolicyConfigurationDefault.php
[edit]
[-] CrossTenantAccessPolicyConfigurationPartner.php
[edit]
[-] CrossTenantAccessPolicyInboundTrust.php
[edit]
[-] CrossTenantAccessPolicyTarget.php
[edit]
[-] CrossTenantAccessPolicyTargetConfiguration.php
[edit]
[-] CrossTenantAccessPolicyTargetConfigurationAccessType.php
[edit]
[-] CrossTenantAccessPolicyTargetType.php
[edit]
[-] CryptographySuite.php
[edit]
[-] Currency.php
[edit]
[-] CurrencyColumn.php
[edit]
[-] CurrentLabel.php
[edit]
[-] CustomAccessPackageWorkflowExtension.php
[edit]
[-] CustomAction.php
[edit]
[-] CustomCalloutExtension.php
[edit]
[-] CustomExtensionAuthenticationConfiguration.php
[edit]
[-] CustomExtensionCallbackConfiguration.php
[edit]
[-] CustomExtensionCalloutRequest.php
[edit]
[-] CustomExtensionCalloutResponse.php
[edit]
[-] CustomExtensionClientConfiguration.php
[edit]
[-] CustomExtensionData.php
[edit]
[-] CustomExtensionEndpointConfiguration.php
[edit]
[-] CustomExtensionHandler.php
[edit]
[-] CustomExtensionHandlerInstance.php
[edit]
[-] CustomQuestionAnswer.php
[edit]
[-] CustomSecurityAttributeDefinition.php
[edit]
[-] CustomSecurityAttributeValue.php
[edit]
[-] CustomSubjectAlternativeName.php
[edit]
[-] CustomTimeZone.php
[edit]
[-] CustomUpdateTimeWindow.php
[edit]
[-] Customer.php
[edit]
[-] CustomerPayment.php
[edit]
[-] CustomerPaymentJournal.php
[edit]
[-] DataClassificationService.php
[edit]
[-] DataLossPreventionPolicy.php
[edit]
[-] DataPolicyOperation.php
[edit]
[-] DataPolicyOperationStatus.php
[edit]
[-] DataSharingConsent.php
[edit]
[-] DataStoreField.php
[edit]
[-] DataSubject.php
[edit]
[-] DataSubjectType.php
[edit]
[-] DataType.php
[edit]
[-] DateTimeColumn.php
[edit]
[-] DateTimeTimeZone.php
[edit]
[-] DateTimeTimeZoneType.php
[edit]
[-] DayOfWeek.php
[edit]
[-] DaylightTimeZoneOffset.php
[edit]
[-] DecisionItemPrincipalResourceMembership.php
[edit]
[-] DecisionItemPrincipalResourceMembershipType.php
[edit]
[-] DefaultColumnValue.php
[edit]
[-] DefaultDeviceCompliancePolicy.php
[edit]
[-] DefaultManagedAppProtection.php
[edit]
[-] DefaultMfaMethodType.php
[edit]
[-] DefaultUserRoleOverride.php
[edit]
[-] DefaultUserRolePermissions.php
[edit]
[-] DefenderAttackSurfaceType.php
[edit]
[-] DefenderCloudBlockLevelType.php
[edit]
[-] DefenderDetectedMalwareActions.php
[edit]
[-] DefenderMonitorFileActivity.php
[edit]
[-] DefenderPotentiallyUnwantedAppAction.php
[edit]
[-] DefenderPromptForSampleSubmission.php
[edit]
[-] DefenderProtectionType.php
[edit]
[-] DefenderRealtimeScanDirection.php
[edit]
[-] DefenderScanType.php
[edit]
[-] DefenderSecurityCenterITContactDisplayType.php
[edit]
[-] DefenderSecurityCenterNotificationsFromAppType.php
[edit]
[-] DefenderSubmitSamplesConsentType.php
[edit]
[-] DefenderThreatAction.php
[edit]
[-] DelegateMeetingMessageDeliveryOptions.php
[edit]
[-] DelegatedAdminAccessAssignment.php
[edit]
[-] DelegatedAdminAccessAssignmentStatus.php
[edit]
[-] DelegatedAdminAccessContainer.php
[edit]
[-] DelegatedAdminAccessContainerType.php
[edit]
[-] DelegatedAdminAccessDetails.php
[edit]
[-] DelegatedAdminCustomer.php
[edit]
[-] DelegatedAdminRelationship.php
[edit]
[-] DelegatedAdminRelationshipCustomerParticipant.php
[edit]
[-] DelegatedAdminRelationshipOperation.php
[edit]
[-] DelegatedAdminRelationshipOperationType.php
[edit]
[-] DelegatedAdminRelationshipRequest.php
[edit]
[-] DelegatedAdminRelationshipRequestAction.php
[edit]
[-] DelegatedAdminRelationshipRequestStatus.php
[edit]
[-] DelegatedAdminRelationshipStatus.php
[edit]
[-] DelegatedAdminServiceManagementDetail.php
[edit]
[-] DelegatedPermissionClassification.php
[edit]
[-] DeleteAction.php
[edit]
[-] DeleteUserFromSharedAppleDeviceActionResult.php
[edit]
[-] Deleted.php
[edit]
[-] DeletedTeam.php
[edit]
[-] DeliveryOptimizationBandwidth.php
[edit]
[-] DeliveryOptimizationBandwidthAbsolute.php
[edit]
[-] DeliveryOptimizationBandwidthBusinessHoursLimit.php
[edit]
[-] DeliveryOptimizationBandwidthHoursWithPercentage.php
[edit]
[-] DeliveryOptimizationBandwidthPercentage.php
[edit]
[-] DeliveryOptimizationGroupIdCustom.php
[edit]
[-] DeliveryOptimizationGroupIdOptionsType.php
[edit]
[-] DeliveryOptimizationGroupIdSource.php
[edit]
[-] DeliveryOptimizationGroupIdSourceOptions.php
[edit]
[-] DeliveryOptimizationMaxCacheSize.php
[edit]
[-] DeliveryOptimizationMaxCacheSizeAbsolute.php
[edit]
[-] DeliveryOptimizationMaxCacheSizePercentage.php
[edit]
[-] DeliveryOptimizationRestrictPeerSelectionByOptions.php
[edit]
[-] DepEnrollmentBaseProfile.php
[edit]
[-] DepEnrollmentProfile.php
[edit]
[-] DepIOSEnrollmentProfile.php
[edit]
[-] DepMacOSEnrollmentProfile.php
[edit]
[-] DepOnboardingSetting.php
[edit]
[-] DepTokenType.php
[edit]
[-] DerivedCredentialProviderType.php
[edit]
[-] DetailsInfo.php
[edit]
[-] DetectedApp.php
[edit]
[-] DetectedSensitiveContent.php
[edit]
[-] DetectedSensitiveContentBase.php
[edit]
[-] DetectedSensitiveContentWrapper.php
[edit]
[-] Device.php
[edit]
[-] DeviceActionResult.php
[edit]
[-] DeviceAndAppManagementAssignedRoleDetails.php
[edit]
[-] DeviceAndAppManagementAssignmentFilter.php
[edit]
[-] DeviceAndAppManagementAssignmentFilterType.php
[edit]
[-] DeviceAndAppManagementAssignmentSource.php
[edit]
[-] DeviceAndAppManagementAssignmentTarget.php
[edit]
[-] DeviceAndAppManagementData.php
[edit]
[-] DeviceAndAppManagementRoleAssignment.php
[edit]
[-] DeviceAndAppManagementRoleDefinition.php
[edit]
[-] DeviceAppManagement.php
[edit]
[-] DeviceAppManagementTask.php
[edit]
[-] DeviceAppManagementTaskCategory.php
[edit]
[-] DeviceAppManagementTaskPriority.php
[edit]
[-] DeviceAppManagementTaskStatus.php
[edit]
[-] DeviceCategory.php
[edit]
[-] DeviceComanagementAuthorityConfiguration.php
[edit]
[-] DeviceComplianceActionItem.php
[edit]
[-] DeviceComplianceActionType.php
[edit]
[-] DeviceComplianceDeviceOverview.php
[edit]
[-] DeviceComplianceDeviceStatus.php
[edit]
[-] DeviceCompliancePolicy.php
[edit]
[-] DeviceCompliancePolicyAssignment.php
[edit]
[-] DeviceCompliancePolicyDeviceStateSummary.php
[edit]
[-] DeviceCompliancePolicyGroupAssignment.php
[edit]
[-] DeviceCompliancePolicyPolicySetItem.php
[edit]
[-] DeviceCompliancePolicyScript.php
[edit]
[-] DeviceCompliancePolicySettingState.php
[edit]
[-] DeviceCompliancePolicySettingStateSummary.php
[edit]
[-] DeviceCompliancePolicyState.php
[edit]
[-] DeviceComplianceScheduledActionForRule.php
[edit]
[-] DeviceComplianceScript.php
[edit]
[-] DeviceComplianceScriptDeviceState.php
[edit]
[-] DeviceComplianceScriptError.php
[edit]
[-] DeviceComplianceScriptRulOperator.php
[edit]
[-] DeviceConfiguration.php
[edit]
[-] DeviceComplianceScriptRule.php
[edit]
[-] DeviceComplianceScriptRuleDataType.php
[edit]
[-] DeviceComplianceScriptRuleError.php
[edit]
[-] DeviceComplianceScriptRulesValidationError.php
[edit]
[-] DeviceComplianceScriptRunSummary.php
[edit]
[-] DeviceComplianceScriptValidationResult.php
[edit]
[-] DeviceComplianceSettingState.php
[edit]
[-] DeviceComplianceUserOverview.php
[edit]
[-] DeviceComplianceUserStatus.php
[edit]
[-] DeviceConfigAssignmentIntent.php
[edit]
[-] DeviceConfigurationAssignment.php
[edit]
[-] DeviceConfigurationConflictSummary.php
[edit]
[-] DeviceConfigurationDeviceOverview.php
[edit]
[-] DeviceConfigurationDeviceStateSummary.php
[edit]
[-] DeviceConfigurationDeviceStatus.php
[edit]
[-] DeviceConfigurationGroupAssignment.php
[edit]
[-] DeviceConfigurationPolicySetItem.php
[edit]
[-] DeviceConfigurationSettingState.php
[edit]
[-] DeviceConfigurationState.php
[edit]
[-] DeviceConfigurationTargetedUserAndDevice.php
[edit]
[-] DeviceConfigurationUserOverview.php
[edit]
[-] DeviceConfigurationUserStateSummary.php
[edit]
[-] DeviceConfigurationUserStatus.php
[edit]
[-] DeviceCustomAttributeShellScript.php
[edit]
[-] DeviceCustomAttributeValueType.php
[edit]
[-] DeviceDetail.php
[edit]
[-] DeviceEnrollmentConfiguration.php
[edit]
[-] DeviceEnrollmentConfigurationType.php
[edit]
[-] DeviceEnrollmentFailureReason.php
[edit]
[-] DeviceEnrollmentLimitConfiguration.php
[edit]
[-] DeviceEnrollmentNotificationConfiguration.php
[edit]
[-] DeviceEnrollmentPlatformRestriction.php
[edit]
[-] DeviceEnrollmentPlatformRestrictionConfiguration.php
[edit]
[-] DeviceEnrollmentPlatformRestrictionsConfiguration.php
[edit]
[-] DeviceEnrollmentType.php
[edit]
[-] DeviceEnrollmentWindowsHelloForBusinessConfiguration.php
[edit]
[-] DeviceExchangeAccessStateSummary.php
[edit]
[-] DeviceGeoLocation.php
[edit]
[-] DeviceGuardLocalSystemAuthorityCredentialGuardState.php
[edit]
[-] DeviceGuardLocalSystemAuthorityCredentialGuardType.php
[edit]
[-] DeviceGuardVirtualizationBasedSecurityHardwareRequirementState.php
[edit]
[-] DeviceGuardVirtualizationBasedSecurityState.php
[edit]
[-] DeviceHealth.php
[edit]
[-] DeviceHealthAttestationState.php
[edit]
[-] DeviceHealthScript.php
[edit]
[-] DeviceHealthScriptAssignment.php
[edit]
[-] DeviceHealthScriptBooleanParameter.php
[edit]
[-] DeviceHealthScriptDailySchedule.php
[edit]
[-] DeviceHealthScriptDeviceState.php
[edit]
[-] DeviceHealthScriptHourlySchedule.php
[edit]
[-] DeviceHealthScriptIntegerParameter.php
[edit]
[-] DeviceHealthScriptParameter.php
[edit]
[-] DeviceHealthScriptRemediationHistory.php
[edit]
[-] DeviceHealthScriptRemediationHistoryData.php
[edit]
[-] DeviceHealthScriptRemediationSummary.php
[edit]
[-] DeviceHealthScriptRunOnceSchedule.php
[edit]
[-] DeviceHealthScriptRunSchedule.php
[edit]
[-] DeviceHealthScriptRunSummary.php
[edit]
[-] DeviceHealthScriptStringParameter.php
[edit]
[-] DeviceHealthScriptTimeSchedule.php
[edit]
[-] DeviceInstallState.php
[edit]
[-] DeviceKey.php
[edit]
[-] DeviceLicensingStatus.php
[edit]
[-] DeviceLogCollectionRequest.php
[edit]
[-] DeviceLogCollectionResponse.php
[edit]
[-] DeviceLogCollectionTemplateType.php
[edit]
[-] DeviceManagement.php
[edit]
[-] DeviceManagementAbstractComplexSettingDefinition.php
[edit]
[-] DeviceManagementAbstractComplexSettingInstance.php
[edit]
[-] DeviceManagementApplicabilityRuleDeviceMode.php
[edit]
[-] DeviceManagementApplicabilityRuleOsEdition.php
[edit]
[-] DeviceManagementApplicabilityRuleOsVersion.php
[edit]
[-] DeviceManagementApplicabilityRuleType.php
[edit]
[-] DeviceManagementAutopilotEvent.php
[edit]
[-] DeviceManagementAutopilotPolicyComplianceStatus.php
[edit]
[-] DeviceManagementAutopilotPolicyStatusDetail.php
[edit]
[-] DeviceManagementIntent.php
[edit]
[-] DeviceManagementAutopilotPolicyType.php
[edit]
[-] DeviceManagementBooleanSettingInstance.php
[edit]
[-] DeviceManagementCachedReportConfiguration.php
[edit]
[-] DeviceManagementCertificationAuthority.php
[edit]
[-] DeviceManagementCollectionSettingDefinition.php
[edit]
[-] DeviceManagementCollectionSettingInstance.php
[edit]
[-] DeviceManagementComparisonResult.php
[edit]
[-] DeviceManagementComplexSettingDefinition.php
[edit]
[-] DeviceManagementComplexSettingInstance.php
[edit]
[-] DeviceManagementComplianceActionItem.php
[edit]
[-] DeviceManagementComplianceActionType.php
[edit]
[-] DeviceManagementCompliancePolicy.php
[edit]
[-] DeviceManagementComplianceScheduledActionForRule.php
[edit]
[-] DeviceManagementConfigurationAzureAdTrustType.php
[edit]
[-] DeviceManagementConfigurationCategory.php
[edit]
[-] DeviceManagementConfigurationChoiceSettingCollectionDefinition.php
[edit]
[-] DeviceManagementConfigurationChoiceSettingCollectionInstance.php
[edit]
[-] DeviceManagementConfigurationChoiceSettingCollectionInstanceTemplate.php
[edit]
[-] DeviceManagementConfigurationChoiceSettingDefinition.php
[edit]
[-] DeviceManagementConfigurationChoiceSettingInstance.php
[edit]
[-] DeviceManagementConfigurationChoiceSettingInstanceTemplate.php
[edit]
[-] DeviceManagementConfigurationChoiceSettingValue.php
[edit]
[-] DeviceManagementConfigurationChoiceSettingValueConstantDefaultTemplate.php
[edit]
[-] DeviceManagementConfigurationChoiceSettingValueDefaultTemplate.php
[edit]
[-] DeviceManagementConfigurationChoiceSettingValueDefinitionTemplate.php
[edit]
[-] DeviceManagementConfigurationChoiceSettingValueTemplate.php
[edit]
[-] DeviceManagementConfigurationControlType.php
[edit]
[-] DeviceManagementConfigurationDependentOn.php
[edit]
[-] DeviceManagementConfigurationDeviceMode.php
[edit]
[-] DeviceManagementConfigurationExchangeOnlineSettingApplicability.php
[edit]
[-] DeviceManagementConfigurationGroupSettingCollectionInstance.php
[edit]
[-] DeviceManagementConfigurationGroupSettingCollectionInstanceTemplate.php
[edit]
[-] DeviceManagementConfigurationGroupSettingInstance.php
[edit]
[-] DeviceManagementConfigurationGroupSettingInstanceTemplate.php
[edit]
[-] DeviceManagementConfigurationGroupSettingValue.php
[edit]
[-] DeviceManagementConfigurationGroupSettingValueTemplate.php
[edit]
[-] DeviceManagementConfigurationIntegerSettingValue.php
[edit]
[-] DeviceManagementConfigurationIntegerSettingValueConstantDefaultTemplate.php
[edit]
[-] DeviceManagementConfigurationIntegerSettingValueDefaultTemplate.php
[edit]
[-] DeviceManagementConfigurationIntegerSettingValueDefinition.php
[edit]
[-] DeviceManagementConfigurationIntegerSettingValueDefinitionTemplate.php
[edit]
[-] DeviceManagementConfigurationIntegerSettingValueTemplate.php
[edit]
[-] DeviceManagementConfigurationOptionDefinition.php
[edit]
[-] DeviceManagementConfigurationOptionDefinitionTemplate.php
[edit]
[-] DeviceManagementConfigurationPlatforms.php
[edit]
[-] DeviceManagementConfigurationPolicy.php
[edit]
[-] DeviceManagementConfigurationPolicyAssignment.php
[edit]
[-] DeviceManagementConfigurationPolicyPolicySetItem.php
[edit]
[-] DeviceManagementConfigurationPolicyTemplate.php
[edit]
[-] DeviceManagementConfigurationPolicyTemplateReference.php
[edit]
[-] DeviceManagementConfigurationRedirectSettingDefinition.php
[edit]
[-] DeviceManagementConfigurationReferenceSettingValue.php
[edit]
[-] DeviceManagementConfigurationReferredSettingInformation.php
[edit]
[-] DeviceManagementConfigurationSecretSettingValue.php
[edit]
[-] DeviceManagementConfigurationSecretSettingValueState.php
[edit]
[-] DeviceManagementConfigurationSetting.php
[edit]
[-] DeviceManagementConfigurationSettingAccessTypes.php
[edit]
[-] DeviceManagementConfigurationSettingApplicability.php
[edit]
[-] DeviceManagementConfigurationSettingDefinition.php
[edit]
[-] DeviceManagementConfigurationSettingDependedOnBy.php
[edit]
[-] DeviceManagementConfigurationSettingGroupCollectionDefinition.php
[edit]
[-] DeviceManagementConfigurationSettingGroupCollectionInstance.php
[edit]
[-] DeviceManagementConfigurationSettingGroupDefinition.php
[edit]
[-] DeviceManagementConfigurationSettingGroupInstance.php
[edit]
[-] DeviceManagementConfigurationSettingInstance.php
[edit]
[-] DeviceManagementConfigurationSettingInstanceTemplate.php
[edit]
[-] DeviceManagementConfigurationSettingInstanceTemplateReference.php
[edit]
[-] DeviceManagementConfigurationSettingOccurrence.php
[edit]
[-] DeviceManagementConfigurationSettingTemplate.php
[edit]
[-] DeviceManagementConfigurationSettingUsage.php
[edit]
[-] DeviceManagementConfigurationSettingValue.php
[edit]
[-] DeviceManagementConfigurationSettingValueDefinition.php
[edit]
[-] DeviceManagementConfigurationSettingValueTemplateReference.php
[edit]
[-] DeviceManagementConfigurationSettingVisibility.php
[edit]
[-] DeviceManagementConfigurationSimpleSettingCollectionDefinition.php
[edit]
[-] DeviceManagementConfigurationSimpleSettingCollectionInstance.php
[edit]
[-] DeviceManagementConfigurationSimpleSettingCollectionInstanceTemplate.php
[edit]
[-] DeviceManagementConfigurationSimpleSettingDefinition.php
[edit]
[-] DeviceManagementConfigurationSimpleSettingInstance.php
[edit]
[-] DeviceManagementConfigurationSimpleSettingInstanceTemplate.php
[edit]
[-] DeviceManagementConfigurationSimpleSettingValue.php
[edit]
[-] DeviceManagementConfigurationSimpleSettingValueTemplate.php
[edit]
[-] DeviceManagementConfigurationStringFormat.php
[edit]
[-] DeviceManagementConfigurationStringSettingValue.php
[edit]
[-] DeviceManagementConfigurationStringSettingValueConstantDefaultTemplate.php
[edit]
[-] DeviceManagementConfigurationStringSettingValueDefaultTemplate.php
[edit]
[-] DeviceManagementConfigurationStringSettingValueDefinition.php
[edit]
[-] DeviceManagementConfigurationStringSettingValueTemplate.php
[edit]
[-] DeviceManagementConfigurationTechnologies.php
[edit]
[-] DeviceManagementConfigurationTemplateFamily.php
[edit]
[-] DeviceManagementConfigurationWindowsSettingApplicability.php
[edit]
[-] DeviceManagementConfigurationWindowsSkus.php
[edit]
[-] DeviceManagementConstraint.php
[edit]
[-] DeviceManagementDerivedCredentialIssuer.php
[edit]
[-] DeviceManagementDerivedCredentialNotificationType.php
[edit]
[-] DeviceManagementDerivedCredentialSettings.php
[edit]
[-] DeviceManagementDomainJoinConnector.php
[edit]
[-] DeviceManagementDomainJoinConnectorState.php
[edit]
[-] DeviceManagementEnumConstraint.php
[edit]
[-] DeviceManagementEnumValue.php
[edit]
[-] DeviceManagementExchangeAccessLevel.php
[edit]
[-] DeviceManagementExchangeAccessRule.php
[edit]
[-] DeviceManagementExchangeAccessRuleType.php
[edit]
[-] DeviceManagementExchangeAccessState.php
[edit]
[-] DeviceManagementExchangeAccessStateReason.php
[edit]
[-] DeviceManagementExchangeConnector.php
[edit]
[-] DeviceManagementExchangeConnectorStatus.php
[edit]
[-] DeviceManagementExchangeConnectorSyncType.php
[edit]
[-] DeviceManagementExchangeConnectorType.php
[edit]
[-] DeviceManagementExchangeDeviceClass.php
[edit]
[-] DeviceManagementExchangeOnPremisesPolicy.php
[edit]
[-] DeviceManagementExportJob.php
[edit]
[-] DeviceManagementExportJobLocalizationType.php
[edit]
[-] DeviceManagementIntegerSettingInstance.php
[edit]
[-] DeviceManagementIntentAssignment.php
[edit]
[-] DeviceManagementIntentDeviceSettingStateSummary.php
[edit]
[-] DeviceManagementIntentDeviceState.php
[edit]
[-] DeviceManagementIntentDeviceStateSummary.php
[edit]
[-] DeviceManagementIntentSettingCategory.php
[edit]
[-] DeviceManagementIntentSettingSecretConstraint.php
[edit]
[-] DeviceManagementIntentUserState.php
[edit]
[-] DiskType.php
[edit]
[-] DeviceManagementIntentUserStateSummary.php
[edit]
[-] DeviceManagementPartner.php
[edit]
[-] DeviceManagementPartnerAppType.php
[edit]
[-] DeviceManagementPartnerAssignment.php
[edit]
[-] DeviceManagementPartnerTenantState.php
[edit]
[-] DeviceManagementReportFileFormat.php
[edit]
[-] DeviceManagementReportStatus.php
[edit]
[-] DeviceManagementReports.php
[edit]
[-] DeviceManagementResourceAccessProfileAssignment.php
[edit]
[-] DeviceManagementResourceAccessProfileBase.php
[edit]
[-] DeviceManagementResourceAccessProfileIntent.php
[edit]
[-] DeviceManagementReusablePolicySetting.php
[edit]
[-] DeviceManagementScript.php
[edit]
[-] DeviceManagementScriptAssignment.php
[edit]
[-] DeviceManagementScriptDeviceState.php
[edit]
[-] DeviceManagementScriptGroupAssignment.php
[edit]
[-] DeviceManagementScriptPolicySetItem.php
[edit]
[-] DeviceManagementScriptRunSummary.php
[edit]
[-] DeviceManagementScriptUserState.php
[edit]
[-] DeviceManagementSettingAbstractImplementationConstraint.php
[edit]
[-] DeviceManagementSettingAppConstraint.php
[edit]
[-] DeviceManagementSettingBooleanConstraint.php
[edit]
[-] DeviceManagementSettingCategory.php
[edit]
[-] DeviceManagementSettingCollectionConstraint.php
[edit]
[-] DeviceManagementSettingComparison.php
[edit]
[-] DeviceManagementSettingDefinition.php
[edit]
[-] DeviceManagementSettingDependency.php
[edit]
[-] DeviceManagementSettingEnrollmentTypeConstraint.php
[edit]
[-] DeviceManagementSettingFileConstraint.php
[edit]
[-] DeviceManagementSettingInstance.php
[edit]
[-] DeviceManagementSettingIntegerConstraint.php
[edit]
[-] DeviceManagementSettingProfileConstraint.php
[edit]
[-] DeviceManagementSettingRegexConstraint.php
[edit]
[-] DeviceManagementSettingRequiredConstraint.php
[edit]
[-] DeviceManagementSettingSddlConstraint.php
[edit]
[-] DeviceManagementSettingStringLengthConstraint.php
[edit]
[-] DeviceManagementSettingXmlConstraint.php
[edit]
[-] DeviceManagementSettings.php
[edit]
[-] DeviceManagementStringSettingInstance.php
[edit]
[-] DeviceManagementSubscriptionState.php
[edit]
[-] DeviceManagementSubscriptions.php
[edit]
[-] DeviceManagementTemplate.php
[edit]
[-] DeviceManagementTemplateLifecycleState.php
[edit]
[-] DeviceManagementTemplateSettingCategory.php
[edit]
[-] DeviceManagementTemplateSubtype.php
[edit]
[-] DeviceManagementTemplateType.php
[edit]
[-] DeviceManagementTroubleshootingErrorDetails.php
[edit]
[-] DeviceManagementTroubleshootingErrorResource.php
[edit]
[-] DeviceManagementTroubleshootingEvent.php
[edit]
[-] DeviceManagementUserRightsLocalUserOrGroup.php
[edit]
[-] DeviceManagementUserRightsSetting.php
[edit]
[-] DeviceManangementIntentValueType.php
[edit]
[-] DeviceOperatingSystemSummary.php
[edit]
[-] DevicePlatformType.php
[edit]
[-] DeviceProtectionOverview.php
[edit]
[-] DeviceRegistrationPolicy.php
[edit]
[-] DeviceRegistrationState.php
[edit]
[-] DeviceRestrictionAction.php
[edit]
[-] DeviceScopeAction.php
[edit]
[-] DeviceScopeActionResult.php
[edit]
[-] DeviceScopeActionStatus.php
[edit]
[-] DeviceScopeOperator.php
[edit]
[-] DeviceScopeParameter.php
[edit]
[-] DeviceScopeStatus.php
[edit]
[-] DeviceSetupConfiguration.php
[edit]
[-] DeviceShellScript.php
[edit]
[-] DeviceThreatProtectionLevel.php
[edit]
[-] DeviceType.php
[edit]
[-] DeviceTypes.php
[edit]
[-] Diagnostic.php
[edit]
[-] DiagnosticDataSubmissionMode.php
[edit]
[-] DiamondModel.php
[edit]
[-] Dictionary.php
[edit]
[-] DiffieHellmanGroup.php
[edit]
[-] Dimension.php
[edit]
[-] DimensionValue.php
[edit]
[-] Directory.php
[edit]
[-] DirectoryAudit.php
[edit]
[-] DirectoryDefinition.php
[edit]
[-] DirectoryDefinitionDiscoverabilities.php
[edit]
[-] DirectoryObject.php
[edit]
[-] DirectoryObjectPartnerReference.php
[edit]
[-] DirectoryRole.php
[edit]
[-] DirectoryRoleAccessReviewPolicy.php
[edit]
[-] DirectoryRoleTemplate.php
[edit]
[-] DirectorySetting.php
[edit]
[-] DirectorySettingTemplate.php
[edit]
[-] DirectorySizeQuota.php
[edit]
[-] DisableAndDeleteUserApplyAction.php
[edit]
[-] DiscoveredSensitiveType.php
[edit]
[-] DiscoverySource.php
[edit]
[-] DisplayNameLocalization.php
[edit]
[-] DlpAction.php
[edit]
[-] DlpActionInfo.php
[edit]
[-] DlpEvaluatePoliciesJobResponse.php
[edit]
[-] DlpEvaluatePoliciesRequest.php
[edit]
[-] DlpEvaluationInput.php
[edit]
[-] DlpEvaluationWindowsDevicesInput.php
[edit]
[-] DlpNotification.php
[edit]
[-] DlpPoliciesJobResult.php
[edit]
[-] DlpWindowsDevicesNotification.php
[edit]
[-] DmaGuardDeviceEnumerationPolicyType.php
[edit]
[-] Document.php
[edit]
[-] DocumentComment.php
[edit]
[-] DocumentCommentReply.php
[edit]
[-] DocumentSet.php
[edit]
[-] DocumentSetContent.php
[edit]
[-] DocumentSetVersion.php
[edit]
[-] DocumentSetVersionItem.php
[edit]
[-] Domain.php
[edit]
[-] DomainDnsCnameRecord.php
[edit]
[-] DomainDnsMxRecord.php
[edit]
[-] DomainDnsRecord.php
[edit]
[-] DomainDnsSrvRecord.php
[edit]
[-] DomainDnsTxtRecord.php
[edit]
[-] DomainDnsUnavailableRecord.php
[edit]
[-] DomainIdentitySource.php
[edit]
[-] DomainNameSource.php
[edit]
[-] DomainRegistrant.php
[edit]
[-] DomainSecurityProfile.php
[edit]
[-] DomainState.php
[edit]
[-] DowngradeJustification.php
[edit]
[-] Drive.php
[edit]
[-] DriveItem.php
[edit]
[-] DriveItemSource.php
[edit]
[-] DriveItemSourceApplication.php
[edit]
[-] DriveItemUploadableProperties.php
[edit]
[-] DriveItemVersion.php
[edit]
[-] DriveRecipient.php
[edit]
[-] DriverApprovalAction.php
[edit]
[-] DriverApprovalStatus.php
[edit]
[-] DriverCategory.php
[edit]
[-] DriverUpdateProfileApprovalType.php
[edit]
[-] EBookInstallSummary.php
[edit]
[-] EapFastConfiguration.php
[edit]
[-] EapType.php
[edit]
[-] EasAuthenticationMethod.php
[edit]
[-] EasEmailProfileConfigurationBase.php
[edit]
[-] EasServices.php
[edit]
[-] EdgeCookiePolicy.php
[edit]
[-] EdgeHomeButtonConfiguration.php
[edit]
[-] EdgeHomeButtonHidden.php
[edit]
[-] EdgeHomeButtonLoadsStartPage.php
[edit]
[-] EdgeHomeButtonOpensCustomURL.php
[edit]
[-] EdgeHomeButtonOpensNewTab.php
[edit]
[-] EdgeKioskModeRestrictionType.php
[edit]
[-] EdgeOpenOptions.php
[edit]
[-] EdgeSearchEngine.php
[edit]
[-] EdgeSearchEngineBase.php
[edit]
[-] EdgeSearchEngineCustom.php
[edit]
[-] EdgeSearchEngineType.php
[edit]
[-] EdgeTelemetryMode.php
[edit]
[-] EditAction.php
[edit]
[-] EditionUpgradeConfiguration.php
[edit]
[-] EditionUpgradeLicenseType.php
[edit]
[-] EducationAddToCalendarOptions.php
[edit]
[-] EducationAddedStudentAction.php
[edit]
[-] EducationAssignment.php
[edit]
[-] EducationAssignmentClassRecipient.php
[edit]
[-] EducationAssignmentDefaults.php
[edit]
[-] EducationAssignmentGrade.php
[edit]
[-] EducationAssignmentGradeType.php
[edit]
[-] EducationAssignmentGroupRecipient.php
[edit]
[-] EducationAssignmentIndividualRecipient.php
[edit]
[-] EducationAssignmentPointsGrade.php
[edit]
[-] EducationAssignmentPointsGradeType.php
[edit]
[-] EducationAssignmentRecipient.php
[edit]
[-] EducationAssignmentResource.php
[edit]
[-] EducationAssignmentSettings.php
[edit]
[-] EducationAssignmentStatus.php
[edit]
[-] EducationCategory.php
[edit]
[-] EducationClass.php
[edit]
[-] EducationCourse.php
[edit]
[-] EducationCsvDataProvider.php
[edit]
[-] EducationExcelResource.php
[edit]
[-] EducationExternalResource.php
[edit]
[-] EducationExternalSource.php
[edit]
[-] EducationFeedback.php
[edit]
[-] EducationFeedbackOutcome.php
[edit]
[-] EducationFeedbackResourceOutcome.php
[edit]
[-] EducationFeedbackResourceOutcomeStatus.php
[edit]
[-] EducationGender.php
[edit]
[-] EducationFileResource.php
[edit]
[-] EducationFileSynchronizationVerificationMessage.php
[edit]
[-] EducationIdentityCreationConfiguration.php
[edit]
[-] EducationIdentityDomain.php
[edit]
[-] EducationIdentityMatchingConfiguration.php
[edit]
[-] EducationIdentityMatchingOptions.php
[edit]
[-] EducationIdentitySynchronizationConfiguration.php
[edit]
[-] EducationItemBody.php
[edit]
[-] EducationLinkResource.php
[edit]
[-] EducationMediaResource.php
[edit]
[-] EducationOnPremisesInfo.php
[edit]
[-] EducationOneRosterApiDataProvider.php
[edit]
[-] EducationOrganization.php
[edit]
[-] EducationOutcome.php
[edit]
[-] EducationPointsOutcome.php
[edit]
[-] EducationPowerPointResource.php
[edit]
[-] EducationPowerSchoolDataProvider.php
[edit]
[-] EducationResource.php
[edit]
[-] EducationRoot.php
[edit]
[-] EducationRubric.php
[edit]
[-] EducationRubricOutcome.php
[edit]
[-] EducationSchool.php
[edit]
[-] EducationStudent.php
[edit]
[-] EducationSubmission.php
[edit]
[-] EducationSubmissionIndividualRecipient.php
[edit]
[-] EducationSubmissionRecipient.php
[edit]
[-] EducationSubmissionResource.php
[edit]
[-] EducationSubmissionStatus.php
[edit]
[-] EducationSynchronizationConnectionSettings.php
[edit]
[-] EducationSynchronizationCustomization.php
[edit]
[-] EducationSynchronizationCustomizations.php
[edit]
[-] EducationSynchronizationCustomizationsBase.php
[edit]
[-] EducationSynchronizationDataProvider.php
[edit]
[-] EducationSynchronizationError.php
[edit]
[-] EducationSynchronizationLicenseAssignment.php
[edit]
[-] EducationSynchronizationOAuth1ConnectionSettings.php
[edit]
[-] EducationSynchronizationOAuth2ClientCredentialsConnectionSettings.php
[edit]
[-] EducationSynchronizationProfile.php
[edit]
[-] EducationSynchronizationProfileState.php
[edit]
[-] EducationSynchronizationProfileStatus.php
[edit]
[-] EducationSynchronizationStatus.php
[edit]
[-] EducationTeacher.php
[edit]
[-] EducationTeamsAppResource.php
[edit]
[-] EducationTerm.php
[edit]
[-] EducationUser.php
[edit]
[-] EducationUserRole.php
[edit]
[-] EducationWordResource.php
[edit]
[-] EducationalActivity.php
[edit]
[-] EducationalActivityDetail.php
[edit]
[-] EligibilityFilteringEnabledEntities.php
[edit]
[-] EmailActivityStatistics.php
[edit]
[-] EmailAddress.php
[edit]
[-] EmailAuthenticationMethod.php
[edit]
[-] EmailAuthenticationMethodConfiguration.php
[edit]
[-] EmailCertificateType.php
[edit]
[-] EmailFileAssessmentRequest.php
[edit]
[-] EmailIdentity.php
[edit]
[-] EmailRole.php
[edit]
[-] EmailSyncDuration.php
[edit]
[-] EmailSyncSchedule.php
[edit]
[-] EmailType.php
[edit]
[-] EmbeddedSIMActivationCode.php
[edit]
[-] EmbeddedSIMActivationCodePool.php
[edit]
[-] EmbeddedSIMActivationCodePoolAssignment.php
[edit]
[-] EmbeddedSIMDeviceState.php
[edit]
[-] EmbeddedSIMDeviceStateValue.php
[edit]
[-] Employee.php
[edit]
[-] EmployeeExperience.php
[edit]
[-] EmployeeOrgData.php
[edit]
[-] Enablement.php
[edit]
[-] EncryptContent.php
[edit]
[-] EncryptWith.php
[edit]
[-] EncryptWithTemplate.php
[edit]
[-] EncryptWithUserDefinedRights.php
[edit]
[-] EncryptionReadinessState.php
[edit]
[-] EncryptionReportPolicyDetails.php
[edit]
[-] EncryptionState.php
[edit]
[-] Endpoint.php
[edit]
[-] EndpointSecurityConfigurationApplicablePlatform.php
[edit]
[-] EndpointSecurityConfigurationProfileType.php
[edit]
[-] EndpointSecurityConfigurationType.php
[edit]
[-] EndpointType.php
[edit]
[-] EnrollmentAvailabilityOptions.php
[edit]
[-] EnrollmentConfigurationAssignment.php
[edit]
[-] EnrollmentNotificationBrandingOptions.php
[edit]
[-] EnrollmentNotificationTemplateType.php
[edit]
[-] EnrollmentProfile.php
[edit]
[-] EnrollmentRestrictionPlatformType.php
[edit]
[-] EnrollmentState.php
[edit]
[-] EnrollmentRestrictionsConfigurationPolicySetItem.php
[edit]
[-] EnrollmentTroubleshootingEvent.php
[edit]
[-] EnterpriseCodeSigningCertificate.php
[edit]
[-] EntitlementManagement.php
[edit]
[-] EntitlementManagementSettings.php
[edit]
[-] Entity.php
[edit]
[-] EntitySetNames.php
[edit]
[-] EntityType.php
[edit]
[-] EntryExportStatus.php
[edit]
[-] EntrySyncOperation.php
[edit]
[-] ErrorCode.php
[edit]
[-] EvaluateDynamicMembershipResult.php
[edit]
[-] EvaluateLabelJobResponse.php
[edit]
[-] EvaluateLabelJobResult.php
[edit]
[-] EvaluateLabelJobResultGroup.php
[edit]
[-] EvaluateSensitivityLabelsRequest.php
[edit]
[-] Event.php
[edit]
[-] EventMessage.php
[edit]
[-] EventMessageDetail.php
[edit]
[-] EventMessageRequest.php
[edit]
[-] EventMessageResponse.php
[edit]
[-] EventType.php
[edit]
[-] ExactDataMatchStoreColumn.php
[edit]
[-] ExactMatchClassificationRequest.php
[edit]
[-] ExactMatchClassificationResult.php
[edit]
[-] ExactMatchDataStore.php
[edit]
[-] ExactMatchDataStoreBase.php
[edit]
[-] ExactMatchDetectedSensitiveContent.php
[edit]
[-] ExactMatchJobBase.php
[edit]
[-] ExactMatchLookupJob.php
[edit]
[-] ExactMatchSession.php
[edit]
[-] ExactMatchSessionBase.php
[edit]
[-] ExactMatchUploadAgent.php
[edit]
[-] ExchangeIdFormat.php
[edit]
[-] ExcludeTarget.php
[edit]
[-] ExcludedApps.php
[edit]
[-] ExclusionGroupAssignmentTarget.php
[edit]
[-] ExpeditedWindowsQualityUpdateSettings.php
[edit]
[-] ExpirationPattern.php
[edit]
[-] ExpirationPatternType.php
[edit]
[-] ExpirationRequirement.php
[edit]
[-] ExpressionEvaluationDetails.php
[edit]
[-] ExpressionInputObject.php
[edit]
[-] ExtendedKeyUsage.php
[edit]
[-] Extension.php
[edit]
[-] ExtensionProperty.php
[edit]
[-] ExtensionSchemaProperty.php
[edit]
[-] External.php
[edit]
[-] ExternalAudienceScope.php
[edit]
[-] ExternalAuthenticationType.php
[edit]
[-] ExternalConnection.php
[edit]
[-] ExternalDomainFederation.php
[edit]
[-] ExternalDomainName.php
[edit]
[-] ExternalEmailOtpState.php
[edit]
[-] ExternalGroup.php
[edit]
[-] ExternalIdentitiesPolicy.php
[edit]
[-] ExternalItem.php
[edit]
[-] ExternalItemContent.php
[edit]
[-] ExternalItemContentType.php
[edit]
[-] ExternalLink.php
[edit]
[-] ExternalMeetingRegistrant.php
[edit]
[-] ExternalMeetingRegistration.php
[edit]
[-] ExternalSponsors.php
[edit]
[-] ExtractSensitivityLabelsResult.php
[edit]
[-] FeatureRolloutPolicy.php
[edit]
[-] FeatureType.php
[edit]
[-] FeatureUsageDetail.php
[edit]
[-] FederatedIdentityCredential.php
[edit]
[-] FederatedIdpMfaBehavior.php
[edit]
[-] Fido2AuthenticationMethod.php
[edit]
[-] Fido2AuthenticationMethodConfiguration.php
[edit]
[-] Fido2KeyRestrictions.php
[edit]
[-] Fido2RestrictionEnforcementType.php
[edit]
[-] FieldValueSet.php
[edit]
[-] File.php
[edit]
[-] FileAssessmentRequest.php
[edit]
[-] FileAttachment.php
[edit]
[-] FileClassificationRequest.php
[edit]
[-] FileEncryptionInfo.php
[edit]
[-] FileHash.php
[edit]
[-] FileHashType.php
[edit]
[-] FileSecurityProfile.php
[edit]
[-] FileSecurityState.php
[edit]
[-] FileSystemInfo.php
[edit]
[-] FileVaultState.php
[edit]
[-] Filter.php
[edit]
[-] FilterClause.php
[edit]
[-] FilterGroup.php
[edit]
[-] FilterMode.php
[edit]
[-] FilterOperand.php
[edit]
[-] FilterOperatorSchema.php
[edit]
[-] Financials.php
[edit]
[-] FirewallCertificateRevocationListCheckMethodType.php
[edit]
[-] FirewallPacketQueueingMethodType.php
[edit]
[-] FirewallPreSharedKeyEncodingMethodType.php
[edit]
[-] FlexSchemaContainer.php
[edit]
[-] FocusActivityStatistics.php
[edit]
[-] Folder.php
[edit]
[-] FolderProtectionType.php
[edit]
[-] FolderView.php
[edit]
[-] FollowupFlag.php
[edit]
[-] FollowupFlagStatus.php
[edit]
[-] FreeBusyError.php
[edit]
[-] FreeBusyStatus.php
[edit]
[-] GeneralLedgerEntry.php
[edit]
[-] GenericError.php
[edit]
[-] GeoCoordinates.php
[edit]
[-] GeolocationColumn.php
[edit]
[-] GiphyRatingType.php
[edit]
[-] GlobalDeviceHealthScriptState.php
[edit]
[-] GovernanceCriteria.php
[edit]
[-] GovernanceInsight.php
[edit]
[-] GovernanceNotificationPolicy.php
[edit]
[-] GovernanceNotificationTemplate.php
[edit]
[-] GovernancePermission.php
[edit]
[-] GovernancePolicy.php
[edit]
[-] GovernancePolicyTemplate.php
[edit]
[-] GovernanceResource.php
[edit]
[-] GovernanceRoleAssignment.php
[edit]
[-] GovernanceRoleAssignmentRequest.php
[edit]
[-] GovernanceRoleAssignmentRequestStatus.php
[edit]
[-] GovernanceRoleDefinition.php
[edit]
[-] GovernanceRoleSetting.php
[edit]
[-] GovernanceRuleSetting.php
[edit]
[-] GovernanceSchedule.php
[edit]
[-] GovernanceSubject.php
[edit]
[-] GraphList.php
[edit]
[-] GraphPrint.php
[edit]
[-] Group.php
[edit]
[-] GroupAccessType.php
[edit]
[-] GroupAssignmentTarget.php
[edit]
[-] GroupLifecyclePolicy.php
[edit]
[-] GroupMembers.php
[edit]
[-] GroupMembershipGovernanceCriteria.php
[edit]
[-] GroupPeerOutlierRecommendationInsightSettings.php
[edit]
[-] GroupPolicyCategory.php
[edit]
[-] GroupPolicyConfiguration.php
[edit]
[-] GroupPolicyConfigurationAssignment.php
[edit]
[-] GroupPolicyConfigurationType.php
[edit]
[-] GroupPolicyDefinition.php
[edit]
[-] GroupPolicyDefinitionClassType.php
[edit]
[-] GroupPolicyDefinitionFile.php
[edit]
[-] GroupPolicyDefinitionValue.php
[edit]
[-] GroupPolicyMigrationReadiness.php
[edit]
[-] GroupPolicyMigrationReport.php
[edit]
[-] GroupPolicyObjectFile.php
[edit]
[-] GroupPolicyOperation.php
[edit]
[-] GroupPolicyOperationStatus.php
[edit]
[-] GroupPolicyOperationType.php
[edit]
[-] GroupPolicyPresentation.php
[edit]
[-] GroupPolicyPresentationCheckBox.php
[edit]
[-] GroupPolicyPresentationComboBox.php
[edit]
[-] GroupPolicyPresentationDecimalTextBox.php
[edit]
[-] GroupPolicyPresentationDropdownList.php
[edit]
[-] GroupPolicyPresentationDropdownListItem.php
[edit]
[-] GroupPolicyPresentationListBox.php
[edit]
[-] GroupPolicyPresentationLongDecimalTextBox.php
[edit]
[-] GroupPolicyPresentationMultiTextBox.php
[edit]
[-] GroupPolicyPresentationText.php
[edit]
[-] GroupPolicyPresentationTextBox.php
[edit]
[-] GroupPolicyPresentationValue.php
[edit]
[-] GroupPolicyPresentationValueBoolean.php
[edit]
[-] GroupPolicyPresentationValueDecimal.php
[edit]
[-] GroupPolicyPresentationValueList.php
[edit]
[-] GroupPolicyPresentationValueLongDecimal.php
[edit]
[-] GroupPolicyPresentationValueMultiText.php
[edit]
[-] GroupPolicyPresentationValueText.php
[edit]
[-] GroupPolicySettingMapping.php
[edit]
[-] GroupPolicySettingScope.php
[edit]
[-] GroupPolicySettingType.php
[edit]
[-] GroupPolicyType.php
[edit]
[-] GroupPolicyUploadedDefinitionFile.php
[edit]
[-] GroupPolicyUploadedDefinitionFileStatus.php
[edit]
[-] GroupPolicyUploadedLanguageFile.php
[edit]
[-] GroupPrintUsageSummary.php
[edit]
[-] GroupPrivacy.php
[edit]
[-] GroupType.php
[edit]
[-] GroupWritebackConfiguration.php
[edit]
[-] HardwareInformation.php
[edit]
[-] HasPayloadLinkResultItem.php
[edit]
[-] HashAlgorithms.php
[edit]
[-] Hashes.php
[edit]
[-] HealthState.php
[edit]
[-] HomeRealmDiscoveryPolicy.php
[edit]
[-] HostSecurityProfile.php
[edit]
[-] HostSecurityState.php
[edit]
[-] HybridAgentUpdaterConfiguration.php
[edit]
[-] HyperlinkOrPictureColumn.php
[edit]
[-] IPv4CidrRange.php
[edit]
[-] IPv4Range.php
[edit]
[-] IPv6CidrRange.php
[edit]
[-] IPv6Range.php
[edit]
[-] ITunesPairingMode.php
[edit]
[-] Identity.php
[edit]
[-] IdentityApiConnector.php
[edit]
[-] IdentityBuiltInUserFlowAttribute.php
[edit]
[-] Image.php
[edit]
[-] IdentityContainer.php
[edit]
[-] IdentityCustomUserFlowAttribute.php
[edit]
[-] IdentityGovernance.php
[edit]
[-] IdentityProtectionRoot.php
[edit]
[-] IdentityProvider.php
[edit]
[-] IdentityProviderBase.php
[edit]
[-] IdentitySecurityDefaultsEnforcementPolicy.php
[edit]
[-] IdentitySet.php
[edit]
[-] IdentitySource.php
[edit]
[-] IdentitySourceType.php
[edit]
[-] IdentityUserFlow.php
[edit]
[-] IdentityUserFlowAttribute.php
[edit]
[-] IdentityUserFlowAttributeAssignment.php
[edit]
[-] IdentityUserFlowAttributeDataType.php
[edit]
[-] IdentityUserFlowAttributeInputType.php
[edit]
[-] IdentityUserFlowAttributeType.php
[edit]
[-] ImageInfo.php
[edit]
[-] ImplicitGrantSettings.php
[edit]
[-] Importance.php
[edit]
[-] ImportedAppleDeviceIdentity.php
[edit]
[-] ImportedAppleDeviceIdentityResult.php
[edit]
[-] ImportedDeviceIdentity.php
[edit]
[-] ImportedDeviceIdentityResult.php
[edit]
[-] ImportedDeviceIdentityType.php
[edit]
[-] ImportedWindowsAutopilotDeviceIdentity.php
[edit]
[-] ImportedWindowsAutopilotDeviceIdentityImportStatus.php
[edit]
[-] ImportedWindowsAutopilotDeviceIdentityState.php
[edit]
[-] ImportedWindowsAutopilotDeviceIdentityUpload.php
[edit]
[-] ImportedWindowsAutopilotDeviceIdentityUploadStatus.php
[edit]
[-] InboundSharedUserProfile.php
[edit]
[-] IncludedUserRoles.php
[edit]
[-] IncludedUserTypes.php
[edit]
[-] IncomingCallOptions.php
[edit]
[-] IncomingContext.php
[edit]
[-] IncomingTokenType.php
[edit]
[-] IncompleteData.php
[edit]
[-] InferenceClassification.php
[edit]
[-] InferenceClassificationOverride.php
[edit]
[-] InferenceClassificationType.php
[edit]
[-] InferenceData.php
[edit]
[-] InformationProtection.php
[edit]
[-] InformationProtectionAction.php
[edit]
[-] InformationProtectionContentLabel.php
[edit]
[-] InformationProtectionLabel.php
[edit]
[-] InformationProtectionPolicy.php
[edit]
[-] InformationalUrl.php
[edit]
[-] InformationalUrls.php
[edit]
[-] Initiator.php
[edit]
[-] InitiatorType.php
[edit]
[-] InkAccessSetting.php
[edit]
[-] InsightIdentity.php
[edit]
[-] InsightValueDouble.php
[edit]
[-] InsightValueInt.php
[edit]
[-] InsightsSettings.php
[edit]
[-] InstallIntent.php
[edit]
[-] InstallState.php
[edit]
[-] InstanceResourceAccess.php
[edit]
[-] InstitutionData.php
[edit]
[-] IntegerRange.php
[edit]
[-] IntendedPurpose.php
[edit]
[-] InternalDomainFederation.php
[edit]
[-] InternalSponsors.php
[edit]
[-] InternetExplorerMessageSetting.php
[edit]
[-] InternetMessageHeader.php
[edit]
[-] InternetSiteSecurityLevel.php
[edit]
[-] IntuneBrand.php
[edit]
[-] IntuneBrandingProfile.php
[edit]
[-] IntuneBrandingProfileAssignment.php
[edit]
[-] InvestigationSecurityState.php
[edit]
[-] Invitation.php
[edit]
[-] InvitationParticipantInfo.php
[edit]
[-] InviteNewBotResponse.php
[edit]
[-] InviteParticipantsOperation.php
[edit]
[-] InvitedUserMessageInfo.php
[edit]
[-] InvokeUserFlowListener.php
[edit]
[-] IosAvailableUpdateVersion.php
[edit]
[-] IosAzureAdSingleSignOnExtension.php
[edit]
[-] IosBookmark.php
[edit]
[-] IosCertificateProfile.php
[edit]
[-] IosCertificateProfileBase.php
[edit]
[-] IosCompliancePolicy.php
[edit]
[-] IosCredentialSingleSignOnExtension.php
[edit]
[-] IosCustomConfiguration.php
[edit]
[-] IosDerivedCredentialAuthenticationConfiguration.php
[edit]
[-] IosDeviceFeaturesConfiguration.php
[edit]
[-] IosDeviceType.php
[edit]
[-] IosEasEmailProfileConfiguration.php
[edit]
[-] IosEduCertificateSettings.php
[edit]
[-] IosEduDeviceConfiguration.php
[edit]
[-] IosEducationDeviceConfiguration.php
[edit]
[-] IosEnterpriseWiFiConfiguration.php
[edit]
[-] IosExpeditedCheckinConfiguration.php
[edit]
[-] IosGeneralDeviceConfiguration.php
[edit]
[-] IpRange.php
[edit]
[-] IosHomeScreenApp.php
[edit]
[-] IosHomeScreenFolder.php
[edit]
[-] IosHomeScreenFolderPage.php
[edit]
[-] IosHomeScreenItem.php
[edit]
[-] IosHomeScreenPage.php
[edit]
[-] IosImportedPFXCertificateProfile.php
[edit]
[-] IosKerberosSingleSignOnExtension.php
[edit]
[-] IosKioskModeAppType.php
[edit]
[-] IosLobApp.php
[edit]
[-] IosLobAppAssignmentSettings.php
[edit]
[-] IosLobAppProvisioningConfiguration.php
[edit]
[-] IosLobAppProvisioningConfigurationAssignment.php
[edit]
[-] IosLobAppProvisioningConfigurationPolicySetItem.php
[edit]
[-] IosManagedAppProtection.php
[edit]
[-] IosManagedAppRegistration.php
[edit]
[-] IosMinimumOperatingSystem.php
[edit]
[-] IosMobileAppConfiguration.php
[edit]
[-] IosMobileAppIdentifier.php
[edit]
[-] IosNetworkUsageRule.php
[edit]
[-] IosNotificationAlertType.php
[edit]
[-] IosNotificationPreviewVisibility.php
[edit]
[-] IosNotificationSettings.php
[edit]
[-] IosPkcsCertificateProfile.php
[edit]
[-] IosRedirectSingleSignOnExtension.php
[edit]
[-] IosScepCertificateProfile.php
[edit]
[-] IosSingleSignOnExtension.php
[edit]
[-] IosSingleSignOnSettings.php
[edit]
[-] IosSoftwareUpdateScheduleType.php
[edit]
[-] IosStoreApp.php
[edit]
[-] IosStoreAppAssignmentSettings.php
[edit]
[-] IosTrustedRootCertificate.php
[edit]
[-] IosUpdateConfiguration.php
[edit]
[-] IosUpdateDeviceStatus.php
[edit]
[-] IosUpdatesInstallStatus.php
[edit]
[-] IosVpnConfiguration.php
[edit]
[-] IosVpnSecurityAssociationParameters.php
[edit]
[-] IosVppApp.php
[edit]
[-] IosVppAppAssignedDeviceLicense.php
[edit]
[-] IosVppAppAssignedLicense.php
[edit]
[-] IosVppAppAssignedUserLicense.php
[edit]
[-] IosVppAppAssignmentSettings.php
[edit]
[-] IosVppAppRevokeLicensesActionResult.php
[edit]
[-] IosVppEBook.php
[edit]
[-] IosVppEBookAssignment.php
[edit]
[-] IosWallpaperDisplayLocation.php
[edit]
[-] IosWebContentFilterAutoFilter.php
[edit]
[-] IosWebContentFilterBase.php
[edit]
[-] IosWebContentFilterSpecificWebsitesAccess.php
[edit]
[-] IosWiFiConfiguration.php
[edit]
[-] IosiPadOSWebClip.php
[edit]
[-] IosikEv2VpnConfiguration.php
[edit]
[-] IpCategory.php
[edit]
[-] IpNamedLocation.php
[edit]
[-] IpReferenceData.php
[edit]
[-] IpSecurityProfile.php
[edit]
[-] Item.php
[edit]
[-] ItemActionSet.php
[edit]
[-] ItemActionStat.php
[edit]
[-] ItemActivity.php
[edit]
[-] ItemActivityOLD.php
[edit]
[-] ItemActivityStat.php
[edit]
[-] ItemActivityTimeSet.php
[edit]
[-] ItemAddress.php
[edit]
[-] ItemAnalytics.php
[edit]
[-] ItemAttachment.php
[edit]
[-] ItemBody.php
[edit]
[-] ItemCategory.php
[edit]
[-] ItemEmail.php
[edit]
[-] ItemFacet.php
[edit]
[-] ItemInsights.php
[edit]
[-] ItemPatent.php
[edit]
[-] ItemPhone.php
[edit]
[-] ItemPreviewInfo.php
[edit]
[-] ItemPublication.php
[edit]
[-] ItemReference.php
[edit]
[-] JobHistorySummaryType.php
[edit]
[-] JobResponseBase.php
[edit]
[-] JoinMeetingIdMeetingInfo.php
[edit]
[-] JoinMeetingIdSettings.php
[edit]
[-] JoinType.php
[edit]
[-] Journal.php
[edit]
[-] JournalLine.php
[edit]
[-] JustifyAction.php
[edit]
[-] KerberosSignOnMappingAttributeType.php
[edit]
[-] KerberosSignOnSettings.php
[edit]
[-] KerberosSingleSignOnExtension.php
[edit]
[-] KeyBooleanValuePair.php
[edit]
[-] KeyCredential.php
[edit]
[-] KeyCredentialConfiguration.php
[edit]
[-] KeyIntegerValuePair.php
[edit]
[-] KeyLongValuePair.php
[edit]
[-] KeyRealValuePair.php
[edit]
[-] KeySize.php
[edit]
[-] KeyStorageProviderOption.php
[edit]
[-] KeyStringValuePair.php
[edit]
[-] KeyTypedValuePair.php
[edit]
[-] KeyUsages.php
[edit]
[-] KeyValue.php
[edit]
[-] KeyValuePair.php
[edit]
[-] KioskModeManagedHomeScreenPinComplexity.php
[edit]
[-] KioskModeType.php
[edit]
[-] Label.php
[edit]
[-] LabelActionBase.php
[edit]
[-] LabelDetails.php
[edit]
[-] LabelPolicy.php
[edit]
[-] LabelingOptions.php
[edit]
[-] LanManagerAuthenticationLevel.php
[edit]
[-] LanguageProficiency.php
[edit]
[-] LanguageProficiencyLevel.php
[edit]
[-] LearningContent.php
[edit]
[-] LearningProvider.php
[edit]
[-] LicenseAssignmentState.php
[edit]
[-] LicenseDetails.php
[edit]
[-] LicenseInfoDetail.php
[edit]
[-] LicenseProcessingState.php
[edit]
[-] LicenseUnitsDetail.php
[edit]
[-] LifecycleEventType.php
[edit]
[-] LinkedResource.php
[edit]
[-] LinkedResource_v2.php
[edit]
[-] ListInfo.php
[edit]
[-] ListItem.php
[edit]
[-] ListItemVersion.php
[edit]
[-] LobbyBypassScope.php
[edit]
[-] LobbyBypassSettings.php
[edit]
[-] LocalSecurityOptionsAdministratorElevationPromptBehaviorType.php
[edit]
[-] LocalSecurityOptionsFormatAndEjectOfRemovableMediaAllowedUserType.php
[edit]
[-] LocalSecurityOptionsInformationDisplayedOnLockScreenType.php
[edit]
[-] LocalSecurityOptionsInformationShownOnLockScreenType.php
[edit]
[-] LocalSecurityOptionsMinimumSessionSecurity.php
[edit]
[-] LocalSecurityOptionsSmartCardRemovalBehaviorType.php
[edit]
[-] LocalSecurityOptionsStandardUserElevationPromptBehaviorType.php
[edit]
[-] LocaleInfo.php
[edit]
[-] LocalizedNotificationMessage.php
[edit]
[-] LocateDeviceActionResult.php
[edit]
[-] Location.php
[edit]
[-] LocationConstraint.php
[edit]
[-] LocationConstraintItem.php
[edit]
[-] LocationType.php
[edit]
[-] LocationUniqueIdType.php
[edit]
[-] LoggedOnUser.php
[edit]
[-] LogicAppTriggerEndpointConfiguration.php
[edit]
[-] LoginPageTextVisibilitySettings.php
[edit]
[-] LogonType.php
[edit]
[-] LogonUser.php
[edit]
[-] LongRunningOperation.php
[edit]
[-] LongRunningOperationStatus.php
[edit]
[-] LookupColumn.php
[edit]
[-] LookupResultRow.php
[edit]
[-] LostModeState.php
[edit]
[-] MacAppIdentifier.php
[edit]
[-] MacOSAppleEventReceiver.php
[edit]
[-] MacOSAssociatedDomainsItem.php
[edit]
[-] MacOSAzureAdSingleSignOnExtension.php
[edit]
[-] MacOSCertificateProfileBase.php
[edit]
[-] MacOSCompliancePolicy.php
[edit]
[-] MacOSContentCachingClientPolicy.php
[edit]
[-] MacOSContentCachingParentSelectionPolicy.php
[edit]
[-] MacOSContentCachingPeerPolicy.php
[edit]
[-] MacOSContentCachingType.php
[edit]
[-] MacOSCredentialSingleSignOnExtension.php
[edit]
[-] MacOSCustomAppConfiguration.php
[edit]
[-] MacOSCustomConfiguration.php
[edit]
[-] MacOSDeviceFeaturesConfiguration.php
[edit]
[-] MacOSDmgApp.php
[edit]
[-] MacOSEndpointProtectionConfiguration.php
[edit]
[-] MacOSEnterpriseWiFiConfiguration.php
[edit]
[-] MacOSExtensionsConfiguration.php
[edit]
[-] MacOSFileVaultRecoveryKeyTypes.php
[edit]
[-] MacOSFirewallApplication.php
[edit]
[-] MacOSGatekeeperAppSources.php
[edit]
[-] MacOSGeneralDeviceConfiguration.php
[edit]
[-] MacOSImportedPFXCertificateProfile.php
[edit]
[-] MacOSIncludedApp.php
[edit]
[-] MacOSKerberosSingleSignOnExtension.php
[edit]
[-] MacOSKernelExtension.php
[edit]
[-] MacOSLaunchItem.php
[edit]
[-] MacOSLobApp.php
[edit]
[-] MacOSLobChildApp.php
[edit]
[-] MacOSMdatpApp.php
[edit]
[-] MacOSMicrosoftEdgeApp.php
[edit]
[-] MacOSMinimumOperatingSystem.php
[edit]
[-] MacOSOfficeSuiteApp.php
[edit]
[-] MacOSPkcsCertificateProfile.php
[edit]
[-] MacOSPrivacyAccessControlItem.php
[edit]
[-] MacOSProcessIdentifierType.php
[edit]
[-] MacOSRedirectSingleSignOnExtension.php
[edit]
[-] MacOSScepCertificateProfile.php
[edit]
[-] MacOSSingleSignOnExtension.php
[edit]
[-] MacOSSoftwareUpdateAccountSummary.php
[edit]
[-] MacOSSoftwareUpdateBehavior.php
[edit]
[-] MacOSSoftwareUpdateCategory.php
[edit]
[-] MacOSSoftwareUpdateCategorySummary.php
[edit]
[-] MacOSSoftwareUpdateConfiguration.php
[edit]
[-] MacOSSoftwareUpdateDelayPolicy.php
[edit]
[-] MacOsVppApp.php
[edit]
[-] MacOSSoftwareUpdateScheduleType.php
[edit]
[-] MacOSSoftwareUpdateState.php
[edit]
[-] MacOSSoftwareUpdateStateSummary.php
[edit]
[-] MacOSSystemExtension.php
[edit]
[-] MacOSSystemExtensionType.php
[edit]
[-] MacOSSystemExtensionTypeMapping.php
[edit]
[-] MacOSTrustedRootCertificate.php
[edit]
[-] MacOSVpnConfiguration.php
[edit]
[-] MacOSWiFiConfiguration.php
[edit]
[-] MacOSWiredNetworkConfiguration.php
[edit]
[-] MacOsLobAppAssignmentSettings.php
[edit]
[-] MacOsVppAppAssignedLicense.php
[edit]
[-] MacOsVppAppAssignmentSettings.php
[edit]
[-] MacOsVppAppRevokeLicensesActionResult.php
[edit]
[-] MachineLearningDetectedSensitiveContent.php
[edit]
[-] MailAssessmentRequest.php
[edit]
[-] MailDestinationRoutingReason.php
[edit]
[-] MailFolder.php
[edit]
[-] MailSearchFolder.php
[edit]
[-] MailTips.php
[edit]
[-] MailTipsError.php
[edit]
[-] MailTipsType.php
[edit]
[-] MailboxRecipientType.php
[edit]
[-] MailboxSettings.php
[edit]
[-] Malware.php
[edit]
[-] MalwareState.php
[edit]
[-] MalwareStateForWindowsDevice.php
[edit]
[-] ManagedAllDeviceCertificateState.php
[edit]
[-] ManagedAndroidLobApp.php
[edit]
[-] ManagedAndroidStoreApp.php
[edit]
[-] ManagedApp.php
[edit]
[-] ManagedAppAvailability.php
[edit]
[-] ManagedAppClipboardSharingLevel.php
[edit]
[-] ManagedAppConfiguration.php
[edit]
[-] ManagedAppDataEncryptionType.php
[edit]
[-] ManagedAppDataIngestionLocation.php
[edit]
[-] ManagedAppDataStorageLocation.php
[edit]
[-] ManagedAppDataTransferLevel.php
[edit]
[-] ManagedAppDeviceThreatLevel.php
[edit]
[-] ManagedAppDiagnosticStatus.php
[edit]
[-] ManagedAppFlaggedReason.php
[edit]
[-] ManagedAppNotificationRestriction.php
[edit]
[-] ManagedAppOperation.php
[edit]
[-] ManagedAppPhoneNumberRedirectLevel.php
[edit]
[-] ManagedAppPinCharacterSet.php
[edit]
[-] ManagedAppPolicy.php
[edit]
[-] ManagedAppPolicyDeploymentSummary.php
[edit]
[-] ManagedAppPolicyDeploymentSummaryPerApp.php
[edit]
[-] ManagedAppProtection.php
[edit]
[-] ManagedAppProtectionPolicySetItem.php
[edit]
[-] ManagedAppRegistration.php
[edit]
[-] ManagedAppRemediationAction.php
[edit]
[-] ManagedAppStatus.php
[edit]
[-] ManagedAppStatusRaw.php
[edit]
[-] ManagedBrowserType.php
[edit]
[-] ManagedDevice.php
[edit]
[-] ManagedDeviceArchitecture.php
[edit]
[-] ManagedDeviceCertificateState.php
[edit]
[-] ManagedDeviceCleanupSettings.php
[edit]
[-] ManagedDeviceEncryptionState.php
[edit]
[-] ManagedDeviceManagementFeatures.php
[edit]
[-] ManagedDeviceMobileAppConfiguration.php
[edit]
[-] ManagedDeviceMobileAppConfigurationAssignment.php
[edit]
[-] ManagedDeviceMobileAppConfigurationDeviceStatus.php
[edit]
[-] ManagedDeviceMobileAppConfigurationDeviceSummary.php
[edit]
[-] ManagedDeviceMobileAppConfigurationPolicySetItem.php
[edit]
[-] ManagedDeviceMobileAppConfigurationSettingState.php
[edit]
[-] ManagedDeviceMobileAppConfigurationState.php
[edit]
[-] ManagedDeviceMobileAppConfigurationUserStatus.php
[edit]
[-] ManagedDeviceMobileAppConfigurationUserSummary.php
[edit]
[-] ManagedDeviceModelsAndManufacturers.php
[edit]
[-] ManagedDeviceOverview.php
[edit]
[-] ManagedDeviceOwnerType.php
[edit]
[-] ManagedDevicePartnerReportedHealthState.php
[edit]
[-] ManagedDeviceRemoteAction.php
[edit]
[-] ManagedDeviceReportedApp.php
[edit]
[-] ManagedDeviceSummarizedAppState.php
[edit]
[-] ManagedEBook.php
[edit]
[-] ManagedEBookAssignment.php
[edit]
[-] ManagedEBookCategory.php
[edit]
[-] ManagedIOSLobApp.php
[edit]
[-] ManagedIOSStoreApp.php
[edit]
[-] ManagedInstallerStatus.php
[edit]
[-] ManagedMobileApp.php
[edit]
[-] ManagedMobileLobApp.php
[edit]
[-] ManagementAgentType.php
[edit]
[-] ManagementCertificateWithThumbprint.php
[edit]
[-] ManagementState.php
[edit]
[-] MarkContent.php
[edit]
[-] MatchLocation.php
[edit]
[-] MatchingDlpRule.php
[edit]
[-] MatchingLabel.php
[edit]
[-] MdmAppConfigKeyType.php
[edit]
[-] MdmAuthority.php
[edit]
[-] MdmSupportedState.php
[edit]
[-] MdmWindowsInformationProtectionPolicy.php
[edit]
[-] MdmWindowsInformationProtectionPolicyPolicySetItem.php
[edit]
[-] Media.php
[edit]
[-] MediaConfig.php
[edit]
[-] MediaContentRatingAustralia.php
[edit]
[-] MediaContentRatingCanada.php
[edit]
[-] MediaContentRatingFrance.php
[edit]
[-] MediaContentRatingGermany.php
[edit]
[-] MediaContentRatingIreland.php
[edit]
[-] MediaContentRatingJapan.php
[edit]
[-] MediaContentRatingNewZealand.php
[edit]
[-] MediaContentRatingUnitedKingdom.php
[edit]
[-] MediaContentRatingUnitedStates.php
[edit]
[-] MediaDirection.php
[edit]
[-] MediaInfo.php
[edit]
[-] MediaPrompt.php
[edit]
[-] MediaSource.php
[edit]
[-] MediaSourceContentCategory.php
[edit]
[-] MediaState.php
[edit]
[-] MediaStream.php
[edit]
[-] MeetingActivityStatistics.php
[edit]
[-] MeetingAttendanceReport.php
[edit]
[-] MeetingAudience.php
[edit]
[-] MeetingCapabilities.php
[edit]
[-] MeetingCapability.php
[edit]
[-] MeetingChatMode.php
[edit]
[-] MeetingInfo.php
[edit]
[-] MeetingMessageType.php
[edit]
[-] MeetingParticipantInfo.php
[edit]
[-] MeetingParticipants.php
[edit]
[-] MeetingPolicyUpdatedEventMessageDetail.php
[edit]
[-] MeetingRegistrant.php
[edit]
[-] MeetingRegistrantBase.php
[edit]
[-] MeetingRegistrantStatus.php
[edit]
[-] MeetingRegistration.php
[edit]
[-] MeetingRegistrationBase.php
[edit]
[-] MeetingRegistrationQuestion.php
[edit]
[-] MeetingSpeaker.php
[edit]
[-] MeetingTimeSuggestion.php
[edit]
[-] MeetingTimeSuggestionsResult.php
[edit]
[-] MembersAddedEventMessageDetail.php
[edit]
[-] MembersDeletedEventMessageDetail.php
[edit]
[-] MembersJoinedEventMessageDetail.php
[edit]
[-] MembersLeftEventMessageDetail.php
[edit]
[-] MembershipOutlierInsight.php
[edit]
[-] MembershipRuleEvaluationDetails.php
[edit]
[-] MembershipRuleProcessingStatus.php
[edit]
[-] MembershipRuleProcessingStatusDetails.php
[edit]
[-] Mention.php
[edit]
[-] MentionAction.php
[edit]
[-] MentionsPreview.php
[edit]
[-] Message.php
[edit]
[-] MessageActionFlag.php
[edit]
[-] MessageEvent.php
[edit]
[-] MessageEventType.php
[edit]
[-] MessagePinnedEventMessageDetail.php
[edit]
[-] MessageRecipient.php
[edit]
[-] MessageRule.php
[edit]
[-] MessageRuleActions.php
[edit]
[-] MessageRulePredicates.php
[edit]
[-] MessageSecurityState.php
[edit]
[-] MessageStatus.php
[edit]
[-] MessageTrace.php
[edit]
[-] MessageUnpinnedEventMessageDetail.php
[edit]
[-] MetadataAction.php
[edit]
[-] MetadataEntry.php
[edit]
[-] MeteredConnectionLimitType.php
[edit]
[-] MetricTimeSeriesDataPoint.php
[edit]
[-] MfaDetail.php
[edit]
[-] MicrosoftAccountUserConversationMember.php
[edit]
[-] MicrosoftApplicationDataAccessSettings.php
[edit]
[-] MicrosoftAuthenticatorAuthenticationMethod.php
[edit]
[-] MicrosoftAuthenticatorAuthenticationMethodConfiguration.php
[edit]
[-] MicrosoftAuthenticatorAuthenticationMethodTarget.php
[edit]
[-] MicrosoftAuthenticatorAuthenticationMode.php
[edit]
[-] MicrosoftEdgeChannel.php
[edit]
[-] MicrosoftLauncherDockPresence.php
[edit]
[-] MicrosoftLauncherSearchBarPlacement.php
[edit]
[-] MicrosoftManagedDesktop.php
[edit]
[-] MicrosoftManagedDesktopType.php
[edit]
[-] MicrosoftStoreForBusinessApp.php
[edit]
[-] MicrosoftStoreForBusinessAppAssignmentSettings.php
[edit]
[-] MicrosoftStoreForBusinessContainedApp.php
[edit]
[-] MicrosoftStoreForBusinessLicenseType.php
[edit]
[-] MicrosoftStoreForBusinessPortalSelectionOptions.php
[edit]
[-] MicrosoftTunnelConfiguration.php
[edit]
[-] MicrosoftTunnelHealthThreshold.php
[edit]
[-] MicrosoftTunnelLogCollectionStatus.php
[edit]
[-] MigrationStatus.php
[edit]
[-] MicrosoftTunnelServer.php
[edit]
[-] MicrosoftTunnelServerHealthStatus.php
[edit]
[-] MicrosoftTunnelServerLogCollectionResponse.php
[edit]
[-] MicrosoftTunnelSite.php
[edit]
[-] MimeContent.php
[edit]
[-] MiracastChannel.php
[edit]
[-] MlClassificationMatchTolerance.php
[edit]
[-] MobileApp.php
[edit]
[-] MobileAppActionType.php
[edit]
[-] MobileAppAssignment.php
[edit]
[-] MobileAppAssignmentSettings.php
[edit]
[-] MobileAppCategory.php
[edit]
[-] MobileAppContent.php
[edit]
[-] MobileAppContentFile.php
[edit]
[-] MobileAppContentFileUploadState.php
[edit]
[-] MobileAppDependency.php
[edit]
[-] MobileAppDependencyType.php
[edit]
[-] MobileAppIdentifier.php
[edit]
[-] MobileAppInstallStatus.php
[edit]
[-] MobileAppInstallSummary.php
[edit]
[-] MobileAppInstallTimeSettings.php
[edit]
[-] MobileAppIntent.php
[edit]
[-] MobileAppIntentAndState.php
[edit]
[-] MobileAppIntentAndStateDetail.php
[edit]
[-] MobileAppPolicySetItem.php
[edit]
[-] MobileAppProvisioningConfigGroupAssignment.php
[edit]
[-] MobileAppPublishingState.php
[edit]
[-] MobileAppRelationship.php
[edit]
[-] MobileAppRelationshipState.php
[edit]
[-] MobileAppRelationshipType.php
[edit]
[-] MobileAppSupersedence.php
[edit]
[-] MobileAppSupersedenceType.php
[edit]
[-] MobileAppSupportedDeviceType.php
[edit]
[-] MobileAppTroubleshootingAppPolicyCreationHistory.php
[edit]
[-] MobileAppTroubleshootingAppStateHistory.php
[edit]
[-] MobileAppTroubleshootingAppTargetHistory.php
[edit]
[-] MobileAppTroubleshootingAppUpdateHistory.php
[edit]
[-] MobileAppTroubleshootingDeviceCheckinHistory.php
[edit]
[-] MobileAppTroubleshootingEvent.php
[edit]
[-] MobileAppTroubleshootingHistoryItem.php
[edit]
[-] MobileContainedApp.php
[edit]
[-] MobileLobApp.php
[edit]
[-] MobileThreatDefenseConnector.php
[edit]
[-] MobileThreatPartnerTenantState.php
[edit]
[-] MobilityManagementPolicy.php
[edit]
[-] Modality.php
[edit]
[-] ModifiedProperty.php
[edit]
[-] MoveAction.php
[edit]
[-] MultiFactorAuthConfiguration.php
[edit]
[-] MultiValueLegacyExtendedProperty.php
[edit]
[-] Mutability.php
[edit]
[-] MuteParticipantOperation.php
[edit]
[-] MuteParticipantsOperation.php
[edit]
[-] NamedLocation.php
[edit]
[-] NdesConnector.php
[edit]
[-] NdesConnectorState.php
[edit]
[-] NetworkConnection.php
[edit]
[-] NetworkInterface.php
[edit]
[-] NetworkLocationDetail.php
[edit]
[-] NetworkSingleSignOnType.php
[edit]
[-] NetworkType.php
[edit]
[-] NonEapAuthenticationMethodForEapTtlsType.php
[edit]
[-] NonEapAuthenticationMethodForPeap.php
[edit]
[-] Note.php
[edit]
[-] Notebook.php
[edit]
[-] NotebookLinks.php
[edit]
[-] Notification.php
[edit]
[-] NotificationMessageTemplate.php
[edit]
[-] NotificationTemplateBrandingOptions.php
[edit]
[-] NotifyUserAction.php
[edit]
[-] NumberColumn.php
[edit]
[-] NumberRange.php
[edit]
[-] OAuth2PermissionGrant.php
[edit]
[-] OathTokenMetadata.php
[edit]
[-] ObjectDefinition.php
[edit]
[-] ObjectFlowTypes.php
[edit]
[-] ObjectIdentity.php
[edit]
[-] ObjectMapping.php
[edit]
[-] OemWarranty.php
[edit]
[-] OemWarrantyInformationOnboarding.php
[edit]
[-] OfferShiftRequest.php
[edit]
[-] Office365ActiveUserCounts.php
[edit]
[-] Office365ActiveUserDetail.php
[edit]
[-] Office365GroupsActivityCounts.php
[edit]
[-] Office365GroupsActivityDetail.php
[edit]
[-] Office365GroupsActivityFileCounts.php
[edit]
[-] Office365GroupsActivityGroupCounts.php
[edit]
[-] Office365GroupsActivityStorage.php
[edit]
[-] Office365ServicesUserCounts.php
[edit]
[-] OfficeClientCheckinStatus.php
[edit]
[-] OfficeClientConfiguration.php
[edit]
[-] OfficeClientConfigurationAssignment.php
[edit]
[-] OfficeConfiguration.php
[edit]
[-] OfficeConfigurationAssignmentTarget.php
[edit]
[-] OfficeConfigurationGroupAssignmentTarget.php
[edit]
[-] OfficeGraphInsights.php
[edit]
[-] OfficeProductId.php
[edit]
[-] OfficeSuiteApp.php
[edit]
[-] OfficeSuiteInstallProgressDisplayLevel.php
[edit]
[-] OfficeUpdateChannel.php
[edit]
[-] OfficeUserCheckinSummary.php
[edit]
[-] OmaSetting.php
[edit]
[-] OmaSettingBase64.php
[edit]
[-] OmaSettingBoolean.php
[edit]
[-] OmaSettingDateTime.php
[edit]
[-] OmaSettingFloatingPoint.php
[edit]
[-] OmaSettingInteger.php
[edit]
[-] OmaSettingString.php
[edit]
[-] OmaSettingStringXml.php
[edit]
[-] OnPremisesAgent.php
[edit]
[-] OnPremisesAgentGroup.php
[edit]
[-] OnPremisesApplicationSegment.php
[edit]
[-] OnPremisesConditionalAccessSettings.php
[edit]
[-] OnPremisesExtensionAttributes.php
[edit]
[-] OnPremisesProvisioningError.php
[edit]
[-] OnPremisesPublishing.php
[edit]
[-] OnPremisesPublishingProfile.php
[edit]
[-] OnPremisesPublishingSingleSignOn.php
[edit]
[-] OnPremisesPublishingType.php
[edit]
[-] OnboardingStatus.php
[edit]
[-] Onenote.php
[edit]
[-] OnenoteEntityBaseModel.php
[edit]
[-] OnenoteEntityHierarchyModel.php
[edit]
[-] OnenoteEntitySchemaObjectModel.php
[edit]
[-] OnenoteOperation.php
[edit]
[-] OnenoteOperationError.php
[edit]
[-] OnenotePage.php
[edit]
[-] OnenotePagePreview.php
[edit]
[-] OnenotePagePreviewLinks.php
[edit]
[-] OnenotePatchActionType.php
[edit]
[-] OnenotePatchContentCommand.php
[edit]
[-] OnenotePatchInsertPosition.php
[edit]
[-] OnenoteResource.php
[edit]
[-] OnenoteSection.php
[edit]
[-] OnenoteSourceService.php
[edit]
[-] OnenoteUserRole.php
[edit]
[-] OnlineMeeting.php
[edit]
[-] OnlineMeetingForwarders.php
[edit]
[-] OnlineMeetingInfo.php
[edit]
[-] OnlineMeetingPresenters.php
[edit]
[-] OnlineMeetingProviderType.php
[edit]
[-] OnlineMeetingRole.php
[edit]
[-] OpenIdConnectIdentityProvider.php
[edit]
[-] OpenIdConnectProvider.php
[edit]
[-] OpenIdConnectResponseMode.php
[edit]
[-] OpenIdConnectResponseTypes.php
[edit]
[-] OpenShift.php
[edit]
[-] OpenShiftChangeRequest.php
[edit]
[-] OpenShiftItem.php
[edit]
[-] OpenTypeExtension.php
[edit]
[-] OperatingSystemUpgradeEligibility.php
[edit]
[-] OperatingSystemVersionRange.php
[edit]
[-] Operation.php
[edit]
[-] OperationApprovalPolicySet.php
[edit]
[-] OperationError.php
[edit]
[-] OperationResult.php
[edit]
[-] OperationStatus.php
[edit]
[-] Operator.php
[edit]
[-] OptionalClaim.php
[edit]
[-] OptionalClaims.php
[edit]
[-] OrgContact.php
[edit]
[-] Organization.php
[edit]
[-] OrganizationSettings.php
[edit]
[-] OrganizationalBranding.php
[edit]
[-] OrganizationalBrandingLocalization.php
[edit]
[-] OrganizationalBrandingProperties.php
[edit]
[-] OrganizerMeetingInfo.php
[edit]
[-] OsVersionCount.php
[edit]
[-] OutOfBoxExperienceSettings.php
[edit]
[-] OutOfOfficeSettings.php
[edit]
[-] OutboundSharedUserProfile.php
[edit]
[-] OutgoingCallOptions.php
[edit]
[-] OutlierContainerType.php
[edit]
[-] OutlierMemberType.php
[edit]
[-] OutlookCategory.php
[edit]
[-] OutlookGeoCoordinates.php
[edit]
[-] OutlookItem.php
[edit]
[-] OutlookTask.php
[edit]
[-] OutlookTaskFolder.php
[edit]
[-] OutlookTaskGroup.php
[edit]
[-] OutlookUser.php
[edit]
[-] OverallPrintUsageSummary.php
[edit]
[-] OverrideOption.php
[edit]
[-] OwnerType.php
[edit]
[-] Package.php
[edit]
[-] PageLinks.php
[edit]
[-] PageOrientation.php
[edit]
[-] ParentLabelDetails.php
[edit]
[-] ParentalControlSettings.php
[edit]
[-] ParseExpressionResponse.php
[edit]
[-] Participant.php
[edit]
[-] ParticipantInfo.php
[edit]
[-] ParticipantJoiningNotification.php
[edit]
[-] ParticipantJoiningResponse.php
[edit]
[-] ParticipantLeftNotification.php
[edit]
[-] PasswordAuthenticationMethod.php
[edit]
[-] Person.php
[edit]
[-] PasswordCredential.php
[edit]
[-] PasswordCredentialConfiguration.php
[edit]
[-] PasswordProfile.php
[edit]
[-] PasswordResetResponse.php
[edit]
[-] PasswordSingleSignOnCredentialSet.php
[edit]
[-] PasswordSingleSignOnField.php
[edit]
[-] PasswordSingleSignOnSettings.php
[edit]
[-] PasswordValidationInformation.php
[edit]
[-] PasswordlessMicrosoftAuthenticatorAuthenticationMethod.php
[edit]
[-] PatternedRecurrence.php
[edit]
[-] PayloadCompatibleAssignmentFilter.php
[edit]
[-] PayloadDeliveryPlatform.php
[edit]
[-] PayloadRequest.php
[edit]
[-] PayloadResponse.php
[edit]
[-] PayloadTypes.php
[edit]
[-] PaymentMethod.php
[edit]
[-] PaymentTerm.php
[edit]
[-] PendingContentUpdate.php
[edit]
[-] PendingOperations.php
[edit]
[-] PerfectForwardSecrecyGroup.php
[edit]
[-] Permission.php
[edit]
[-] PermissionClassificationType.php
[edit]
[-] PermissionGrantConditionSet.php
[edit]
[-] PermissionGrantPolicy.php
[edit]
[-] PermissionScope.php
[edit]
[-] PermissionType.php
[edit]
[-] PersistentBrowserSessionControl.php
[edit]
[-] PersistentBrowserSessionMode.php
[edit]
[-] PersonAnnotation.php
[edit]
[-] PersonAnnualEvent.php
[edit]
[-] PersonAnnualEventType.php
[edit]
[-] PersonAward.php
[edit]
[-] PersonCertification.php
[edit]
[-] PersonDataSource.php
[edit]
[-] PersonDataSources.php
[edit]
[-] PersonExtension.php
[edit]
[-] PersonInterest.php
[edit]
[-] PersonName.php
[edit]
[-] PersonNamePronounciation.php
[edit]
[-] PersonOrGroupColumn.php
[edit]
[-] PersonRelationship.php
[edit]
[-] PersonResponsibility.php
[edit]
[-] PersonWebsite.php
[edit]
[-] PersonalProfilePersonalPlayStoreMode.php
[edit]
[-] Phone.php
[edit]
[-] PhoneAuthenticationMethod.php
[edit]
[-] PhoneType.php
[edit]
[-] Photo.php
[edit]
[-] PhysicalAddress.php
[edit]
[-] PhysicalAddressType.php
[edit]
[-] PhysicalOfficeAddress.php
[edit]
[-] Picture.php
[edit]
[-] PinnedChatMessageInfo.php
[edit]
[-] Pkcs12Certificate.php
[edit]
[-] Pkcs12CertificateInformation.php
[edit]
[-] Place.php
[edit]
[-] Planner.php
[edit]
[-] PlannerAppliedCategories.php
[edit]
[-] PlannerAssignedToTaskBoardTaskFormat.php
[edit]
[-] PlannerAssignment.php
[edit]
[-] PlannerAssignments.php
[edit]
[-] PlannerBucket.php
[edit]
[-] PlannerBucketTaskBoardTaskFormat.php
[edit]
[-] PlannerCategoryDescriptions.php
[edit]
[-] PlannerChecklistItem.php
[edit]
[-] PlannerChecklistItems.php
[edit]
[-] PlannerContainerType.php
[edit]
[-] PlannerContextState.php
[edit]
[-] PlannerDelta.php
[edit]
[-] PlannerExternalReference.php
[edit]
[-] PlannerExternalReferences.php
[edit]
[-] PlannerFavoritePlanReference.php
[edit]
[-] PlannerFavoritePlanReferenceCollection.php
[edit]
[-] PlannerGroup.php
[edit]
[-] PlannerOrderHintsByAssignee.php
[edit]
[-] PlannerPlan.php
[edit]
[-] PlannerPlanContainer.php
[edit]
[-] PlannerPlanContext.php
[edit]
[-] PlannerPlanContextCollection.php
[edit]
[-] PlannerPlanContextDetails.php
[edit]
[-] PlannerPlanContextDetailsCollection.php
[edit]
[-] PlannerPlanContextType.php
[edit]
[-] PlannerPlanDetails.php
[edit]
[-] PlannerPreviewType.php
[edit]
[-] PlannerProgressTaskBoardTaskFormat.php
[edit]
[-] PlannerRecentPlanReference.php
[edit]
[-] PlannerRecentPlanReferenceCollection.php
[edit]
[-] PlannerRoster.php
[edit]
[-] PlannerRosterMember.php
[edit]
[-] PlannerTask.php
[edit]
[-] PlannerTaskCreation.php
[edit]
[-] PlannerTaskDetails.php
[edit]
[-] PlannerTeamsPublicationInfo.php
[edit]
[-] PlannerUser.php
[edit]
[-] PlannerUserIds.php
[edit]
[-] Platform.php
[edit]
[-] PlayPromptCompletionReason.php
[edit]
[-] PlayPromptOperation.php
[edit]
[-] PolicyBase.php
[edit]
[-] PolicyPlatformType.php
[edit]
[-] PolicyRoot.php
[edit]
[-] PolicyScope.php
[edit]
[-] PolicySet.php
[edit]
[-] PolicySetAssignment.php
[edit]
[-] PolicySetItem.php
[edit]
[-] PolicySetStatus.php
[edit]
[-] PositionDetail.php
[edit]
[-] Post.php
[edit]
[-] PostType.php
[edit]
[-] PostalAddressType.php
[edit]
[-] PowerActionType.php
[edit]
[-] PreAuthorizedApplication.php
[edit]
[-] PrereleaseFeatures.php
[edit]
[-] Presence.php
[edit]
[-] Presentation.php
[edit]
[-] PrincipalResourceMembershipsScope.php
[edit]
[-] PrintCertificateSigningRequest.php
[edit]
[-] PrintColorConfiguration.php
[edit]
[-] PrintColorMode.php
[edit]
[-] PrintConnector.php
[edit]
[-] PrintDocument.php
[edit]
[-] PrintDocumentUploadProperties.php
[edit]
[-] PrintDuplexConfiguration.php
[edit]
[-] PrintDuplexMode.php
[edit]
[-] PrintEvent.php
[edit]
[-] PrintFinishing.php
[edit]
[-] PrintJob.php
[edit]
[-] PrintJobConfiguration.php
[edit]
[-] PrintJobProcessingState.php
[edit]
[-] PrintJobStateDetail.php
[edit]
[-] PrintJobStatus.php
[edit]
[-] PrintMargin.php
[edit]
[-] PrintMediaType.php
[edit]
[-] PrintMultipageLayout.php
[edit]
[-] PrintOperation.php
[edit]
[-] PrintOperationProcessingState.php
[edit]
[-] PrintOperationStatus.php
[edit]
[-] PrintOrientation.php
[edit]
[-] PrintPresentationDirection.php
[edit]
[-] PrintQuality.php
[edit]
[-] PrintScaling.php
[edit]
[-] PrintService.php
[edit]
[-] PrintServiceEndpoint.php
[edit]
[-] PrintSettings.php
[edit]
[-] PrintTask.php
[edit]
[-] PrintTaskDefinition.php
[edit]
[-] PrintTaskProcessingState.php
[edit]
[-] PrintTaskStatus.php
[edit]
[-] PrintTaskTrigger.php
[edit]
[-] PrintUsage.php
[edit]
[-] PrintUsageByPrinter.php
[edit]
[-] PrintUsageByUser.php
[edit]
[-] PrintUsageSummary.php
[edit]
[-] Printer.php
[edit]
[-] PrinterBase.php
[edit]
[-] PrinterCapabilities.php
[edit]
[-] PrinterCreateOperation.php
[edit]
[-] PrinterDefaults.php
[edit]
[-] PrinterDocumentConfiguration.php
[edit]
[-] PrinterFeedDirection.php
[edit]
[-] PrinterFeedOrientation.php
[edit]
[-] PrinterLocation.php
[edit]
[-] PrinterProcessingState.php
[edit]
[-] PrinterProcessingStateDetail.php
[edit]
[-] PrinterProcessingStateReason.php
[edit]
[-] PrinterShare.php
[edit]
[-] PrinterShareViewpoint.php
[edit]
[-] PrinterStatus.php
[edit]
[-] PrinterUsageSummary.php
[edit]
[-] Priority.php
[edit]
[-] Privacy.php
[edit]
[-] PrivacyProfile.php
[edit]
[-] PrivateLinkDetails.php
[edit]
[-] PrivilegedAccess.php
[edit]
[-] PrivilegedApproval.php
[edit]
[-] PrivilegedOperationEvent.php
[edit]
[-] PrivilegedRole.php
[edit]
[-] PrivilegedRoleAssignment.php
[edit]
[-] PrivilegedRoleAssignmentRequest.php
[edit]
[-] PrivilegedRoleSettings.php
[edit]
[-] PrivilegedRoleSummary.php
[edit]
[-] PrivilegedSignupStatus.php
[edit]
[-] Process.php
[edit]
[-] ProcessIntegrityLevel.php
[edit]
[-] Profile.php
[edit]
[-] ProfileCardAnnotation.php
[edit]
[-] ProfileCardProperty.php
[edit]
[-] ProfilePhoto.php
[edit]
[-] Program.php
[edit]
[-] ProgramControl.php
[edit]
[-] ProgramControlType.php
[edit]
[-] ProgramResource.php
[edit]
[-] ProjectParticipation.php
[edit]
[-] Prompt.php
[edit]
[-] PromptLoginBehavior.php
[edit]
[-] Properties.php
[edit]
[-] Property.php
[edit]
[-] PropertyToEvaluate.php
[edit]
[-] PropertyType.php
[edit]
[-] ProtectAdhocAction.php
[edit]
[-] ProtectByTemplateAction.php
[edit]
[-] ProtectDoNotForwardAction.php
[edit]
[-] ProtectGroup.php
[edit]
[-] ProtectOnlineMeetingAction.php
[edit]
[-] ProtectSite.php
[edit]
[-] ProtocolType.php
[edit]
[-] ProviderTenantSetting.php
[edit]
[-] ProvisionChannelEmailResult.php
[edit]
[-] ProvisionedIdentity.php
[edit]
[-] ProvisionedPlan.php
[edit]
[-] ProvisioningAction.php
[edit]
[-] ProvisioningErrorInfo.php
[edit]
[-] ProvisioningObjectSummary.php
[edit]
[-] ProvisioningResult.php
[edit]
[-] ProvisioningServicePrincipal.php
[edit]
[-] ProvisioningStatusErrorCategory.php
[edit]
[-] ProvisioningStatusInfo.php
[edit]
[-] ProvisioningStep.php
[edit]
[-] ProvisioningStepType.php
[edit]
[-] ProvisioningSystem.php
[edit]
[-] ProxiedDomain.php
[edit]
[-] PublicClientApplication.php
[edit]
[-] PublicError.php
[edit]
[-] PublicErrorDetail.php
[edit]
[-] PublicErrorResponse.php
[edit]
[-] PublicInnerError.php
[edit]
[-] PublicationFacet.php
[edit]
[-] PublishedResource.php
[edit]
[-] PurchaseInvoice.php
[edit]
[-] PurchaseInvoiceLine.php
[edit]
[-] QuarantineReason.php
[edit]
[-] Quota.php
[edit]
[-] RankedEmailAddress.php
[edit]
[-] RatingAppsType.php
[edit]
[-] RatingAustraliaMoviesType.php
[edit]
[-] RatingAustraliaTelevisionType.php
[edit]
[-] RatingCanadaMoviesType.php
[edit]
[-] RatingCanadaTelevisionType.php
[edit]
[-] RatingFranceMoviesType.php
[edit]
[-] RatingFranceTelevisionType.php
[edit]
[-] RatingGermanyMoviesType.php
[edit]
[-] RatingGermanyTelevisionType.php
[edit]
[-] RatingIrelandMoviesType.php
[edit]
[-] RatingIrelandTelevisionType.php
[edit]
[-] RatingJapanMoviesType.php
[edit]
[-] RatingJapanTelevisionType.php
[edit]
[-] RatingNewZealandMoviesType.php
[edit]
[-] RatingNewZealandTelevisionType.php
[edit]
[-] RatingUnitedKingdomMoviesType.php
[edit]
[-] RatingUnitedKingdomTelevisionType.php
[edit]
[-] RatingUnitedStatesMoviesType.php
[edit]
[-] RatingUnitedStatesTelevisionType.php
[edit]
[-] RbacApplication.php
[edit]
[-] RbacApplicationMultiple.php
[edit]
[-] RecentNotebook.php
[edit]
[-] RecentNotebookLinks.php
[edit]
[-] Recipient.php
[edit]
[-] RecipientScopeType.php
[edit]
[-] RecommendLabelAction.php
[edit]
[-] Recommendation.php
[edit]
[-] RecommendationCategory.php
[edit]
[-] RecommendationPriority.php
[edit]
[-] RecommendationResource.php
[edit]
[-] RecommendationStatus.php
[edit]
[-] RecommendedAction.php
[edit]
[-] RecordCompletionReason.php
[edit]
[-] RecordOperation.php
[edit]
[-] RecordingInfo.php
[edit]
[-] RecordingStatus.php
[edit]
[-] RecurrencePattern.php
[edit]
[-] RecurrencePatternType.php
[edit]
[-] RecurrenceRange.php
[edit]
[-] RecurrenceRangeType.php
[edit]
[-] RedirectSingleSignOnExtension.php
[edit]
[-] RedirectUriSettings.php
[edit]
[-] ReferenceAttachment.php
[edit]
[-] ReferenceAttachmentPermission.php
[edit]
[-] ReferenceAttachmentProvider.php
[edit]
[-] ReferencedObject.php
[edit]
[-] RegionalAndLanguageSettings.php
[edit]
[-] RegionalFormatOverrides.php
[edit]
[-] RegistrationAuthMethod.php
[edit]
[-] RegistrationEnforcement.php
[edit]
[-] RegistrationStatusType.php
[edit]
[-] RegistryHive.php
[edit]
[-] RegistryKeyState.php
[edit]
[-] RegistryOperation.php
[edit]
[-] RegistryValueType.php
[edit]
[-] RejectJoinResponse.php
[edit]
[-] RejectReason.php
[edit]
[-] RelatedContact.php
[edit]
[-] RelatedPerson.php
[edit]
[-] RelyingPartyDetailedSummary.php
[edit]
[-] RemediationState.php
[edit]
[-] Reminder.php
[edit]
[-] RemoteAction.php
[edit]
[-] RemoteActionAudit.php
[edit]
[-] RemoteAssistanceOnboardingStatus.php
[edit]
[-] RemoteAssistancePartner.php
[edit]
[-] RemoteAssistanceSettings.php
[edit]
[-] RemoteAssistanceState.php
[edit]
[-] RemoteItem.php
[edit]
[-] RemoteLockActionResult.php
[edit]
[-] RemoveAccessApplyAction.php
[edit]
[-] RemoveContentFooterAction.php
[edit]
[-] RemoveContentHeaderAction.php
[edit]
[-] RemoveProtectionAction.php
[edit]
[-] RemoveWatermarkAction.php
[edit]
[-] RenameAction.php
[edit]
[-] ReplyRestriction.php
[edit]
[-] Report.php
[edit]
[-] ReportRoot.php
[edit]
[-] ReputationCategory.php
[edit]
[-] Request.php
[edit]
[-] RequestSchedule.php
[edit]
[-] RequestorManager.php
[edit]
[-] RequestorSettings.php
[edit]
[-] RequiredPasswordType.php
[edit]
[-] RequiredResourceAccess.php
[edit]
[-] RequirementProvider.php
[edit]
[-] ResetPasscodeActionResult.php
[edit]
[-] ResourceAccess.php
[edit]
[-] ResourceAction.php
[edit]
[-] ResourceData.php
[edit]
[-] ResourceOperation.php
[edit]
[-] ResourcePermission.php
[edit]
[-] ResourceReference.php
[edit]
[-] ResourceSpecificPermission.php
[edit]
[-] ResourceSpecificPermissionGrant.php
[edit]
[-] ResourceVisualization.php
[edit]
[-] ResponseStatus.php
[edit]
[-] ResponseType.php
[edit]
[-] ResponsiblePolicy.php
[edit]
[-] ResponsibleSensitiveType.php
[edit]
[-] RestoreAction.php
[edit]
[-] RestoreTimeRange.php
[edit]
[-] RestrictedAppsState.php
[edit]
[-] RestrictedAppsViolation.php
[edit]
[-] RestrictedSignIn.php
[edit]
[-] RestrictionAction.php
[edit]
[-] RestrictionTrigger.php
[edit]
[-] ResultInfo.php
[edit]
[-] ResultTemplate.php
[edit]
[-] ResultTemplateDictionary.php
[edit]
[-] ResultTemplateOption.php
[edit]
[-] ResultantAppState.php
[edit]
[-] ResultantAppStateDetail.php
[edit]
[-] RetireScheduledManagedDevice.php
[edit]
[-] RevokeAppleVppLicensesActionResult.php
[edit]
[-] RgbColor.php
[edit]
[-] RichLongRunningOperation.php
[edit]
[-] RiskDetail.php
[edit]
[-] RiskDetection.php
[edit]
[-] RiskDetectionTimingType.php
[edit]
[-] RiskEventType.php
[edit]
[-] RiskLevel.php
[edit]
[-] RiskServicePrincipalActivity.php
[edit]
[-] RiskState.php
[edit]
[-] RiskUserActivity.php
[edit]
[-] RiskyServicePrincipal.php
[edit]
[-] RiskyServicePrincipalHistoryItem.php
[edit]
[-] RiskyUser.php
[edit]
[-] RiskyUserHistoryItem.php
[edit]
[-] RoleAssignment.php
[edit]
[-] RoleAssignmentScheduleFilterByCurrentUserOptions.php
[edit]
[-] RoleAssignmentScheduleInstanceFilterByCurrentUserOptions.php
[edit]
[-] RoleAssignmentScheduleRequestFilterByCurrentUserOptions.php
[edit]
[-] RoleAssignmentScopeType.php
[edit]
[-] RoleDefinition.php
[edit]
[-] RoleEligibilityScheduleFilterByCurrentUserOptions.php
[edit]
[-] RoleEligibilityScheduleInstanceFilterByCurrentUserOptions.php
[edit]
[-] RoleEligibilityScheduleRequestFilterByCurrentUserOptions.php
[edit]
[-] RoleManagement.php
[edit]
[-] RoleMembershipGovernanceCriteria.php
[edit]
[-] RolePermission.php
[edit]
[-] RoleScopeTag.php
[edit]
[-] RoleScopeTagAutoAssignment.php
[edit]
[-] RoleScopeTagInfo.php
[edit]
[-] RoleSuccessStatistics.php
[edit]
[-] RoleSummaryStatus.php
[edit]
[-] Room.php
[edit]
[-] RoomList.php
[edit]
[-] Root.php
[edit]
[-] RotateBitLockerKeysDeviceActionResult.php
[edit]
[-] RoutingMode.php
[edit]
[-] RoutingPolicy.php
[edit]
[-] RoutingType.php
[edit]
[-] RubricCriterion.php
[edit]
[-] RubricLevel.php
[edit]
[-] RubricQuality.php
[edit]
[-] RubricQualityFeedbackModel.php
[edit]
[-] RubricQualitySelectedColumnModel.php
[edit]
[-] RuleMode.php
[edit]
[-] RunAsAccountType.php
[edit]
[-] RunState.php
[edit]
[-] SafeSearchFilterType.php
[edit]
[-] SalesCreditMemo.php
[edit]
[-] SalesCreditMemoLine.php
[edit]
[-] SalesInvoice.php
[edit]
[-] SalesInvoiceLine.php
[edit]
[-] SalesOrder.php
[edit]
[-] SalesOrderLine.php
[edit]
[-] SalesQuote.php
[edit]
[-] SalesQuoteLine.php
[edit]
[-] SamlOrWsFedExternalDomainFederation.php
[edit]
[-] SamlOrWsFedProvider.php
[edit]
[-] SamlSingleSignOnSettings.php
[edit]
[-] Schedule.php
[edit]
[-] ScheduleChangeRequest.php
[edit]
[-] ScheduleChangeRequestActor.php
[edit]
[-] ScheduleChangeState.php
[edit]
[-] ScheduleEntity.php
[edit]
[-] ScheduleEntityTheme.php
[edit]
[-] ScheduleInformation.php
[edit]
[-] ScheduleItem.php
[edit]
[-] ScheduledRetireState.php
[edit]
[-] SchedulingGroup.php
[edit]
[-] Schema.php
[edit]
[-] SchemaExtension.php
[edit]
[-] ScopeOperatorMultiValuedComparisonType.php
[edit]
[-] ScopeOperatorType.php
[edit]
[-] ScopedRoleMembership.php
[edit]
[-] ScreenSharingRole.php
[edit]
[-] SearchAggregation.php
[edit]
[-] SearchAlteration.php
[edit]
[-] SearchAlterationOptions.php
[edit]
[-] SearchAlterationType.php
[edit]
[-] SearchBucket.php
[edit]
[-] SearchEntity.php
[edit]
[-] SearchHit.php
[edit]
[-] SearchHitsContainer.php
[edit]
[-] SearchQuery.php
[edit]
[-] SearchQueryString.php
[edit]
[-] SearchRequest.php
[edit]
[-] SearchResponse.php
[edit]
[-] SearchResult.php
[edit]
[-] SectionGroup.php
[edit]
[-] SectionLinks.php
[edit]
[-] SecureAssessmentAccountType.php
[edit]
[-] SecureBootWithDMAType.php
[edit]
[-] SecureScore.php
[edit]
[-] SecureScoreControlProfile.php
[edit]
[-] SecureScoreControlStateUpdate.php
[edit]
[-] Security.php
[edit]
[-] SecurityAction.php
[edit]
[-] SecurityActionState.php
[edit]
[-] SecurityBaselineCategoryStateSummary.php
[edit]
[-] SecurityBaselineComplianceState.php
[edit]
[-] SecurityBaselineContributingPolicy.php
[edit]
[-] SecurityBaselineDeviceState.php
[edit]
[-] SecurityBaselinePolicySourceType.php
[edit]
[-] SecurityBaselineSettingState.php
[edit]
[-] SecurityBaselineState.php
[edit]
[-] SecurityBaselineStateSummary.php
[edit]
[-] SecurityBaselineTemplate.php
[edit]
[-] SecurityConfigurationTask.php
[edit]
[-] SecurityNetworkProtocol.php
[edit]
[-] SecurityProviderStatus.php
[edit]
[-] SecurityQuestionType.php
[edit]
[-] SecurityReportsRoot.php
[edit]
[-] SecurityResource.php
[edit]
[-] SecurityResourceType.php
[edit]
[-] SecurityVendorInformation.php
[edit]
[-] SelfServiceSignUpAuthenticationFlowConfiguration.php
[edit]
[-] SelfSignedCertificate.php
[edit]
[-] SensitiveContentEvidence.php
[edit]
[-] SensitiveContentLocation.php
[edit]
[-] SensitiveType.php
[edit]
[-] SensitiveTypeScope.php
[edit]
[-] SensitiveTypeSource.php
[edit]
[-] Sensitivity.php
[edit]
[-] SensitivityLabel.php
[edit]
[-] SensitivityLabelAssignment.php
[edit]
[-] SensitivityLabelAssignmentMethod.php
[edit]
[-] SensitivityLabelTarget.php
[edit]
[-] SensitivityPolicySettings.php
[edit]
[-] ServiceAnnouncement.php
[edit]
[-] ServiceAnnouncementAttachment.php
[edit]
[-] ServiceAnnouncementBase.php
[edit]
[-] ServiceHealth.php
[edit]
[-] ServiceHealthClassificationType.php
[edit]
[-] ServiceHealthIssue.php
[edit]
[-] ServiceHealthIssuePost.php
[edit]
[-] ServiceHealthOrigin.php
[edit]
[-] ServiceHealthStatus.php
[edit]
[-] ServiceHostedMediaConfig.php
[edit]
[-] ServiceInformation.php
[edit]
[-] ServicePlanInfo.php
[edit]
[-] ServicePrincipal.php
[edit]
[-] ServicePrincipalCreationConditionSet.php
[edit]
[-] ServicePrincipalCreationPolicy.php
[edit]
[-] ServicePrincipalIdentity.php
[edit]
[-] ServicePrincipalRiskDetection.php
[edit]
[-] ServiceStartType.php
[edit]
[-] ServiceUpdateCategory.php
[edit]
[-] ServiceUpdateMessage.php
[edit]
[-] ServiceUpdateMessageViewpoint.php
[edit]
[-] ServiceUpdateSeverity.php
[edit]
[-] SessionLifetimePolicy.php
[edit]
[-] SettingSource.php
[edit]
[-] SettingSourceType.php
[edit]
[-] SettingStateDeviceSummary.php
[edit]
[-] SettingTemplateValue.php
[edit]
[-] SettingValue.php
[edit]
[-] Settings.php
[edit]
[-] SetupStatus.php
[edit]
[-] ShareAction.php
[edit]
[-] SharePointIdentity.php
[edit]
[-] SharePointIdentitySet.php
[edit]
[-] Shared.php
[edit]
[-] SharedAppleDeviceUser.php
[edit]
[-] SharedDriveItem.php
[edit]
[-] SharedEmailDomain.php
[edit]
[-] SharedEmailDomainInvitation.php
[edit]
[-] SharedInsight.php
[edit]
[-] SharedPCAccountDeletionPolicyType.php
[edit]
[-] SharedPCAccountManagerPolicy.php
[edit]
[-] SharedPCAllowedAccountType.php
[edit]
[-] SharedPCConfiguration.php
[edit]
[-] SharedWithChannelTeamInfo.php
[edit]
[-] SharepointIds.php
[edit]
[-] SharingDetail.php
[edit]
[-] SharingInvitation.php
[edit]
[-] SharingLink.php
[edit]
[-] Shift.php
[edit]
[-] ShiftActivity.php
[edit]
[-] ShiftAvailability.php
[edit]
[-] ShiftItem.php
[edit]
[-] ShiftPreferences.php
[edit]
[-] ShipmentMethod.php
[edit]
[-] SideLoadingKey.php
[edit]
[-] SignIn.php
[edit]
[-] SignInAccessType.php
[edit]
[-] SignInActivity.php
[edit]
[-] SignInAssistantOptions.php
[edit]
[-] SignInFrequencyAuthenticationType.php
[edit]
[-] SignInFrequencyInterval.php
[edit]
[-] SignInFrequencySessionControl.php
[edit]
[-] SignInIdentifierType.php
[edit]
[-] SignInLocation.php
[edit]
[-] SignInStatus.php
[edit]
[-] SignInUserType.php
[edit]
[-] SigninFrequencyType.php
[edit]
[-] SigningCertificateUpdateStatus.php
[edit]
[-] SigningResult.php
[edit]
[-] Simulation.php
[edit]
[-] SimulationAttackTechnique.php
[edit]
[-] SimulationAttackType.php
[edit]
[-] SimulationAutomation.php
[edit]
[-] SimulationAutomationRun.php
[edit]
[-] SimulationAutomationRunStatus.php
[edit]
[-] SimulationAutomationStatus.php
[edit]
[-] SimulationEvent.php
[edit]
[-] SimulationEventsContent.php
[edit]
[-] SimulationReport.php
[edit]
[-] SimulationReportOverview.php
[edit]
[-] SimulationStatus.php
[edit]
[-] SingleSignOnExtension.php
[edit]
[-] SingleSignOnMode.php
[edit]
[-] SingleUser.php
[edit]
[-] SingleValueLegacyExtendedProperty.php
[edit]
[-] Site.php
[edit]
[-] SiteAccessType.php
[edit]
[-] SiteCollection.php
[edit]
[-] SitePage.php
[edit]
[-] SitePageData.php
[edit]
[-] SiteSecurityLevel.php
[edit]
[-] SiteSettings.php
[edit]
[-] SizeRange.php
[edit]
[-] SkillProficiency.php
[edit]
[-] SkillProficiencyLevel.php
[edit]
[-] SkypeForBusinessUserConversationMember.php
[edit]
[-] SkypeUserConversationMember.php
[edit]
[-] SmsAuthenticationMethodConfiguration.php
[edit]
[-] SmsAuthenticationMethodTarget.php
[edit]
[-] SocialIdentityProvider.php
[edit]
[-] SoftwareOathAuthenticationMethod.php
[edit]
[-] SoftwareUpdateStatusSummary.php
[edit]
[-] SortProperty.php
[edit]
[-] SpaApplication.php
[edit]
[-] SpecialFolder.php
[edit]
[-] SpecifiedCaptiveNetworkPlugins.php
[edit]
[-] StaffAvailabilityItem.php
[edit]
[-] StagedFeatureName.php
[edit]
[-] StandardTimeZoneOffset.php
[edit]
[-] StartHoldMusicOperation.php
[edit]
[-] StateManagementSetting.php
[edit]
[-] Status.php
[edit]
[-] StatusBase.php
[edit]
[-] StatusDetails.php
[edit]
[-] StopHoldMusicOperation.php
[edit]
[-] Storage.php
[edit]
[-] StoragePlanInformation.php
[edit]
[-] StringKeyAttributeMappingSourceValuePair.php
[edit]
[-] StringKeyLongValuePair.php
[edit]
[-] StringKeyObjectValuePair.php
[edit]
[-] StringKeyStringValuePair.php
[edit]
[-] StrongAuthenticationDetail.php
[edit]
[-] StrongAuthenticationPhoneAppDetail.php
[edit]
[-] StsPolicy.php
[edit]
[-] SubjectAlternativeNameType.php
[edit]
[-] SubjectNameFormat.php
[edit]
[-] SubjectRightsRequest.php
[edit]
[-] SubjectRightsRequestAllMailboxLocation.php
[edit]
[-] SubjectRightsRequestAllSiteLocation.php
[edit]
[-] SubjectRightsRequestDetail.php
[edit]
[-] SubjectRightsRequestEnumeratedMailboxLocation.php
[edit]
[-] SubjectRightsRequestEnumeratedSiteLocation.php
[edit]
[-] SubjectRightsRequestHistory.php
[edit]
[-] SubjectRightsRequestMailboxLocation.php
[edit]
[-] SubjectRightsRequestSiteLocation.php
[edit]
[-] SubjectRightsRequestStage.php
[edit]
[-] SubjectRightsRequestStageDetail.php
[edit]
[-] SubjectRightsRequestStageStatus.php
[edit]
[-] SubjectRightsRequestStatus.php
[edit]
[-] SubjectRightsRequestType.php
[edit]
[-] SubscribeToToneOperation.php
[edit]
[-] SubscribedSku.php
[edit]
[-] Subscription.php
[edit]
[-] SuggestedEnrollmentLimit.php
[edit]
[-] SupportedClaimConfiguration.php
[edit]
[-] SwapShiftsChangeRequest.php
[edit]
[-] SymantecCodeSigningCertificate.php
[edit]
[-] Synchronization.php
[edit]
[-] SynchronizationError.php
[edit]
[-] SynchronizationJob.php
[edit]
[-] SynchronizationJobApplicationParameters.php
[edit]
[-] SynchronizationJobRestartCriteria.php
[edit]
[-] SynchronizationJobRestartScope.php
[edit]
[-] SynchronizationJobSubject.php
[edit]
[-] SynchronizationLinkedObjects.php
[edit]
[-] SynchronizationProgress.php
[edit]
[-] SynchronizationQuarantine.php
[edit]
[-] SynchronizationRule.php
[edit]
[-] SynchronizationSchedule.php
[edit]
[-] SynchronizationScheduleState.php
[edit]
[-] SynchronizationSchema.php
[edit]
[-] SynchronizationSecret.php
[edit]
[-] SynchronizationSecretKeyStringValuePair.php
[edit]
[-] SynchronizationStatus.php
[edit]
[-] SynchronizationStatusCode.php
[edit]
[-] SynchronizationTaskExecution.php
[edit]
[-] SynchronizationTaskExecutionResult.php
[edit]
[-] SynchronizationTemplate.php
[edit]
[-] SystemFacet.php
[edit]
[-] TabUpdatedEventMessageDetail.php
[edit]
[-] TargetPolicyEndpoints.php
[edit]
[-] TargetResource.php
[edit]
[-] TargetedManagedAppConfiguration.php
[edit]
[-] TargetedManagedAppConfigurationPolicySetItem.php
[edit]
[-] TargetedManagedAppGroupType.php
[edit]
[-] TargetedManagedAppPolicyAssignment.php
[edit]
[-] TargetedManagedAppProtection.php
[edit]
[-] Task.php
[edit]
[-] TaskFileAttachment.php
[edit]
[-] TaskList.php
[edit]
[-] TaskStatus.php
[edit]
[-] TaskStatus_v2.php
[edit]
[-] TaskViewpoint.php
[edit]
[-] Tasks.php
[edit]
[-] TaxArea.php
[edit]
[-] TaxGroup.php
[edit]
[-] Team.php
[edit]
[-] TeamArchivedEventMessageDetail.php
[edit]
[-] TeamClassSettings.php
[edit]
[-] TeamCreatedEventMessageDetail.php
[edit]
[-] TeamDescriptionUpdatedEventMessageDetail.php
[edit]
[-] TeamDiscoverySettings.php
[edit]
[-] TeamFunSettings.php
[edit]
[-] TeamGuestSettings.php
[edit]
[-] TeamInfo.php
[edit]
[-] TeamJoiningDisabledEventMessageDetail.php
[edit]
[-] TeamJoiningEnabledEventMessageDetail.php
[edit]
[-] TeamMemberSettings.php
[edit]
[-] TeamMembersNotificationRecipient.php
[edit]
[-] TeamMessagingSettings.php
[edit]
[-] TeamRenamedEventMessageDetail.php
[edit]
[-] TeamSpecialization.php
[edit]
[-] TeamSummary.php
[edit]
[-] TeamUnarchivedEventMessageDetail.php
[edit]
[-] TeamVisibilityType.php
[edit]
[-] TeamsApp.php
[edit]
[-] TeamsAppDefinition.php
[edit]
[-] TeamsAppDistributionMethod.php
[edit]
[-] TeamsAppIcon.php
[edit]
[-] TeamsAppInstallation.php
[edit]
[-] TeamsAppInstallationScopes.php
[edit]
[-] TeamsAppInstalledEventMessageDetail.php
[edit]
[-] TeamsAppPublishingState.php
[edit]
[-] TeamsAppRemovedEventMessageDetail.php
[edit]
[-] TeamsAppSettings.php
[edit]
[-] TeamsAppUpgradedEventMessageDetail.php
[edit]
[-] TeamsAsyncOperation.php
[edit]
[-] TeamsAsyncOperationStatus.php
[edit]
[-] TeamsAsyncOperationType.php
[edit]
[-] TeamsTab.php
[edit]
[-] TeamsTabConfiguration.php
[edit]
[-] TeamsTemplate.php
[edit]
[-] Teamwork.php
[edit]
[-] TeamworkAccountConfiguration.php
[edit]
[-] TeamworkActivePeripherals.php
[edit]
[-] TeamworkActivityTopic.php
[edit]
[-] TeamworkActivityTopicSource.php
[edit]
[-] TeamworkApplicationIdentity.php
[edit]
[-] TeamworkApplicationIdentityType.php
[edit]
[-] TeamworkBot.php
[edit]
[-] TeamworkCallEventType.php
[edit]
[-] TeamworkCameraConfiguration.php
[edit]
[-] TeamworkConfiguredPeripheral.php
[edit]
[-] TeamworkConnection.php
[edit]
[-] TeamworkConnectionStatus.php
[edit]
[-] TeamworkContentCameraConfiguration.php
[edit]
[-] TeamworkConversationIdentity.php
[edit]
[-] TeamworkConversationIdentityType.php
[edit]
[-] TeamworkDateTimeConfiguration.php
[edit]
[-] TiAction.php
[edit]
[-] TeamworkDevice.php
[edit]
[-] TeamworkDeviceActivity.php
[edit]
[-] TeamworkDeviceActivityState.php
[edit]
[-] TeamworkDeviceConfiguration.php
[edit]
[-] TeamworkDeviceHealth.php
[edit]
[-] TeamworkDeviceHealthStatus.php
[edit]
[-] TeamworkDeviceOperation.php
[edit]
[-] TeamworkDeviceOperationType.php
[edit]
[-] TeamworkDeviceSoftwareVersions.php
[edit]
[-] TeamworkDeviceType.php
[edit]
[-] TeamworkDisplayConfiguration.php
[edit]
[-] TeamworkDisplayScreenConfiguration.php
[edit]
[-] TeamworkFeaturesConfiguration.php
[edit]
[-] TeamworkHardwareConfiguration.php
[edit]
[-] TeamworkHardwareDetail.php
[edit]
[-] TeamworkHardwareHealth.php
[edit]
[-] TeamworkHostedContent.php
[edit]
[-] TeamworkLoginStatus.php
[edit]
[-] TeamworkMicrophoneConfiguration.php
[edit]
[-] TeamworkNetworkConfiguration.php
[edit]
[-] TeamworkNotificationRecipient.php
[edit]
[-] TeamworkOnPremisesCalendarSyncConfiguration.php
[edit]
[-] TeamworkOnlineMeetingInfo.php
[edit]
[-] TeamworkPeripheral.php
[edit]
[-] TeamworkPeripheralHealth.php
[edit]
[-] TeamworkPeripheralsHealth.php
[edit]
[-] TeamworkSoftwareFreshness.php
[edit]
[-] TeamworkSoftwareType.php
[edit]
[-] TeamworkSoftwareUpdateHealth.php
[edit]
[-] TeamworkSoftwareUpdateStatus.php
[edit]
[-] TeamworkSpeakerConfiguration.php
[edit]
[-] TeamworkSupportedClient.php
[edit]
[-] TeamworkSystemConfiguration.php
[edit]
[-] TeamworkTag.php
[edit]
[-] TeamworkTagIdentity.php
[edit]
[-] TeamworkTagMember.php
[edit]
[-] TeamworkTagType.php
[edit]
[-] TeamworkTeamsClientConfiguration.php
[edit]
[-] TeamworkUserIdentity.php
[edit]
[-] TeamworkUserIdentityType.php
[edit]
[-] TelecomExpenseManagementPartner.php
[edit]
[-] TeleconferenceDeviceAudioQuality.php
[edit]
[-] TeleconferenceDeviceMediaQuality.php
[edit]
[-] TeleconferenceDeviceQuality.php
[edit]
[-] TeleconferenceDeviceScreenSharingQuality.php
[edit]
[-] TeleconferenceDeviceVideoQuality.php
[edit]
[-] TemporaryAccessPassAuthenticationMethod.php
[edit]
[-] TemporaryAccessPassAuthenticationMethodConfiguration.php
[edit]
[-] TenantAppManagementPolicy.php
[edit]
[-] TenantAttachRBAC.php
[edit]
[-] TenantAttachRBACState.php
[edit]
[-] TenantReference.php
[edit]
[-] TenantRelationship.php
[edit]
[-] TenantRelationshipAccessPolicyBase.php
[edit]
[-] TenantSetupInfo.php
[edit]
[-] TermColumn.php
[edit]
[-] TermsAndConditions.php
[edit]
[-] TermsAndConditionsAcceptanceStatus.php
[edit]
[-] TermsAndConditionsAssignment.php
[edit]
[-] TermsAndConditionsGroupAssignment.php
[edit]
[-] TermsExpiration.php
[edit]
[-] TermsOfUseContainer.php
[edit]
[-] TextClassificationRequest.php
[edit]
[-] TextColumn.php
[edit]
[-] ThreatAssessmentContentType.php
[edit]
[-] ThreatAssessmentRequest.php
[edit]
[-] ThreatAssessmentRequestPivotProperty.php
[edit]
[-] ThreatAssessmentRequestSource.php
[edit]
[-] ThreatAssessmentRequestsCount.php
[edit]
[-] ThreatAssessmentResult.php
[edit]
[-] ThreatAssessmentResultType.php
[edit]
[-] ThreatAssessmentStatus.php
[edit]
[-] ThreatCategory.php
[edit]
[-] ThreatExpectedAssessment.php
[edit]
[-] Thumbnail.php
[edit]
[-] ThumbnailColumn.php
[edit]
[-] ThumbnailSet.php
[edit]
[-] TiIndicator.php
[edit]
[-] TicketInfo.php
[edit]
[-] TimeCard.php
[edit]
[-] TimeCardBreak.php
[edit]
[-] TimeCardEntry.php
[edit]
[-] TimeCardEvent.php
[edit]
[-] TimeCardState.php
[edit]
[-] TimeClockSettings.php
[edit]
[-] TimeConstraint.php
[edit]
[-] TimeOff.php
[edit]
[-] TimeOffItem.php
[edit]
[-] TimeOffReason.php
[edit]
[-] TimeOffReasonIconType.php
[edit]
[-] TimeOffRequest.php
[edit]
[-] TimeRange.php
[edit]
[-] TimeSeriesParameter.php
[edit]
[-] TimeSlot.php
[edit]
[-] TimeZoneBase.php
[edit]
[-] TimeZoneInformation.php
[edit]
[-] TlpLevel.php
[edit]
[-] TimeZoneStandard.php
[edit]
[-] Todo.php
[edit]
[-] TodoTask.php
[edit]
[-] TodoTaskList.php
[edit]
[-] TokenIssuancePolicy.php
[edit]
[-] TokenIssuerType.php
[edit]
[-] TokenLifetimePolicy.php
[edit]
[-] TokenMeetingInfo.php
[edit]
[-] Tone.php
[edit]
[-] ToneInfo.php
[edit]
[-] TrainingEventsContent.php
[edit]
[-] TrainingStatus.php
[edit]
[-] TranslationBehavior.php
[edit]
[-] TranslationLanguageOverride.php
[edit]
[-] TranslationPreferences.php
[edit]
[-] Trending.php
[edit]
[-] TrustFramework.php
[edit]
[-] TrustFrameworkKey.php
[edit]
[-] TrustFrameworkKeySet.php
[edit]
[-] TrustFrameworkPolicy.php
[edit]
[-] TypedEmailAddress.php
[edit]
[-] UnifiedRbacResourceAction.php
[edit]
[-] UnifiedRbacResourceNamespace.php
[edit]
[-] UnifiedRbacResourceScope.php
[edit]
[-] UnifiedRole.php
[edit]
[-] UnifiedRoleAssignment.php
[edit]
[-] UnifiedRoleAssignmentMultiple.php
[edit]
[-] UnifiedRoleAssignmentSchedule.php
[edit]
[-] UnifiedRoleAssignmentScheduleInstance.php
[edit]
[-] UnifiedRoleAssignmentScheduleRequest.php
[edit]
[-] UnifiedRoleDefinition.php
[edit]
[-] UnifiedRoleEligibilitySchedule.php
[edit]
[-] UnifiedRoleEligibilityScheduleInstance.php
[edit]
[-] UnifiedRoleEligibilityScheduleRequest.php
[edit]
[-] UnifiedRoleManagementPolicy.php
[edit]
[-] UnifiedRoleManagementPolicyApprovalRule.php
[edit]
[-] UnifiedRoleManagementPolicyAssignment.php
[edit]
[-] UnifiedRoleManagementPolicyAuthenticationContextRule.php
[edit]
[-] UnifiedRoleManagementPolicyEnablementRule.php
[edit]
[-] UnifiedRoleManagementPolicyExpirationRule.php
[edit]
[-] UnifiedRoleManagementPolicyNotificationRule.php
[edit]
[-] UnifiedRoleManagementPolicyRule.php
[edit]
[-] UnifiedRoleManagementPolicyRuleTarget.php
[edit]
[-] UnifiedRolePermission.php
[edit]
[-] UnifiedRoleScheduleBase.php
[edit]
[-] UnifiedRoleScheduleInstanceBase.php
[edit]
[-] UnitOfMeasure.php
[edit]
[-] UnmanagedDevice.php
[edit]
[-] UnmanagedDeviceDiscoveryTask.php
[edit]
[-] UnmuteParticipantOperation.php
[edit]
[-] UnsupportedDeviceConfiguration.php
[edit]
[-] UnsupportedDeviceConfigurationDetail.php
[edit]
[-] UnsupportedGroupPolicyExtension.php
[edit]
[-] UpdateClassification.php
[edit]
[-] UpdateRecordingStatusOperation.php
[edit]
[-] UpdateWindow.php
[edit]
[-] UpdateWindowsDeviceAccountActionParameter.php
[edit]
[-] UploadSession.php
[edit]
[-] UriClickSecurityState.php
[edit]
[-] UrlAssessmentRequest.php
[edit]
[-] UsageAuthMethod.php
[edit]
[-] UsageDetails.php
[edit]
[-] UsageRight.php
[edit]
[-] UsageRightState.php
[edit]
[-] UsedInsight.php
[edit]
[-] User.php
[edit]
[-] UserAccount.php
[edit]
[-] UserAccountInformation.php
[edit]
[-] UserAccountSecurityType.php
[edit]
[-] UserActivity.php
[edit]
[-] UserAnalytics.php
[edit]
[-] UserAppInstallStatus.php
[edit]
[-] UserAttributeValuesItem.php
[edit]
[-] UserConfiguration.php
[edit]
[-] UserConsentRequest.php
[edit]
[-] UserCredentialUsageDetails.php
[edit]
[-] UserEmailSource.php
[edit]
[-] UserExperienceAnalyticsAppHealthAppPerformanceByAppVersion.php
[edit]
[-] UserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails.php
[edit]
[-] UserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId.php
[edit]
[-] UserExperienceAnalyticsAppHealthAppPerformanceByOSVersion.php
[edit]
[-] UserExperienceAnalyticsAppHealthApplicationPerformance.php
[edit]
[-] UserExperienceAnalyticsAppHealthDeviceModelPerformance.php
[edit]
[-] UserExperienceAnalyticsAppHealthDevicePerformance.php
[edit]
[-] UserExperienceAnalyticsAppHealthDevicePerformanceDetails.php
[edit]
[-] UserExperienceAnalyticsAppHealthOSVersionPerformance.php
[edit]
[-] UserExperienceAnalyticsAutopilotDevicesSummary.php
[edit]
[-] UserExperienceAnalyticsBaseline.php
[edit]
[-] UserSet.php
[edit]
[-] UserExperienceAnalyticsBatteryHealthAppImpact.php
[edit]
[-] UserExperienceAnalyticsBatteryHealthCapacityDetails.php
[edit]
[-] UserExperienceAnalyticsBatteryHealthDeviceAppImpact.php
[edit]
[-] UserExperienceAnalyticsBatteryHealthDevicePerformance.php
[edit]
[-] UserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory.php
[edit]
[-] UserExperienceAnalyticsBatteryHealthModelPerformance.php
[edit]
[-] UserExperienceAnalyticsBatteryHealthOsPerformance.php
[edit]
[-] UserExperienceAnalyticsBatteryHealthRuntimeDetails.php
[edit]
[-] UserExperienceAnalyticsCategory.php
[edit]
[-] UserExperienceAnalyticsCloudIdentityDevicesSummary.php
[edit]
[-] UserExperienceAnalyticsCloudManagementDevicesSummary.php
[edit]
[-] UserExperienceAnalyticsDevicePerformance.php
[edit]
[-] UserExperienceAnalyticsDeviceScope.php
[edit]
[-] UserExperienceAnalyticsDeviceScores.php
[edit]
[-] UserExperienceAnalyticsDeviceStartupHistory.php
[edit]
[-] UserExperienceAnalyticsDeviceStartupProcess.php
[edit]
[-] UserExperienceAnalyticsDeviceStartupProcessPerformance.php
[edit]
[-] UserExperienceAnalyticsDeviceWithoutCloudIdentity.php
[edit]
[-] UserExperienceAnalyticsHealthState.php
[edit]
[-] UserExperienceAnalyticsImpactingProcess.php
[edit]
[-] UserExperienceAnalyticsInsight.php
[edit]
[-] UserExperienceAnalyticsInsightSeverity.php
[edit]
[-] UserExperienceAnalyticsInsightValue.php
[edit]
[-] UserExperienceAnalyticsMetric.php
[edit]
[-] UserExperienceAnalyticsMetricHistory.php
[edit]
[-] UserExperienceAnalyticsModelScores.php
[edit]
[-] UserExperienceAnalyticsNotAutopilotReadyDevice.php
[edit]
[-] UserExperienceAnalyticsOperatingSystemRestartCategory.php
[edit]
[-] UserExperienceAnalyticsOverview.php
[edit]
[-] UserExperienceAnalyticsRegressionSummary.php
[edit]
[-] UserExperienceAnalyticsRemoteConnection.php
[edit]
[-] UserExperienceAnalyticsResourcePerformance.php
[edit]
[-] UserExperienceAnalyticsScoreHistory.php
[edit]
[-] UserExperienceAnalyticsSettings.php
[edit]
[-] UserExperienceAnalyticsSummarizedBy.php
[edit]
[-] UserExperienceAnalyticsWindows10DevicesSummary.php
[edit]
[-] UserExperienceAnalyticsWorkFromAnywhereDevice.php
[edit]
[-] UserExperienceAnalyticsWorkFromAnywhereDevicesSummary.php
[edit]
[-] UserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric.php
[edit]
[-] UserExperienceAnalyticsWorkFromAnywhereMetric.php
[edit]
[-] UserExperienceAnalyticsWorkFromAnywhereModelPerformance.php
[edit]
[-] UserFlowApiConnectorConfiguration.php
[edit]
[-] UserFlowLanguageConfiguration.php
[edit]
[-] UserFlowLanguagePage.php
[edit]
[-] UserFlowType.php
[edit]
[-] UserGovernanceCriteria.php
[edit]
[-] UserIdentity.php
[edit]
[-] UserInsightsSettings.php
[edit]
[-] UserInstallStateSummary.php
[edit]
[-] UserLastSignInRecommendationInsightSetting.php
[edit]
[-] UserNewMessageRestriction.php
[edit]
[-] UserPFXCertificate.php
[edit]
[-] UserPfxIntendedPurpose.php
[edit]
[-] UserPfxPaddingScheme.php
[edit]
[-] UserPrint.php
[edit]
[-] UserPrintUsageSummary.php
[edit]
[-] UserPurpose.php
[edit]
[-] UserRegistrationCount.php
[edit]
[-] UserRegistrationDetails.php
[edit]
[-] UserRegistrationFeatureCount.php
[edit]
[-] UserRegistrationFeatureSummary.php
[edit]
[-] UserRegistrationMethodCount.php
[edit]
[-] UserRegistrationMethodSummary.php
[edit]
[-] UserScopeTeamsAppInstallation.php
[edit]
[-] UserSecurityProfile.php
[edit]
[-] UserSecurityState.php
[edit]
[-] UserSettings.php
[edit]
[-] UserSignInInsight.php
[edit]
[-] UserSignInRecommendationScope.php
[edit]
[-] UserSimulationDetails.php
[edit]
[-] UserSimulationEventInfo.php
[edit]
[-] UserTeamwork.php
[edit]
[-] UserTrainingContentEventInfo.php
[edit]
[-] UserTrainingEventInfo.php
[edit]
[-] UserTrainingStatusInfo.php
[edit]
[-] UsernameSource.php
[edit]
[-] ValidationResult.php
[edit]
[-] Vendor.php
[edit]
[-] VerificationResult.php
[edit]
[-] VerifiedCustomDomainCertificatesMetadata.php
[edit]
[-] VerifiedDomain.php
[edit]
[-] VerifiedPublisher.php
[edit]
[-] VersionAction.php
[edit]
[-] Video.php
[edit]
[-] VirtualEndpoint.php
[edit]
[-] VisibilitySetting.php
[edit]
[-] VisualInfo.php
[edit]
[-] VisualProperties.php
[edit]
[-] VolumeType.php
[edit]
[-] VpnAuthenticationMethod.php
[edit]
[-] VpnClientAuthenticationType.php
[edit]
[-] VpnConfiguration.php
[edit]
[-] VpnDeadPeerDetectionRate.php
[edit]
[-] VpnDnsRule.php
[edit]
[-] VpnEncryptionAlgorithmType.php
[edit]
[-] VpnIntegrityAlgorithmType.php
[edit]
[-] VpnLocalIdentifier.php
[edit]
[-] VpnOnDemandRule.php
[edit]
[-] VpnOnDemandRuleConnectionAction.php
[edit]
[-] VpnOnDemandRuleConnectionDomainAction.php
[edit]
[-] VpnProviderType.php
[edit]
[-] VpnProxyServer.php
[edit]
[-] VpnRoute.php
[edit]
[-] VpnServer.php
[edit]
[-] VpnServerCertificateType.php
[edit]
[-] VpnServiceExceptionAction.php
[edit]
[-] VpnTrafficRule.php
[edit]
[-] VpnTrafficRuleAppType.php
[edit]
[-] VpnTrafficRuleRoutingPolicyType.php
[edit]
[-] VpnTunnelConfigurationType.php
[edit]
[-] VppLicensingType.php
[edit]
[-] VppToken.php
[edit]
[-] VppTokenAccountType.php
[edit]
[-] VppTokenActionFailureReason.php
[edit]
[-] VppTokenActionResult.php
[edit]
[-] VppTokenLicenseSummary.php
[edit]
[-] VppTokenRevokeLicensesActionResult.php
[edit]
[-] VppTokenState.php
[edit]
[-] VppTokenSyncStatus.php
[edit]
[-] VulnerabilityState.php
[edit]
[-] VulnerableManagedDevice.php
[edit]
[-] WarrantyOffer.php
[edit]
[-] WarrantyType.php
[edit]
[-] WatermarkLayout.php
[edit]
[-] WebAccount.php
[edit]
[-] WebApp.php
[edit]
[-] WebApplication.php
[edit]
[-] WebBrowserCookieSettings.php
[edit]
[-] WebPart.php
[edit]
[-] Website.php
[edit]
[-] WebsiteType.php
[edit]
[-] WeekIndex.php
[edit]
[-] WeeklySchedule.php
[edit]
[-] WelcomeScreenMeetingInformation.php
[edit]
[-] WellKnownListName_v2.php
[edit]
[-] WellKnownTaskList.php
[edit]
[-] WellknownListName.php
[edit]
[-] WiFiAuthenticationMethod.php
[edit]
[-] WiFiProxySetting.php
[edit]
[-] WiFiSecurityType.php
[edit]
[-] WifiAuthenticationType.php
[edit]
[-] Win32LobApp.php
[edit]
[-] Win32LobAppAssignmentSettings.php
[edit]
[-] Win32LobAppDeliveryOptimizationPriority.php
[edit]
[-] Win32LobAppDetection.php
[edit]
[-] Win32LobAppDetectionOperator.php
[edit]
[-] Win32LobAppFileSystemDetection.php
[edit]
[-] Win32LobAppFileSystemDetectionType.php
[edit]
[-] Win32LobAppFileSystemOperationType.php
[edit]
[-] Win32LobAppFileSystemRequirement.php
[edit]
[-] Win32LobAppFileSystemRule.php
[edit]
[-] Win32LobAppInstallExperience.php
[edit]
[-] Win32LobAppMsiInformation.php
[edit]
[-] Win32LobAppMsiPackageType.php
[edit]
[-] Win32LobAppNotification.php
[edit]
[-] Win32LobAppPowerShellScriptDetection.php
[edit]
[-] Win32LobAppPowerShellScriptDetectionType.php
[edit]
[-] Win32LobAppPowerShellScriptRequirement.php
[edit]
[-] Win32LobAppPowerShellScriptRule.php
[edit]
[-] Win32LobAppPowerShellScriptRuleOperationType.php
[edit]
[-] Win32LobAppProductCodeDetection.php
[edit]
[-] Win32LobAppProductCodeRule.php
[edit]
[-] Win32LobAppRegistryDetection.php
[edit]
[-] Win32LobAppRegistryDetectionType.php
[edit]
[-] Win32LobAppRegistryRequirement.php
[edit]
[-] Win32LobAppRegistryRule.php
[edit]
[-] Win32LobAppRegistryRuleOperationType.php
[edit]
[-] Win32LobAppRequirement.php
[edit]
[-] Win32LobAppRestartBehavior.php
[edit]
[-] Win32LobAppRestartSettings.php
[edit]
[-] Win32LobAppReturnCode.php
[edit]
[-] Win32LobAppReturnCodeType.php
[edit]
[-] Win32LobAppRule.php
[edit]
[-] Win32LobAppRuleOperator.php
[edit]
[-] Win32LobAppRuleType.php
[edit]
[-] Windows10AppType.php
[edit]
[-] Windows10AppsForceUpdateSchedule.php
[edit]
[-] Windows10AppsUpdateRecurrence.php
[edit]
[-] Windows10AssociatedApps.php
[edit]
[-] Windows10CertificateProfileBase.php
[edit]
[-] Windows10CompliancePolicy.php
[edit]
[-] Windows10CustomConfiguration.php
[edit]
[-] Windows10DeviceFirmwareConfigurationInterface.php
[edit]
[-] Windows10DeviceModeType.php
[edit]
[-] Windows10EasEmailProfileConfiguration.php
[edit]
[-] Windows10EditionType.php
[edit]
[-] Windows10EndpointProtectionConfiguration.php
[edit]
[-] Windows10EnrollmentCompletionPageConfiguration.php
[edit]
[-] Windows10EnrollmentCompletionPageConfigurationPolicySetItem.php
[edit]
[-] Windows10EnterpriseModernAppManagementConfiguration.php
[edit]
[-] Windows10GeneralConfiguration.php
[edit]
[-] Windows10ImportedPFXCertificateProfile.php
[edit]
[-] Windows10MobileCompliancePolicy.php
[edit]
[-] Windows10NetworkBoundaryConfiguration.php
[edit]
[-] Windows10NetworkProxyServer.php
[edit]
[-] Windows10PFXImportCertificateProfile.php
[edit]
[-] Windows10PkcsCertificateProfile.php
[edit]
[-] Windows10SecureAssessmentConfiguration.php
[edit]
[-] Windows10TeamGeneralConfiguration.php
[edit]
[-] Windows10VpnAuthenticationMethod.php
[edit]
[-] Windows10VpnConfiguration.php
[edit]
[-] Windows10VpnConnectionType.php
[edit]
[-] Windows10VpnProfileTarget.php
[edit]
[-] Windows10VpnProxyServer.php
[edit]
[-] Windows10XCertificateProfile.php
[edit]
[-] Windows10XCustomSubjectAlternativeName.php
[edit]
[-] Windows10XSCEPCertificateProfile.php
[edit]
[-] Windows10XTrustedRootCertificate.php
[edit]
[-] Windows10XVpnConfiguration.php
[edit]
[-] Windows10XWifiConfiguration.php
[edit]
[-] Windows81CertificateProfileBase.php
[edit]
[-] Windows81CompliancePolicy.php
[edit]
[-] Windows81GeneralConfiguration.php
[edit]
[-] Windows81SCEPCertificateProfile.php
[edit]
[-] Windows81TrustedRootCertificate.php
[edit]
[-] Windows81VpnConfiguration.php
[edit]
[-] Windows81VpnProxyServer.php
[edit]
[-] Windows81WifiImportConfiguration.php
[edit]
[-] WindowsAppIdentifier.php
[edit]
[-] WindowsAppStartLayoutTileSize.php
[edit]
[-] WindowsAppX.php
[edit]
[-] WindowsAppXAppAssignmentSettings.php
[edit]
[-] WindowsApplication.php
[edit]
[-] WindowsArchitecture.php
[edit]
[-] WindowsAssignedAccessProfile.php
[edit]
[-] WindowsAutopilotDeploymentProfile.php
[edit]
[-] WindowsAutopilotDeploymentProfileAssignment.php
[edit]
[-] WindowsAutopilotDeploymentProfilePolicySetItem.php
[edit]
[-] WindowsAutopilotDeploymentState.php
[edit]
[-] WindowsAutopilotDeviceIdentity.php
[edit]
[-] WindowsAutopilotDeviceRemediationState.php
[edit]
[-] WindowsAutopilotDeviceType.php
[edit]
[-] WindowsAutopilotEnrollmentType.php
[edit]
[-] WindowsAutopilotProfileAssignmentDetailedStatus.php
[edit]
[-] WindowsAutopilotProfileAssignmentStatus.php
[edit]
[-] WindowsAutopilotSettings.php
[edit]
[-] WindowsAutopilotSyncStatus.php
[edit]
[-] WindowsCertificateProfileBase.php
[edit]
[-] WindowsDefenderAdvancedThreatProtectionConfiguration.php
[edit]
[-] WindowsDefenderApplicationControlSupplementalPolicy.php
[edit]
[-] WindowsDefenderApplicationControlSupplementalPolicyAssignment.php
[edit]
[-] WindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus.php
[edit]
[-] WindowsDefenderApplicationControlSupplementalPolicyDeploymentSummary.php
[edit]
[-] WindowsDefenderApplicationControlSupplementalPolicyStatuses.php
[edit]
[-] WindowsDefenderProductStatus.php
[edit]
[-] WindowsDefenderScanActionResult.php
[edit]
[-] WindowsDefenderTamperProtectionOptions.php
[edit]
[-] WindowsDeliveryOptimizationConfiguration.php
[edit]
[-] WindowsDeliveryOptimizationMode.php
[edit]
[-] WindowsDeviceADAccount.php
[edit]
[-] WindowsDeviceAccount.php
[edit]
[-] WindowsDeviceAzureADAccount.php
[edit]
[-] Workbook.php
[edit]
[-] WindowsDeviceHealthState.php
[edit]
[-] WindowsDeviceMalwareState.php
[edit]
[-] WindowsDeviceType.php
[edit]
[-] WindowsDeviceUsageType.php
[edit]
[-] WindowsDomainJoinConfiguration.php
[edit]
[-] WindowsDriverUpdateInventory.php
[edit]
[-] WindowsDriverUpdateProfile.php
[edit]
[-] WindowsDriverUpdateProfileAssignment.php
[edit]
[-] WindowsDriverUpdateProfileInventorySyncState.php
[edit]
[-] WindowsDriverUpdateProfileInventorySyncStatus.php
[edit]
[-] WindowsEdgeKioskType.php
[edit]
[-] WindowsEnrollmentStatusScreenSettings.php
[edit]
[-] WindowsFeatureUpdateCatalogItem.php
[edit]
[-] WindowsFeatureUpdateProfile.php
[edit]
[-] WindowsFeatureUpdateProfileAssignment.php
[edit]
[-] WindowsFirewallNetworkProfile.php
[edit]
[-] WindowsFirewallRule.php
[edit]
[-] WindowsFirewallRuleInterfaceTypes.php
[edit]
[-] WindowsFirewallRuleNetworkProfileTypes.php
[edit]
[-] WindowsFirewallRuleTrafficDirectionType.php
[edit]
[-] WindowsHealthMonitoringConfiguration.php
[edit]
[-] WindowsHealthMonitoringScope.php
[edit]
[-] WindowsHelloForBusinessAuthenticationMethod.php
[edit]
[-] WindowsHelloForBusinessPinUsage.php
[edit]
[-] WindowsIdentityProtectionConfiguration.php
[edit]
[-] WindowsInformationProtection.php
[edit]
[-] WindowsInformationProtectionApp.php
[edit]
[-] WindowsInformationProtectionAppLearningSummary.php
[edit]
[-] WindowsInformationProtectionAppLockerFile.php
[edit]
[-] WindowsInformationProtectionDataRecoveryCertificate.php
[edit]
[-] WindowsInformationProtectionDesktopApp.php
[edit]
[-] WindowsInformationProtectionDeviceRegistration.php
[edit]
[-] WindowsInformationProtectionEnforcementLevel.php
[edit]
[-] WindowsInformationProtectionIPRangeCollection.php
[edit]
[-] WindowsInformationProtectionNetworkLearningSummary.php
[edit]
[-] WindowsInformationProtectionPinCharacterRequirements.php
[edit]
[-] WindowsInformationProtectionPolicy.php
[edit]
[-] WindowsInformationProtectionProxiedDomainCollection.php
[edit]
[-] WindowsInformationProtectionResourceCollection.php
[edit]
[-] WindowsInformationProtectionStoreApp.php
[edit]
[-] WindowsInformationProtectionWipeAction.php
[edit]
[-] WindowsKioskActiveDirectoryGroup.php
[edit]
[-] WindowsKioskAppBase.php
[edit]
[-] WindowsKioskAppConfiguration.php
[edit]
[-] WindowsKioskAppType.php
[edit]
[-] WindowsKioskAutologon.php
[edit]
[-] WindowsKioskAzureADGroup.php
[edit]
[-] WindowsKioskAzureADUser.php
[edit]
[-] WindowsKioskConfiguration.php
[edit]
[-] WindowsKioskDesktopApp.php
[edit]
[-] WindowsKioskForceUpdateSchedule.php
[edit]
[-] WindowsKioskLocalGroup.php
[edit]
[-] WindowsKioskLocalUser.php
[edit]
[-] WindowsKioskMultipleApps.php
[edit]
[-] WindowsKioskProfile.php
[edit]
[-] WindowsKioskSingleUWPApp.php
[edit]
[-] WindowsKioskSingleWin32App.php
[edit]
[-] WindowsKioskUWPApp.php
[edit]
[-] WindowsKioskUser.php
[edit]
[-] WindowsKioskVisitor.php
[edit]
[-] WindowsKioskWin32App.php
[edit]
[-] WindowsMalwareCategory.php
[edit]
[-] WindowsMalwareCategoryCount.php
[edit]
[-] WindowsMalwareExecutionState.php
[edit]
[-] WindowsMalwareExecutionStateCount.php
[edit]
[-] WindowsMalwareInformation.php
[edit]
[-] WindowsMalwareNameCount.php
[edit]
[-] WindowsMalwareOverview.php
[edit]
[-] WindowsMalwareSeverity.php
[edit]
[-] WindowsMalwareSeverityCount.php
[edit]
[-] WindowsMalwareState.php
[edit]
[-] WindowsMalwareStateCount.php
[edit]
[-] WindowsMalwareThreatState.php
[edit]
[-] WindowsManagedAppClipboardSharingLevel.php
[edit]
[-] WindowsManagedAppDataTransferLevel.php
[edit]
[-] WindowsManagedAppProtection.php
[edit]
[-] WindowsManagedDevice.php
[edit]
[-] WindowsManagementApp.php
[edit]
[-] WindowsManagementAppHealthState.php
[edit]
[-] WindowsManagementAppHealthSummary.php
[edit]
[-] WindowsMicrosoftEdgeApp.php
[edit]
[-] WindowsMinimumOperatingSystem.php
[edit]
[-] WindowsMobileMSI.php
[edit]
[-] WindowsNetworkIsolationPolicy.php
[edit]
[-] WindowsOfficeClientConfiguration.php
[edit]
[-] WindowsOfficeClientSecurityConfiguration.php
[edit]
[-] WindowsPackageInformation.php
[edit]
[-] WindowsPhone81AppX.php
[edit]
[-] WindowsPhone81AppXBundle.php
[edit]
[-] WindowsPhone81CertificateProfileBase.php
[edit]
[-] WindowsPhone81CompliancePolicy.php
[edit]
[-] WindowsPhone81CustomConfiguration.php
[edit]
[-] WindowsPhone81GeneralConfiguration.php
[edit]
[-] WindowsPhone81ImportedPFXCertificateProfile.php
[edit]
[-] WindowsPhone81SCEPCertificateProfile.php
[edit]
[-] WindowsPhone81StoreApp.php
[edit]
[-] WindowsPhone81TrustedRootCertificate.php
[edit]
[-] WindowsPhone81VpnConfiguration.php
[edit]
[-] WindowsPhoneEASEmailProfileConfiguration.php
[edit]
[-] WindowsPhoneXAP.php
[edit]
[-] WindowsPrivacyDataAccessControlItem.php
[edit]
[-] WindowsPrivacyDataAccessLevel.php
[edit]
[-] WindowsPrivacyDataCategory.php
[edit]
[-] WindowsProtectionState.php
[edit]
[-] WindowsQualityUpdateCatalogItem.php
[edit]
[-] WindowsQualityUpdateClassification.php
[edit]
[-] WindowsQualityUpdateProfile.php
[edit]
[-] WindowsQualityUpdateProfileAssignment.php
[edit]
[-] WindowsSModeConfiguration.php
[edit]
[-] WindowsSpotlightEnablementSettings.php
[edit]
[-] WindowsStartMenuAppListVisibilityType.php
[edit]
[-] WindowsStartMenuModeType.php
[edit]
[-] WindowsStoreApp.php
[edit]
[-] WindowsUniversalAppX.php
[edit]
[-] WindowsUniversalAppXAppAssignmentSettings.php
[edit]
[-] WindowsUniversalAppXContainedApp.php
[edit]
[-] WindowsUpdateActiveHoursInstall.php
[edit]
[-] WindowsUpdateCatalogItem.php
[edit]
[-] WindowsUpdateForBusinessConfiguration.php
[edit]
[-] WindowsUpdateForBusinessUpdateWeeks.php
[edit]
[-] WindowsUpdateInstallScheduleType.php
[edit]
[-] WindowsUpdateNotificationDisplayOption.php
[edit]
[-] WindowsUpdateRolloutSettings.php
[edit]
[-] WindowsUpdateScheduledInstall.php
[edit]
[-] WindowsUpdateState.php
[edit]
[-] WindowsUpdateStatus.php
[edit]
[-] WindowsUpdateType.php
[edit]
[-] WindowsUserAccountControlSettings.php
[edit]
[-] WindowsUserType.php
[edit]
[-] WindowsVpnConfiguration.php
[edit]
[-] WindowsVpnConnectionType.php
[edit]
[-] WindowsWebApp.php
[edit]
[-] WindowsWifiConfiguration.php
[edit]
[-] WindowsWifiEnterpriseEAPConfiguration.php
[edit]
[-] WindowsWiredNetworkConfiguration.php
[edit]
[-] WiredNetworkAuthenticationMethod.php
[edit]
[-] WiredNetworkAuthenticationType.php
[edit]
[-] WiredNetworkInterface.php
[edit]
[-] WorkPosition.php
[edit]
[-] WorkbookApplication.php
[edit]
[-] WorkbookChart.php
[edit]
[-] WorkbookChartAreaFormat.php
[edit]
[-] WorkbookChartAxes.php
[edit]
[-] WorkbookChartAxis.php
[edit]
[-] WorkbookChartAxisFormat.php
[edit]
[-] WorkbookChartAxisTitle.php
[edit]
[-] WorkbookChartAxisTitleFormat.php
[edit]
[-] WorkbookChartDataLabelFormat.php
[edit]
[-] WorkbookChartDataLabels.php
[edit]
[-] WorkbookChartFill.php
[edit]
[-] WorkbookChartFont.php
[edit]
[-] WorkbookChartGridlines.php
[edit]
[-] WorkbookChartGridlinesFormat.php
[edit]
[-] WorkbookChartLegend.php
[edit]
[-] WorkbookChartLegendFormat.php
[edit]
[-] WorkbookChartLineFormat.php
[edit]
[-] WorkbookChartPoint.php
[edit]
[-] WorkbookChartPointFormat.php
[edit]
[-] WorkbookChartSeries.php
[edit]
[-] WorkbookChartSeriesFormat.php
[edit]
[-] WorkbookChartTitle.php
[edit]
[-] WorkbookChartTitleFormat.php
[edit]
[-] WorkbookComment.php
[edit]
[-] WorkbookCommentReply.php
[edit]
[-] WorkbookFilter.php
[edit]
[-] WorkbookFilterCriteria.php
[edit]
[-] WorkbookFilterDatetime.php
[edit]
[-] WorkbookFormatProtection.php
[edit]
[-] WorkbookFunctionResult.php
[edit]
[-] WorkbookFunctions.php
[edit]
[-] WorkbookIcon.php
[edit]
[-] WorkbookNamedItem.php
[edit]
[-] WorkbookOperation.php
[edit]
[-] WorkbookOperationError.php
[edit]
[-] WorkbookOperationStatus.php
[edit]
[-] WorkbookPivotTable.php
[edit]
[-] WorkbookRange.php
[edit]
[-] WorkbookRangeBorder.php
[edit]
[-] WorkbookRangeFill.php
[edit]
[-] WorkbookRangeFont.php
[edit]
[-] WorkbookRangeFormat.php
[edit]
[-] WorkbookRangeReference.php
[edit]
[-] WorkbookRangeSort.php
[edit]
[-] WorkbookRangeView.php
[edit]
[-] WorkbookSessionInfo.php
[edit]
[-] WorkbookSortField.php
[edit]
[-] WorkbookTable.php
[edit]
[-] WorkbookTableColumn.php
[edit]
[-] WorkbookTableRow.php
[edit]
[-] WorkbookTableSort.php
[edit]
[-] WorkbookWorksheet.php
[edit]
[-] WorkbookWorksheetProtection.php
[edit]
[-] WorkbookWorksheetProtectionOptions.php
[edit]
[-] WorkforceIntegration.php
[edit]
[-] WorkforceIntegrationEncryption.php
[edit]
[-] WorkforceIntegrationEncryptionProtocol.php
[edit]
[-] WorkforceIntegrationSupportedEntities.php
[edit]
[-] WorkingHours.php
[edit]
[-] WritebackConfiguration.php
[edit]
[-] X509CertificateAuthenticationMethodConfiguration.php
[edit]
[-] X509CertificateAuthenticationMode.php
[edit]
[-] X509CertificateAuthenticationModeConfiguration.php
[edit]
[-] X509CertificateRule.php
[edit]
[-] X509CertificateRuleType.php
[edit]
[-] X509CertificateUserBinding.php
[edit]
[-] ZebraFotaArtifact.php
[edit]
[-] ZebraFotaConnector.php
[edit]
[-] ZebraFotaConnectorState.php
[edit]
[-] ZebraFotaDeployment.php
[edit]
[-] ZebraFotaDeploymentSettings.php
[edit]
[-] ZebraFotaDeploymentState.php
[edit]
[-] ZebraFotaDeploymentStatus.php
[edit]
[-] ZebraFotaNetworkType.php
[edit]
[-] ZebraFotaScheduleMode.php
[edit]
[-] ZebraFotaUpdateType.php
[edit]
[-] .htaccess.disabled
[edit]