ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * WindowsProtectionState File * PHP version 7 * * @category Library * @package Microsoft.Graph * @copyright (c) Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @link https://graph.microsoft.com */ namespace Microsoft\Graph\Model; /** * WindowsProtectionState 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 WindowsProtectionState extends Entity { /** * Gets the antiMalwareVersion * Current anti malware version * * @return string|null The antiMalwareVersion */ public function getAntiMalwareVersion() { if (array_key_exists("antiMalwareVersion", $this->_propDict)) { return $this->_propDict["antiMalwareVersion"]; } else { return null; } } /** * Sets the antiMalwareVersion * Current anti malware version * * @param string $val The antiMalwareVersion * * @return WindowsProtectionState */ public function setAntiMalwareVersion($val) { $this->_propDict["antiMalwareVersion"] = $val; return $this; } /** * Gets the deviceState * Indicates device's health state. Possible values are: clean, fullScanPending, rebootPending, manualStepsPending, offlineScanPending, critical. Possible values are: clean, fullScanPending, rebootPending, manualStepsPending, offlineScanPending, critical. * * @return WindowsDeviceHealthState|null The deviceState */ public function getDeviceState() { if (array_key_exists("deviceState", $this->_propDict)) { if (is_a($this->_propDict["deviceState"], "\Microsoft\Graph\Model\WindowsDeviceHealthState") || is_null($this->_propDict["deviceState"])) { return $this->_propDict["deviceState"]; } else { $this->_propDict["deviceState"] = new WindowsDeviceHealthState($this->_propDict["deviceState"]); return $this->_propDict["deviceState"]; } } return null; } /** * Sets the deviceState * Indicates device's health state. Possible values are: clean, fullScanPending, rebootPending, manualStepsPending, offlineScanPending, critical. Possible values are: clean, fullScanPending, rebootPending, manualStepsPending, offlineScanPending, critical. * * @param WindowsDeviceHealthState $val The deviceState * * @return WindowsProtectionState */ public function setDeviceState($val) { $this->_propDict["deviceState"] = $val; return $this; } /** * Gets the engineVersion * Current endpoint protection engine's version * * @return string|null The engineVersion */ public function getEngineVersion() { if (array_key_exists("engineVersion", $this->_propDict)) { return $this->_propDict["engineVersion"]; } else { return null; } } /** * Sets the engineVersion * Current endpoint protection engine's version * * @param string $val The engineVersion * * @return WindowsProtectionState */ public function setEngineVersion($val) { $this->_propDict["engineVersion"] = $val; return $this; } /** * Gets the fullScanOverdue * When TRUE indicates full scan is overdue, when FALSE indicates full scan is not overdue. Defaults to setting on client device. * * @return bool|null The fullScanOverdue */ public function getFullScanOverdue() { if (array_key_exists("fullScanOverdue", $this->_propDict)) { return $this->_propDict["fullScanOverdue"]; } else { return null; } } /** * Sets the fullScanOverdue * When TRUE indicates full scan is overdue, when FALSE indicates full scan is not overdue. Defaults to setting on client device. * * @param bool $val The fullScanOverdue * * @return WindowsProtectionState */ public function setFullScanOverdue($val) { $this->_propDict["fullScanOverdue"] = boolval($val); return $this; } /** * Gets the fullScanRequired * When TRUE indicates full scan is required, when FALSE indicates full scan is not required. Defaults to setting on client device. * * @return bool|null The fullScanRequired */ public function getFullScanRequired() { if (array_key_exists("fullScanRequired", $this->_propDict)) { return $this->_propDict["fullScanRequired"]; } else { return null; } } /** * Sets the fullScanRequired * When TRUE indicates full scan is required, when FALSE indicates full scan is not required. Defaults to setting on client device. * * @param bool $val The fullScanRequired * * @return WindowsProtectionState */ public function setFullScanRequired($val) { $this->_propDict["fullScanRequired"] = boolval($val); return $this; } /** * Gets the isVirtualMachine * When TRUE indicates the device is a virtual machine, when FALSE indicates the device is not a virtual machine. Defaults to setting on client device. * * @return bool|null The isVirtualMachine */ public function getIsVirtualMachine() { if (array_key_exists("isVirtualMachine", $this->_propDict)) { return $this->_propDict["isVirtualMachine"]; } else { return null; } } /** * Sets the isVirtualMachine * When TRUE indicates the device is a virtual machine, when FALSE indicates the device is not a virtual machine. Defaults to setting on client device. * * @param bool $val The isVirtualMachine * * @return WindowsProtectionState */ public function setIsVirtualMachine($val) { $this->_propDict["isVirtualMachine"] = boolval($val); return $this; } /** * Gets the lastFullScanDateTime * Last quick scan datetime * * @return \DateTime|null The lastFullScanDateTime */ public function getLastFullScanDateTime() { if (array_key_exists("lastFullScanDateTime", $this->_propDict)) { if (is_a($this->_propDict["lastFullScanDateTime"], "\DateTime") || is_null($this->_propDict["lastFullScanDateTime"])) { return $this->_propDict["lastFullScanDateTime"]; } else { $this->_propDict["lastFullScanDateTime"] = new \DateTime($this->_propDict["lastFullScanDateTime"]); return $this->_propDict["lastFullScanDateTime"]; } } return null; } /** * Sets the lastFullScanDateTime * Last quick scan datetime * * @param \DateTime $val The lastFullScanDateTime * * @return WindowsProtectionState */ public function setLastFullScanDateTime($val) { $this->_propDict["lastFullScanDateTime"] = $val; return $this; } /** * Gets the lastFullScanSignatureVersion * Last full scan signature version * * @return string|null The lastFullScanSignatureVersion */ public function getLastFullScanSignatureVersion() { if (array_key_exists("lastFullScanSignatureVersion", $this->_propDict)) { return $this->_propDict["lastFullScanSignatureVersion"]; } else { return null; } } /** * Sets the lastFullScanSignatureVersion * Last full scan signature version * * @param string $val The lastFullScanSignatureVersion * * @return WindowsProtectionState */ public function setLastFullScanSignatureVersion($val) { $this->_propDict["lastFullScanSignatureVersion"] = $val; return $this; } /** * Gets the lastQuickScanDateTime * Last quick scan datetime * * @return \DateTime|null The lastQuickScanDateTime */ public function getLastQuickScanDateTime() { if (array_key_exists("lastQuickScanDateTime", $this->_propDict)) { if (is_a($this->_propDict["lastQuickScanDateTime"], "\DateTime") || is_null($this->_propDict["lastQuickScanDateTime"])) { return $this->_propDict["lastQuickScanDateTime"]; } else { $this->_propDict["lastQuickScanDateTime"] = new \DateTime($this->_propDict["lastQuickScanDateTime"]); return $this->_propDict["lastQuickScanDateTime"]; } } return null; } /** * Sets the lastQuickScanDateTime * Last quick scan datetime * * @param \DateTime $val The lastQuickScanDateTime * * @return WindowsProtectionState */ public function setLastQuickScanDateTime($val) { $this->_propDict["lastQuickScanDateTime"] = $val; return $this; } /** * Gets the lastQuickScanSignatureVersion * Last quick scan signature version * * @return string|null The lastQuickScanSignatureVersion */ public function getLastQuickScanSignatureVersion() { if (array_key_exists("lastQuickScanSignatureVersion", $this->_propDict)) { return $this->_propDict["lastQuickScanSignatureVersion"]; } else { return null; } } /** * Sets the lastQuickScanSignatureVersion * Last quick scan signature version * * @param string $val The lastQuickScanSignatureVersion * * @return WindowsProtectionState */ public function setLastQuickScanSignatureVersion($val) { $this->_propDict["lastQuickScanSignatureVersion"] = $val; return $this; } /** * Gets the lastReportedDateTime * Last device health status reported time * * @return \DateTime|null The lastReportedDateTime */ public function getLastReportedDateTime() { if (array_key_exists("lastReportedDateTime", $this->_propDict)) { if (is_a($this->_propDict["lastReportedDateTime"], "\DateTime") || is_null($this->_propDict["lastReportedDateTime"])) { return $this->_propDict["lastReportedDateTime"]; } else { $this->_propDict["lastReportedDateTime"] = new \DateTime($this->_propDict["lastReportedDateTime"]); return $this->_propDict["lastReportedDateTime"]; } } return null; } /** * Sets the lastReportedDateTime * Last device health status reported time * * @param \DateTime $val The lastReportedDateTime * * @return WindowsProtectionState */ public function setLastReportedDateTime($val) { $this->_propDict["lastReportedDateTime"] = $val; return $this; } /** * Gets the malwareProtectionEnabled * When TRUE indicates anti malware is enabled when FALSE indicates anti malware is not enabled. * * @return bool|null The malwareProtectionEnabled */ public function getMalwareProtectionEnabled() { if (array_key_exists("malwareProtectionEnabled", $this->_propDict)) { return $this->_propDict["malwareProtectionEnabled"]; } else { return null; } } /** * Sets the malwareProtectionEnabled * When TRUE indicates anti malware is enabled when FALSE indicates anti malware is not enabled. * * @param bool $val The malwareProtectionEnabled * * @return WindowsProtectionState */ public function setMalwareProtectionEnabled($val) { $this->_propDict["malwareProtectionEnabled"] = boolval($val); return $this; } /** * Gets the networkInspectionSystemEnabled * When TRUE indicates network inspection system enabled, when FALSE indicates network inspection system is not enabled. Defaults to setting on client device. * * @return bool|null The networkInspectionSystemEnabled */ public function getNetworkInspectionSystemEnabled() { if (array_key_exists("networkInspectionSystemEnabled", $this->_propDict)) { return $this->_propDict["networkInspectionSystemEnabled"]; } else { return null; } } /** * Sets the networkInspectionSystemEnabled * When TRUE indicates network inspection system enabled, when FALSE indicates network inspection system is not enabled. Defaults to setting on client device. * * @param bool $val The networkInspectionSystemEnabled * * @return WindowsProtectionState */ public function setNetworkInspectionSystemEnabled($val) { $this->_propDict["networkInspectionSystemEnabled"] = boolval($val); return $this; } /** * Gets the productStatus * Product Status of Windows Defender Antivirus. Possible values are: noStatus, serviceNotRunning, serviceStartedWithoutMalwareProtection, pendingFullScanDueToThreatAction, pendingRebootDueToThreatAction, pendingManualStepsDueToThreatAction, avSignaturesOutOfDate, asSignaturesOutOfDate, noQuickScanHappenedForSpecifiedPeriod, noFullScanHappenedForSpecifiedPeriod, systemInitiatedScanInProgress, systemInitiatedCleanInProgress, samplesPendingSubmission, productRunningInEvaluationMode, productRunningInNonGenuineMode, productExpired, offlineScanRequired, serviceShutdownAsPartOfSystemShutdown, threatRemediationFailedCritically, threatRemediationFailedNonCritically, noStatusFlagsSet, platformOutOfDate, platformUpdateInProgress, platformAboutToBeOutdated, signatureOrPlatformEndOfLifeIsPastOrIsImpending, windowsSModeSignaturesInUseOnNonWin10SInstall. Possible values are: noStatus, serviceNotRunning, serviceStartedWithoutMalwareProtection, pendingFullScanDueToThreatAction, pendingRebootDueToThreatAction, pendingManualStepsDueToThreatAction, avSignaturesOutOfDate, asSignaturesOutOfDate, noQuickScanHappenedForSpecifiedPeriod, noFullScanHappenedForSpecifiedPeriod, systemInitiatedScanInProgress, systemInitiatedCleanInProgress, samplesPendingSubmission, productRunningInEvaluationMode, productRunningInNonGenuineMode, productExpired, offlineScanRequired, serviceShutdownAsPartOfSystemShutdown, threatRemediationFailedCritically, threatRemediationFailedNonCritically, noStatusFlagsSet, platformOutOfDate, platformUpdateInProgress, platformAboutToBeOutdated, signatureOrPlatformEndOfLifeIsPastOrIsImpending, windowsSModeSignaturesInUseOnNonWin10SInstall. * * @return WindowsDefenderProductStatus|null The productStatus */ public function getProductStatus() { if (array_key_exists("productStatus", $this->_propDict)) { if (is_a($this->_propDict["productStatus"], "\Microsoft\Graph\Model\WindowsDefenderProductStatus") || is_null($this->_propDict["productStatus"])) { return $this->_propDict["productStatus"]; } else { $this->_propDict["productStatus"] = new WindowsDefenderProductStatus($this->_propDict["productStatus"]); return $this->_propDict["productStatus"]; } } return null; } /** * Sets the productStatus * Product Status of Windows Defender Antivirus. Possible values are: noStatus, serviceNotRunning, serviceStartedWithoutMalwareProtection, pendingFullScanDueToThreatAction, pendingRebootDueToThreatAction, pendingManualStepsDueToThreatAction, avSignaturesOutOfDate, asSignaturesOutOfDate, noQuickScanHappenedForSpecifiedPeriod, noFullScanHappenedForSpecifiedPeriod, systemInitiatedScanInProgress, systemInitiatedCleanInProgress, samplesPendingSubmission, productRunningInEvaluationMode, productRunningInNonGenuineMode, productExpired, offlineScanRequired, serviceShutdownAsPartOfSystemShutdown, threatRemediationFailedCritically, threatRemediationFailedNonCritically, noStatusFlagsSet, platformOutOfDate, platformUpdateInProgress, platformAboutToBeOutdated, signatureOrPlatformEndOfLifeIsPastOrIsImpending, windowsSModeSignaturesInUseOnNonWin10SInstall. Possible values are: noStatus, serviceNotRunning, serviceStartedWithoutMalwareProtection, pendingFullScanDueToThreatAction, pendingRebootDueToThreatAction, pendingManualStepsDueToThreatAction, avSignaturesOutOfDate, asSignaturesOutOfDate, noQuickScanHappenedForSpecifiedPeriod, noFullScanHappenedForSpecifiedPeriod, systemInitiatedScanInProgress, systemInitiatedCleanInProgress, samplesPendingSubmission, productRunningInEvaluationMode, productRunningInNonGenuineMode, productExpired, offlineScanRequired, serviceShutdownAsPartOfSystemShutdown, threatRemediationFailedCritically, threatRemediationFailedNonCritically, noStatusFlagsSet, platformOutOfDate, platformUpdateInProgress, platformAboutToBeOutdated, signatureOrPlatformEndOfLifeIsPastOrIsImpending, windowsSModeSignaturesInUseOnNonWin10SInstall. * * @param WindowsDefenderProductStatus $val The productStatus * * @return WindowsProtectionState */ public function setProductStatus($val) { $this->_propDict["productStatus"] = $val; return $this; } /** * Gets the quickScanOverdue * When TRUE indicates quick scan is overdue, when FALSE indicates quick scan is not overdue. Defaults to setting on client device. * * @return bool|null The quickScanOverdue */ public function getQuickScanOverdue() { if (array_key_exists("quickScanOverdue", $this->_propDict)) { return $this->_propDict["quickScanOverdue"]; } else { return null; } } /** * Sets the quickScanOverdue * When TRUE indicates quick scan is overdue, when FALSE indicates quick scan is not overdue. Defaults to setting on client device. * * @param bool $val The quickScanOverdue * * @return WindowsProtectionState */ public function setQuickScanOverdue($val) { $this->_propDict["quickScanOverdue"] = boolval($val); return $this; } /** * Gets the realTimeProtectionEnabled * When TRUE indicates real time protection is enabled, when FALSE indicates real time protection is not enabled. Defaults to setting on client device. * * @return bool|null The realTimeProtectionEnabled */ public function getRealTimeProtectionEnabled() { if (array_key_exists("realTimeProtectionEnabled", $this->_propDict)) { return $this->_propDict["realTimeProtectionEnabled"]; } else { return null; } } /** * Sets the realTimeProtectionEnabled * When TRUE indicates real time protection is enabled, when FALSE indicates real time protection is not enabled. Defaults to setting on client device. * * @param bool $val The realTimeProtectionEnabled * * @return WindowsProtectionState */ public function setRealTimeProtectionEnabled($val) { $this->_propDict["realTimeProtectionEnabled"] = boolval($val); return $this; } /** * Gets the rebootRequired * When TRUE indicates reboot is required, when FALSE indicates when TRUE indicates reboot is not required. Defaults to setting on client device. * * @return bool|null The rebootRequired */ public function getRebootRequired() { if (array_key_exists("rebootRequired", $this->_propDict)) { return $this->_propDict["rebootRequired"]; } else { return null; } } /** * Sets the rebootRequired * When TRUE indicates reboot is required, when FALSE indicates when TRUE indicates reboot is not required. Defaults to setting on client device. * * @param bool $val The rebootRequired * * @return WindowsProtectionState */ public function setRebootRequired($val) { $this->_propDict["rebootRequired"] = boolval($val); return $this; } /** * Gets the signatureUpdateOverdue * When TRUE indicates signature is out of date, when FALSE indicates signature is not out of date. Defaults to setting on client device. * * @return bool|null The signatureUpdateOverdue */ public function getSignatureUpdateOverdue() { if (array_key_exists("signatureUpdateOverdue", $this->_propDict)) { return $this->_propDict["signatureUpdateOverdue"]; } else { return null; } } /** * Sets the signatureUpdateOverdue * When TRUE indicates signature is out of date, when FALSE indicates signature is not out of date. Defaults to setting on client device. * * @param bool $val The signatureUpdateOverdue * * @return WindowsProtectionState */ public function setSignatureUpdateOverdue($val) { $this->_propDict["signatureUpdateOverdue"] = boolval($val); return $this; } /** * Gets the signatureVersion * Current malware definitions version * * @return string|null The signatureVersion */ public function getSignatureVersion() { if (array_key_exists("signatureVersion", $this->_propDict)) { return $this->_propDict["signatureVersion"]; } else { return null; } } /** * Sets the signatureVersion * Current malware definitions version * * @param string $val The signatureVersion * * @return WindowsProtectionState */ public function setSignatureVersion($val) { $this->_propDict["signatureVersion"] = $val; return $this; } /** * Gets the tamperProtectionEnabled * When TRUE indicates the Windows Defender tamper protection feature is enabled, when FALSE indicates the Windows Defender tamper protection feature is not enabled. Defaults to setting on client device. * * @return bool|null The tamperProtectionEnabled */ public function getTamperProtectionEnabled() { if (array_key_exists("tamperProtectionEnabled", $this->_propDict)) { return $this->_propDict["tamperProtectionEnabled"]; } else { return null; } } /** * Sets the tamperProtectionEnabled * When TRUE indicates the Windows Defender tamper protection feature is enabled, when FALSE indicates the Windows Defender tamper protection feature is not enabled. Defaults to setting on client device. * * @param bool $val The tamperProtectionEnabled * * @return WindowsProtectionState */ public function setTamperProtectionEnabled($val) { $this->_propDict["tamperProtectionEnabled"] = boolval($val); return $this; } /** * Gets the detectedMalwareState * Device malware list * * @return array|null The detectedMalwareState */ public function getDetectedMalwareState() { if (array_key_exists("detectedMalwareState", $this->_propDict)) { return $this->_propDict["detectedMalwareState"]; } else { return null; } } /** * Sets the detectedMalwareState * Device malware list * * @param WindowsDeviceMalwareState[] $val The detectedMalwareState * * @return WindowsProtectionState */ public function setDetectedMalwareState($val) { $this->_propDict["detectedMalwareState"] = $val; return $this; } }
cải xoăn