ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * WindowsUpdateForBusinessConfiguration 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; /** * WindowsUpdateForBusinessConfiguration 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 WindowsUpdateForBusinessConfiguration extends DeviceConfiguration { /** * Gets the allowWindows11Upgrade * When TRUE, allows eligible Windows 10 devices to upgrade to Windows 11. When FALSE, implies the device stays on the existing operating system. Returned by default. Query parameters are not supported. * * @return bool|null The allowWindows11Upgrade */ public function getAllowWindows11Upgrade() { if (array_key_exists("allowWindows11Upgrade", $this->_propDict)) { return $this->_propDict["allowWindows11Upgrade"]; } else { return null; } } /** * Sets the allowWindows11Upgrade * When TRUE, allows eligible Windows 10 devices to upgrade to Windows 11. When FALSE, implies the device stays on the existing operating system. Returned by default. Query parameters are not supported. * * @param bool $val The allowWindows11Upgrade * * @return WindowsUpdateForBusinessConfiguration */ public function setAllowWindows11Upgrade($val) { $this->_propDict["allowWindows11Upgrade"] = boolval($val); return $this; } /** * Gets the automaticUpdateMode * The Automatic Update Mode. Possible values are: UserDefined, NotifyDownload, AutoInstallAtMaintenanceTime, AutoInstallAndRebootAtMaintenanceTime, AutoInstallAndRebootAtScheduledTime, AutoInstallAndRebootWithoutEndUserControl, WindowsDefault. UserDefined is the default value, no intent. Returned by default. Query parameters are not supported. Possible values are: userDefined, notifyDownload, autoInstallAtMaintenanceTime, autoInstallAndRebootAtMaintenanceTime, autoInstallAndRebootAtScheduledTime, autoInstallAndRebootWithoutEndUserControl. * * @return AutomaticUpdateMode|null The automaticUpdateMode */ public function getAutomaticUpdateMode() { if (array_key_exists("automaticUpdateMode", $this->_propDict)) { if (is_a($this->_propDict["automaticUpdateMode"], "\Microsoft\Graph\Model\AutomaticUpdateMode") || is_null($this->_propDict["automaticUpdateMode"])) { return $this->_propDict["automaticUpdateMode"]; } else { $this->_propDict["automaticUpdateMode"] = new AutomaticUpdateMode($this->_propDict["automaticUpdateMode"]); return $this->_propDict["automaticUpdateMode"]; } } return null; } /** * Sets the automaticUpdateMode * The Automatic Update Mode. Possible values are: UserDefined, NotifyDownload, AutoInstallAtMaintenanceTime, AutoInstallAndRebootAtMaintenanceTime, AutoInstallAndRebootAtScheduledTime, AutoInstallAndRebootWithoutEndUserControl, WindowsDefault. UserDefined is the default value, no intent. Returned by default. Query parameters are not supported. Possible values are: userDefined, notifyDownload, autoInstallAtMaintenanceTime, autoInstallAndRebootAtMaintenanceTime, autoInstallAndRebootAtScheduledTime, autoInstallAndRebootWithoutEndUserControl. * * @param AutomaticUpdateMode $val The automaticUpdateMode * * @return WindowsUpdateForBusinessConfiguration */ public function setAutomaticUpdateMode($val) { $this->_propDict["automaticUpdateMode"] = $val; return $this; } /** * Gets the autoRestartNotificationDismissal * Specify the method by which the auto-restart required notification is dismissed. Possible values are: NotConfigured, Automatic, User. Returned by default. Query parameters are not supported. Possible values are: notConfigured, automatic, user, unknownFutureValue. * * @return AutoRestartNotificationDismissalMethod|null The autoRestartNotificationDismissal */ public function getAutoRestartNotificationDismissal() { if (array_key_exists("autoRestartNotificationDismissal", $this->_propDict)) { if (is_a($this->_propDict["autoRestartNotificationDismissal"], "\Microsoft\Graph\Model\AutoRestartNotificationDismissalMethod") || is_null($this->_propDict["autoRestartNotificationDismissal"])) { return $this->_propDict["autoRestartNotificationDismissal"]; } else { $this->_propDict["autoRestartNotificationDismissal"] = new AutoRestartNotificationDismissalMethod($this->_propDict["autoRestartNotificationDismissal"]); return $this->_propDict["autoRestartNotificationDismissal"]; } } return null; } /** * Sets the autoRestartNotificationDismissal * Specify the method by which the auto-restart required notification is dismissed. Possible values are: NotConfigured, Automatic, User. Returned by default. Query parameters are not supported. Possible values are: notConfigured, automatic, user, unknownFutureValue. * * @param AutoRestartNotificationDismissalMethod $val The autoRestartNotificationDismissal * * @return WindowsUpdateForBusinessConfiguration */ public function setAutoRestartNotificationDismissal($val) { $this->_propDict["autoRestartNotificationDismissal"] = $val; return $this; } /** * Gets the businessReadyUpdatesOnly * Determines which branch devices will receive their updates from. Possible values are: UserDefined, All, BusinessReadyOnly, WindowsInsiderBuildFast, WindowsInsiderBuildSlow, WindowsInsiderBuildRelease. Returned by default. Query parameters are not supported. Possible values are: userDefined, all, businessReadyOnly, windowsInsiderBuildFast, windowsInsiderBuildSlow, windowsInsiderBuildRelease. * * @return WindowsUpdateType|null The businessReadyUpdatesOnly */ public function getBusinessReadyUpdatesOnly() { if (array_key_exists("businessReadyUpdatesOnly", $this->_propDict)) { if (is_a($this->_propDict["businessReadyUpdatesOnly"], "\Microsoft\Graph\Model\WindowsUpdateType") || is_null($this->_propDict["businessReadyUpdatesOnly"])) { return $this->_propDict["businessReadyUpdatesOnly"]; } else { $this->_propDict["businessReadyUpdatesOnly"] = new WindowsUpdateType($this->_propDict["businessReadyUpdatesOnly"]); return $this->_propDict["businessReadyUpdatesOnly"]; } } return null; } /** * Sets the businessReadyUpdatesOnly * Determines which branch devices will receive their updates from. Possible values are: UserDefined, All, BusinessReadyOnly, WindowsInsiderBuildFast, WindowsInsiderBuildSlow, WindowsInsiderBuildRelease. Returned by default. Query parameters are not supported. Possible values are: userDefined, all, businessReadyOnly, windowsInsiderBuildFast, windowsInsiderBuildSlow, windowsInsiderBuildRelease. * * @param WindowsUpdateType $val The businessReadyUpdatesOnly * * @return WindowsUpdateForBusinessConfiguration */ public function setBusinessReadyUpdatesOnly($val) { $this->_propDict["businessReadyUpdatesOnly"] = $val; return $this; } /** * Gets the deadlineForFeatureUpdatesInDays * Number of days before feature updates are installed automatically with valid range from 0 to 30 days. Returned by default. Query parameters are not supported. * * @return int|null The deadlineForFeatureUpdatesInDays */ public function getDeadlineForFeatureUpdatesInDays() { if (array_key_exists("deadlineForFeatureUpdatesInDays", $this->_propDict)) { return $this->_propDict["deadlineForFeatureUpdatesInDays"]; } else { return null; } } /** * Sets the deadlineForFeatureUpdatesInDays * Number of days before feature updates are installed automatically with valid range from 0 to 30 days. Returned by default. Query parameters are not supported. * * @param int $val The deadlineForFeatureUpdatesInDays * * @return WindowsUpdateForBusinessConfiguration */ public function setDeadlineForFeatureUpdatesInDays($val) { $this->_propDict["deadlineForFeatureUpdatesInDays"] = intval($val); return $this; } /** * Gets the deadlineForQualityUpdatesInDays * Number of days before quality updates are installed automatically with valid range from 0 to 30 days. Returned by default. Query parameters are not supported. * * @return int|null The deadlineForQualityUpdatesInDays */ public function getDeadlineForQualityUpdatesInDays() { if (array_key_exists("deadlineForQualityUpdatesInDays", $this->_propDict)) { return $this->_propDict["deadlineForQualityUpdatesInDays"]; } else { return null; } } /** * Sets the deadlineForQualityUpdatesInDays * Number of days before quality updates are installed automatically with valid range from 0 to 30 days. Returned by default. Query parameters are not supported. * * @param int $val The deadlineForQualityUpdatesInDays * * @return WindowsUpdateForBusinessConfiguration */ public function setDeadlineForQualityUpdatesInDays($val) { $this->_propDict["deadlineForQualityUpdatesInDays"] = intval($val); return $this; } /** * Gets the deadlineGracePeriodInDays * Number of days after deadline until restarts occur automatically with valid range from 0 to 7 days. Returned by default. Query parameters are not supported. * * @return int|null The deadlineGracePeriodInDays */ public function getDeadlineGracePeriodInDays() { if (array_key_exists("deadlineGracePeriodInDays", $this->_propDict)) { return $this->_propDict["deadlineGracePeriodInDays"]; } else { return null; } } /** * Sets the deadlineGracePeriodInDays * Number of days after deadline until restarts occur automatically with valid range from 0 to 7 days. Returned by default. Query parameters are not supported. * * @param int $val The deadlineGracePeriodInDays * * @return WindowsUpdateForBusinessConfiguration */ public function setDeadlineGracePeriodInDays($val) { $this->_propDict["deadlineGracePeriodInDays"] = intval($val); return $this; } /** * Gets the deliveryOptimizationMode * The Delivery Optimization Mode. Possible values are: UserDefined, HttpOnly, HttpWithPeeringNat, HttpWithPeeringPrivateGroup, HttpWithInternetPeering, SimpleDownload, BypassMode. UserDefined allows the user to set. Returned by default. Query parameters are not supported. Possible values are: userDefined, httpOnly, httpWithPeeringNat, httpWithPeeringPrivateGroup, httpWithInternetPeering, simpleDownload, bypassMode. * * @return WindowsDeliveryOptimizationMode|null The deliveryOptimizationMode */ public function getDeliveryOptimizationMode() { if (array_key_exists("deliveryOptimizationMode", $this->_propDict)) { if (is_a($this->_propDict["deliveryOptimizationMode"], "\Microsoft\Graph\Model\WindowsDeliveryOptimizationMode") || is_null($this->_propDict["deliveryOptimizationMode"])) { return $this->_propDict["deliveryOptimizationMode"]; } else { $this->_propDict["deliveryOptimizationMode"] = new WindowsDeliveryOptimizationMode($this->_propDict["deliveryOptimizationMode"]); return $this->_propDict["deliveryOptimizationMode"]; } } return null; } /** * Sets the deliveryOptimizationMode * The Delivery Optimization Mode. Possible values are: UserDefined, HttpOnly, HttpWithPeeringNat, HttpWithPeeringPrivateGroup, HttpWithInternetPeering, SimpleDownload, BypassMode. UserDefined allows the user to set. Returned by default. Query parameters are not supported. Possible values are: userDefined, httpOnly, httpWithPeeringNat, httpWithPeeringPrivateGroup, httpWithInternetPeering, simpleDownload, bypassMode. * * @param WindowsDeliveryOptimizationMode $val The deliveryOptimizationMode * * @return WindowsUpdateForBusinessConfiguration */ public function setDeliveryOptimizationMode($val) { $this->_propDict["deliveryOptimizationMode"] = $val; return $this; } /** * Gets the driversExcluded * When TRUE, excludes Windows update Drivers. When FALSE, does not exclude Windows update Drivers. Returned by default. Query parameters are not supported. * * @return bool|null The driversExcluded */ public function getDriversExcluded() { if (array_key_exists("driversExcluded", $this->_propDict)) { return $this->_propDict["driversExcluded"]; } else { return null; } } /** * Sets the driversExcluded * When TRUE, excludes Windows update Drivers. When FALSE, does not exclude Windows update Drivers. Returned by default. Query parameters are not supported. * * @param bool $val The driversExcluded * * @return WindowsUpdateForBusinessConfiguration */ public function setDriversExcluded($val) { $this->_propDict["driversExcluded"] = boolval($val); return $this; } /** * Gets the engagedRestartDeadlineInDays * Deadline in days before automatically scheduling and executing a pending restart outside of active hours, with valid range from 2 to 30 days. Returned by default. Query parameters are not supported. * * @return int|null The engagedRestartDeadlineInDays */ public function getEngagedRestartDeadlineInDays() { if (array_key_exists("engagedRestartDeadlineInDays", $this->_propDict)) { return $this->_propDict["engagedRestartDeadlineInDays"]; } else { return null; } } /** * Sets the engagedRestartDeadlineInDays * Deadline in days before automatically scheduling and executing a pending restart outside of active hours, with valid range from 2 to 30 days. Returned by default. Query parameters are not supported. * * @param int $val The engagedRestartDeadlineInDays * * @return WindowsUpdateForBusinessConfiguration */ public function setEngagedRestartDeadlineInDays($val) { $this->_propDict["engagedRestartDeadlineInDays"] = intval($val); return $this; } /** * Gets the engagedRestartSnoozeScheduleInDays * Number of days a user can snooze Engaged Restart reminder notifications with valid range from 1 to 3 days. Returned by default. Query parameters are not supported. * * @return int|null The engagedRestartSnoozeScheduleInDays */ public function getEngagedRestartSnoozeScheduleInDays() { if (array_key_exists("engagedRestartSnoozeScheduleInDays", $this->_propDict)) { return $this->_propDict["engagedRestartSnoozeScheduleInDays"]; } else { return null; } } /** * Sets the engagedRestartSnoozeScheduleInDays * Number of days a user can snooze Engaged Restart reminder notifications with valid range from 1 to 3 days. Returned by default. Query parameters are not supported. * * @param int $val The engagedRestartSnoozeScheduleInDays * * @return WindowsUpdateForBusinessConfiguration */ public function setEngagedRestartSnoozeScheduleInDays($val) { $this->_propDict["engagedRestartSnoozeScheduleInDays"] = intval($val); return $this; } /** * Gets the engagedRestartTransitionScheduleInDays * Number of days before transitioning from Auto Restarts scheduled outside of active hours to Engaged Restart, which requires the user to schedule, with valid range from 0 to 30 days. Returned by default. Query parameters are not supported. * * @return int|null The engagedRestartTransitionScheduleInDays */ public function getEngagedRestartTransitionScheduleInDays() { if (array_key_exists("engagedRestartTransitionScheduleInDays", $this->_propDict)) { return $this->_propDict["engagedRestartTransitionScheduleInDays"]; } else { return null; } } /** * Sets the engagedRestartTransitionScheduleInDays * Number of days before transitioning from Auto Restarts scheduled outside of active hours to Engaged Restart, which requires the user to schedule, with valid range from 0 to 30 days. Returned by default. Query parameters are not supported. * * @param int $val The engagedRestartTransitionScheduleInDays * * @return WindowsUpdateForBusinessConfiguration */ public function setEngagedRestartTransitionScheduleInDays($val) { $this->_propDict["engagedRestartTransitionScheduleInDays"] = intval($val); return $this; } /** * Gets the featureUpdatesDeferralPeriodInDays * Defer Feature Updates by these many days with valid range from 0 to 30 days. Returned by default. Query parameters are not supported. * * @return int|null The featureUpdatesDeferralPeriodInDays */ public function getFeatureUpdatesDeferralPeriodInDays() { if (array_key_exists("featureUpdatesDeferralPeriodInDays", $this->_propDict)) { return $this->_propDict["featureUpdatesDeferralPeriodInDays"]; } else { return null; } } /** * Sets the featureUpdatesDeferralPeriodInDays * Defer Feature Updates by these many days with valid range from 0 to 30 days. Returned by default. Query parameters are not supported. * * @param int $val The featureUpdatesDeferralPeriodInDays * * @return WindowsUpdateForBusinessConfiguration */ public function setFeatureUpdatesDeferralPeriodInDays($val) { $this->_propDict["featureUpdatesDeferralPeriodInDays"] = intval($val); return $this; } /** * Gets the featureUpdatesPaused * When TRUE, assigned devices are paused from receiving feature updates for up to 35 days from the time you pause the ring. When FALSE, does not pause Feature Updates. Returned by default. Query parameters are not supported.s * * @return bool|null The featureUpdatesPaused */ public function getFeatureUpdatesPaused() { if (array_key_exists("featureUpdatesPaused", $this->_propDict)) { return $this->_propDict["featureUpdatesPaused"]; } else { return null; } } /** * Sets the featureUpdatesPaused * When TRUE, assigned devices are paused from receiving feature updates for up to 35 days from the time you pause the ring. When FALSE, does not pause Feature Updates. Returned by default. Query parameters are not supported.s * * @param bool $val The featureUpdatesPaused * * @return WindowsUpdateForBusinessConfiguration */ public function setFeatureUpdatesPaused($val) { $this->_propDict["featureUpdatesPaused"] = boolval($val); return $this; } /** * Gets the featureUpdatesPauseExpiryDateTime * The Feature Updates Pause Expiry datetime. This value is 35 days from the time admin paused or extended the pause for the ring. Returned by default. Query parameters are not supported. * * @return \DateTime|null The featureUpdatesPauseExpiryDateTime */ public function getFeatureUpdatesPauseExpiryDateTime() { if (array_key_exists("featureUpdatesPauseExpiryDateTime", $this->_propDict)) { if (is_a($this->_propDict["featureUpdatesPauseExpiryDateTime"], "\DateTime") || is_null($this->_propDict["featureUpdatesPauseExpiryDateTime"])) { return $this->_propDict["featureUpdatesPauseExpiryDateTime"]; } else { $this->_propDict["featureUpdatesPauseExpiryDateTime"] = new \DateTime($this->_propDict["featureUpdatesPauseExpiryDateTime"]); return $this->_propDict["featureUpdatesPauseExpiryDateTime"]; } } return null; } /** * Sets the featureUpdatesPauseExpiryDateTime * The Feature Updates Pause Expiry datetime. This value is 35 days from the time admin paused or extended the pause for the ring. Returned by default. Query parameters are not supported. * * @param \DateTime $val The featureUpdatesPauseExpiryDateTime * * @return WindowsUpdateForBusinessConfiguration */ public function setFeatureUpdatesPauseExpiryDateTime($val) { $this->_propDict["featureUpdatesPauseExpiryDateTime"] = $val; return $this; } /** * Gets the featureUpdatesPauseStartDate * The Feature Updates Pause start date. This value is the time when the admin paused or extended the pause for the ring. Returned by default. Query parameters are not supported. This property is read-only. * * @return \DateTime|null The featureUpdatesPauseStartDate */ public function getFeatureUpdatesPauseStartDate() { if (array_key_exists("featureUpdatesPauseStartDate", $this->_propDict)) { if (is_a($this->_propDict["featureUpdatesPauseStartDate"], "\DateTime") || is_null($this->_propDict["featureUpdatesPauseStartDate"])) { return $this->_propDict["featureUpdatesPauseStartDate"]; } else { $this->_propDict["featureUpdatesPauseStartDate"] = new \DateTime($this->_propDict["featureUpdatesPauseStartDate"]); return $this->_propDict["featureUpdatesPauseStartDate"]; } } return null; } /** * Sets the featureUpdatesPauseStartDate * The Feature Updates Pause start date. This value is the time when the admin paused or extended the pause for the ring. Returned by default. Query parameters are not supported. This property is read-only. * * @param \DateTime $val The featureUpdatesPauseStartDate * * @return WindowsUpdateForBusinessConfiguration */ public function setFeatureUpdatesPauseStartDate($val) { $this->_propDict["featureUpdatesPauseStartDate"] = $val; return $this; } /** * Gets the featureUpdatesRollbackStartDateTime * The Feature Updates Rollback Start datetime.This value is the time when the admin rolled back the Feature update for the ring.Returned by default.Query parameters are not supported. * * @return \DateTime|null The featureUpdatesRollbackStartDateTime */ public function getFeatureUpdatesRollbackStartDateTime() { if (array_key_exists("featureUpdatesRollbackStartDateTime", $this->_propDict)) { if (is_a($this->_propDict["featureUpdatesRollbackStartDateTime"], "\DateTime") || is_null($this->_propDict["featureUpdatesRollbackStartDateTime"])) { return $this->_propDict["featureUpdatesRollbackStartDateTime"]; } else { $this->_propDict["featureUpdatesRollbackStartDateTime"] = new \DateTime($this->_propDict["featureUpdatesRollbackStartDateTime"]); return $this->_propDict["featureUpdatesRollbackStartDateTime"]; } } return null; } /** * Sets the featureUpdatesRollbackStartDateTime * The Feature Updates Rollback Start datetime.This value is the time when the admin rolled back the Feature update for the ring.Returned by default.Query parameters are not supported. * * @param \DateTime $val The featureUpdatesRollbackStartDateTime * * @return WindowsUpdateForBusinessConfiguration */ public function setFeatureUpdatesRollbackStartDateTime($val) { $this->_propDict["featureUpdatesRollbackStartDateTime"] = $val; return $this; } /** * Gets the featureUpdatesRollbackWindowInDays * The number of days after a Feature Update for which a rollback is valid with valid range from 2 to 60 days. Returned by default. Query parameters are not supported. * * @return int|null The featureUpdatesRollbackWindowInDays */ public function getFeatureUpdatesRollbackWindowInDays() { if (array_key_exists("featureUpdatesRollbackWindowInDays", $this->_propDict)) { return $this->_propDict["featureUpdatesRollbackWindowInDays"]; } else { return null; } } /** * Sets the featureUpdatesRollbackWindowInDays * The number of days after a Feature Update for which a rollback is valid with valid range from 2 to 60 days. Returned by default. Query parameters are not supported. * * @param int $val The featureUpdatesRollbackWindowInDays * * @return WindowsUpdateForBusinessConfiguration */ public function setFeatureUpdatesRollbackWindowInDays($val) { $this->_propDict["featureUpdatesRollbackWindowInDays"] = intval($val); return $this; } /** * Gets the featureUpdatesWillBeRolledBack * When TRUE, rollback Feature Updates on the next device check in. When FALSE, do not rollback Feature Updates on the next device check in. Returned by default.Query parameters are not supported. * * @return bool|null The featureUpdatesWillBeRolledBack */ public function getFeatureUpdatesWillBeRolledBack() { if (array_key_exists("featureUpdatesWillBeRolledBack", $this->_propDict)) { return $this->_propDict["featureUpdatesWillBeRolledBack"]; } else { return null; } } /** * Sets the featureUpdatesWillBeRolledBack * When TRUE, rollback Feature Updates on the next device check in. When FALSE, do not rollback Feature Updates on the next device check in. Returned by default.Query parameters are not supported. * * @param bool $val The featureUpdatesWillBeRolledBack * * @return WindowsUpdateForBusinessConfiguration */ public function setFeatureUpdatesWillBeRolledBack($val) { $this->_propDict["featureUpdatesWillBeRolledBack"] = boolval($val); return $this; } /** * Gets the installationSchedule * The Installation Schedule. Possible values are: ActiveHoursStart, ActiveHoursEnd, ScheduledInstallDay, ScheduledInstallTime. Returned by default. Query parameters are not supported. * * @return WindowsUpdateInstallScheduleType|null The installationSchedule */ public function getInstallationSchedule() { if (array_key_exists("installationSchedule", $this->_propDict)) { if (is_a($this->_propDict["installationSchedule"], "\Microsoft\Graph\Model\WindowsUpdateInstallScheduleType") || is_null($this->_propDict["installationSchedule"])) { return $this->_propDict["installationSchedule"]; } else { $this->_propDict["installationSchedule"] = new WindowsUpdateInstallScheduleType($this->_propDict["installationSchedule"]); return $this->_propDict["installationSchedule"]; } } return null; } /** * Sets the installationSchedule * The Installation Schedule. Possible values are: ActiveHoursStart, ActiveHoursEnd, ScheduledInstallDay, ScheduledInstallTime. Returned by default. Query parameters are not supported. * * @param WindowsUpdateInstallScheduleType $val The installationSchedule * * @return WindowsUpdateForBusinessConfiguration */ public function setInstallationSchedule($val) { $this->_propDict["installationSchedule"] = $val; return $this; } /** * Gets the microsoftUpdateServiceAllowed * When TRUE, allows Microsoft Update Service. When FALSE, does not allow Microsoft Update Service. Returned by default. Query parameters are not supported. * * @return bool|null The microsoftUpdateServiceAllowed */ public function getMicrosoftUpdateServiceAllowed() { if (array_key_exists("microsoftUpdateServiceAllowed", $this->_propDict)) { return $this->_propDict["microsoftUpdateServiceAllowed"]; } else { return null; } } /** * Sets the microsoftUpdateServiceAllowed * When TRUE, allows Microsoft Update Service. When FALSE, does not allow Microsoft Update Service. Returned by default. Query parameters are not supported. * * @param bool $val The microsoftUpdateServiceAllowed * * @return WindowsUpdateForBusinessConfiguration */ public function setMicrosoftUpdateServiceAllowed($val) { $this->_propDict["microsoftUpdateServiceAllowed"] = boolval($val); return $this; } /** * Gets the postponeRebootUntilAfterDeadline * When TRUE the device should wait until deadline for rebooting outside of active hours. When FALSE the device should not wait until deadline for rebooting outside of active hours. Returned by default. Query parameters are not supported. * * @return bool|null The postponeRebootUntilAfterDeadline */ public function getPostponeRebootUntilAfterDeadline() { if (array_key_exists("postponeRebootUntilAfterDeadline", $this->_propDict)) { return $this->_propDict["postponeRebootUntilAfterDeadline"]; } else { return null; } } /** * Sets the postponeRebootUntilAfterDeadline * When TRUE the device should wait until deadline for rebooting outside of active hours. When FALSE the device should not wait until deadline for rebooting outside of active hours. Returned by default. Query parameters are not supported. * * @param bool $val The postponeRebootUntilAfterDeadline * * @return WindowsUpdateForBusinessConfiguration */ public function setPostponeRebootUntilAfterDeadline($val) { $this->_propDict["postponeRebootUntilAfterDeadline"] = boolval($val); return $this; } /** * Gets the prereleaseFeatures * The Pre-Release Features. Possible values are: UserDefined, SettingsOnly, SettingsAndExperimentations, NotAllowed. UserDefined is the default value, no intent. Returned by default. Query parameters are not supported. Possible values are: userDefined, settingsOnly, settingsAndExperimentations, notAllowed. * * @return PrereleaseFeatures|null The prereleaseFeatures */ public function getPrereleaseFeatures() { if (array_key_exists("prereleaseFeatures", $this->_propDict)) { if (is_a($this->_propDict["prereleaseFeatures"], "\Microsoft\Graph\Model\PrereleaseFeatures") || is_null($this->_propDict["prereleaseFeatures"])) { return $this->_propDict["prereleaseFeatures"]; } else { $this->_propDict["prereleaseFeatures"] = new PrereleaseFeatures($this->_propDict["prereleaseFeatures"]); return $this->_propDict["prereleaseFeatures"]; } } return null; } /** * Sets the prereleaseFeatures * The Pre-Release Features. Possible values are: UserDefined, SettingsOnly, SettingsAndExperimentations, NotAllowed. UserDefined is the default value, no intent. Returned by default. Query parameters are not supported. Possible values are: userDefined, settingsOnly, settingsAndExperimentations, notAllowed. * * @param PrereleaseFeatures $val The prereleaseFeatures * * @return WindowsUpdateForBusinessConfiguration */ public function setPrereleaseFeatures($val) { $this->_propDict["prereleaseFeatures"] = $val; return $this; } /** * Gets the qualityUpdatesDeferralPeriodInDays * Defer Quality Updates by these many days with valid range from 0 to 30 days. Returned by default. Query parameters are not supported. * * @return int|null The qualityUpdatesDeferralPeriodInDays */ public function getQualityUpdatesDeferralPeriodInDays() { if (array_key_exists("qualityUpdatesDeferralPeriodInDays", $this->_propDict)) { return $this->_propDict["qualityUpdatesDeferralPeriodInDays"]; } else { return null; } } /** * Sets the qualityUpdatesDeferralPeriodInDays * Defer Quality Updates by these many days with valid range from 0 to 30 days. Returned by default. Query parameters are not supported. * * @param int $val The qualityUpdatesDeferralPeriodInDays * * @return WindowsUpdateForBusinessConfiguration */ public function setQualityUpdatesDeferralPeriodInDays($val) { $this->_propDict["qualityUpdatesDeferralPeriodInDays"] = intval($val); return $this; } /** * Gets the qualityUpdatesPaused * When TRUE, assigned devices are paused from receiving quality updates for up to 35 days from the time you pause the ring. When FALSE, does not pause Quality Updates. Returned by default. Query parameters are not supported. * * @return bool|null The qualityUpdatesPaused */ public function getQualityUpdatesPaused() { if (array_key_exists("qualityUpdatesPaused", $this->_propDict)) { return $this->_propDict["qualityUpdatesPaused"]; } else { return null; } } /** * Sets the qualityUpdatesPaused * When TRUE, assigned devices are paused from receiving quality updates for up to 35 days from the time you pause the ring. When FALSE, does not pause Quality Updates. Returned by default. Query parameters are not supported. * * @param bool $val The qualityUpdatesPaused * * @return WindowsUpdateForBusinessConfiguration */ public function setQualityUpdatesPaused($val) { $this->_propDict["qualityUpdatesPaused"] = boolval($val); return $this; } /** * Gets the qualityUpdatesPauseExpiryDateTime * The Quality Updates Pause Expiry datetime. This value is 35 days from the time admin paused or extended the pause for the ring. Returned by default. Query parameters are not supported. * * @return \DateTime|null The qualityUpdatesPauseExpiryDateTime */ public function getQualityUpdatesPauseExpiryDateTime() { if (array_key_exists("qualityUpdatesPauseExpiryDateTime", $this->_propDict)) { if (is_a($this->_propDict["qualityUpdatesPauseExpiryDateTime"], "\DateTime") || is_null($this->_propDict["qualityUpdatesPauseExpiryDateTime"])) { return $this->_propDict["qualityUpdatesPauseExpiryDateTime"]; } else { $this->_propDict["qualityUpdatesPauseExpiryDateTime"] = new \DateTime($this->_propDict["qualityUpdatesPauseExpiryDateTime"]); return $this->_propDict["qualityUpdatesPauseExpiryDateTime"]; } } return null; } /** * Sets the qualityUpdatesPauseExpiryDateTime * The Quality Updates Pause Expiry datetime. This value is 35 days from the time admin paused or extended the pause for the ring. Returned by default. Query parameters are not supported. * * @param \DateTime $val The qualityUpdatesPauseExpiryDateTime * * @return WindowsUpdateForBusinessConfiguration */ public function setQualityUpdatesPauseExpiryDateTime($val) { $this->_propDict["qualityUpdatesPauseExpiryDateTime"] = $val; return $this; } /** * Gets the qualityUpdatesPauseStartDate * The Quality Updates Pause start date. This value is the time when the admin paused or extended the pause for the ring. Returned by default. Query parameters are not supported. This property is read-only. * * @return \DateTime|null The qualityUpdatesPauseStartDate */ public function getQualityUpdatesPauseStartDate() { if (array_key_exists("qualityUpdatesPauseStartDate", $this->_propDict)) { if (is_a($this->_propDict["qualityUpdatesPauseStartDate"], "\DateTime") || is_null($this->_propDict["qualityUpdatesPauseStartDate"])) { return $this->_propDict["qualityUpdatesPauseStartDate"]; } else { $this->_propDict["qualityUpdatesPauseStartDate"] = new \DateTime($this->_propDict["qualityUpdatesPauseStartDate"]); return $this->_propDict["qualityUpdatesPauseStartDate"]; } } return null; } /** * Sets the qualityUpdatesPauseStartDate * The Quality Updates Pause start date. This value is the time when the admin paused or extended the pause for the ring. Returned by default. Query parameters are not supported. This property is read-only. * * @param \DateTime $val The qualityUpdatesPauseStartDate * * @return WindowsUpdateForBusinessConfiguration */ public function setQualityUpdatesPauseStartDate($val) { $this->_propDict["qualityUpdatesPauseStartDate"] = $val; return $this; } /** * Gets the qualityUpdatesRollbackStartDateTime * The Quality Updates Rollback Start datetime. This value is the time when the admin rolled back the Quality update for the ring. Returned by default. Query parameters are not supported. * * @return \DateTime|null The qualityUpdatesRollbackStartDateTime */ public function getQualityUpdatesRollbackStartDateTime() { if (array_key_exists("qualityUpdatesRollbackStartDateTime", $this->_propDict)) { if (is_a($this->_propDict["qualityUpdatesRollbackStartDateTime"], "\DateTime") || is_null($this->_propDict["qualityUpdatesRollbackStartDateTime"])) { return $this->_propDict["qualityUpdatesRollbackStartDateTime"]; } else { $this->_propDict["qualityUpdatesRollbackStartDateTime"] = new \DateTime($this->_propDict["qualityUpdatesRollbackStartDateTime"]); return $this->_propDict["qualityUpdatesRollbackStartDateTime"]; } } return null; } /** * Sets the qualityUpdatesRollbackStartDateTime * The Quality Updates Rollback Start datetime. This value is the time when the admin rolled back the Quality update for the ring. Returned by default. Query parameters are not supported. * * @param \DateTime $val The qualityUpdatesRollbackStartDateTime * * @return WindowsUpdateForBusinessConfiguration */ public function setQualityUpdatesRollbackStartDateTime($val) { $this->_propDict["qualityUpdatesRollbackStartDateTime"] = $val; return $this; } /** * Gets the qualityUpdatesWillBeRolledBack * When TRUE, rollback Quality Updates on the next device check in. When FALSE, do not rollback Quality Updates on the next device check in. Returned by default. Query parameters are not supported. * * @return bool|null The qualityUpdatesWillBeRolledBack */ public function getQualityUpdatesWillBeRolledBack() { if (array_key_exists("qualityUpdatesWillBeRolledBack", $this->_propDict)) { return $this->_propDict["qualityUpdatesWillBeRolledBack"]; } else { return null; } } /** * Sets the qualityUpdatesWillBeRolledBack * When TRUE, rollback Quality Updates on the next device check in. When FALSE, do not rollback Quality Updates on the next device check in. Returned by default. Query parameters are not supported. * * @param bool $val The qualityUpdatesWillBeRolledBack * * @return WindowsUpdateForBusinessConfiguration */ public function setQualityUpdatesWillBeRolledBack($val) { $this->_propDict["qualityUpdatesWillBeRolledBack"] = boolval($val); return $this; } /** * Gets the scheduleImminentRestartWarningInMinutes * Specify the period for auto-restart imminent warning notifications. Supported values: 15, 30 or 60 (minutes). Returned by default. Query parameters are not supported. * * @return int|null The scheduleImminentRestartWarningInMinutes */ public function getScheduleImminentRestartWarningInMinutes() { if (array_key_exists("scheduleImminentRestartWarningInMinutes", $this->_propDict)) { return $this->_propDict["scheduleImminentRestartWarningInMinutes"]; } else { return null; } } /** * Sets the scheduleImminentRestartWarningInMinutes * Specify the period for auto-restart imminent warning notifications. Supported values: 15, 30 or 60 (minutes). Returned by default. Query parameters are not supported. * * @param int $val The scheduleImminentRestartWarningInMinutes * * @return WindowsUpdateForBusinessConfiguration */ public function setScheduleImminentRestartWarningInMinutes($val) { $this->_propDict["scheduleImminentRestartWarningInMinutes"] = intval($val); return $this; } /** * Gets the scheduleRestartWarningInHours * Specify the period for auto-restart warning reminder notifications. Supported values: 2, 4, 8, 12 or 24 (hours). Returned by default. Query parameters are not supported. * * @return int|null The scheduleRestartWarningInHours */ public function getScheduleRestartWarningInHours() { if (array_key_exists("scheduleRestartWarningInHours", $this->_propDict)) { return $this->_propDict["scheduleRestartWarningInHours"]; } else { return null; } } /** * Sets the scheduleRestartWarningInHours * Specify the period for auto-restart warning reminder notifications. Supported values: 2, 4, 8, 12 or 24 (hours). Returned by default. Query parameters are not supported. * * @param int $val The scheduleRestartWarningInHours * * @return WindowsUpdateForBusinessConfiguration */ public function setScheduleRestartWarningInHours($val) { $this->_propDict["scheduleRestartWarningInHours"] = intval($val); return $this; } /** * Gets the skipChecksBeforeRestart * When TRUE, skips all checks before restart: Battery level = 40%, User presence, Display Needed, Presentation mode, Full screen mode, phone call state, game mode etc. When FALSE, does not skip all checks before restart. Returned by default. Query parameters are not supported. * * @return bool|null The skipChecksBeforeRestart */ public function getSkipChecksBeforeRestart() { if (array_key_exists("skipChecksBeforeRestart", $this->_propDict)) { return $this->_propDict["skipChecksBeforeRestart"]; } else { return null; } } /** * Sets the skipChecksBeforeRestart * When TRUE, skips all checks before restart: Battery level = 40%, User presence, Display Needed, Presentation mode, Full screen mode, phone call state, game mode etc. When FALSE, does not skip all checks before restart. Returned by default. Query parameters are not supported. * * @param bool $val The skipChecksBeforeRestart * * @return WindowsUpdateForBusinessConfiguration */ public function setSkipChecksBeforeRestart($val) { $this->_propDict["skipChecksBeforeRestart"] = boolval($val); return $this; } /** * Gets the updateNotificationLevel * Specifies what Windows Update notifications users see. Possible values are: NotConfigured, DefaultNotifications, RestartWarningsOnly, DisableAllNotifications. Returned by default. Query parameters are not supported. Possible values are: notConfigured, defaultNotifications, restartWarningsOnly, disableAllNotifications, unknownFutureValue. * * @return WindowsUpdateNotificationDisplayOption|null The updateNotificationLevel */ public function getUpdateNotificationLevel() { if (array_key_exists("updateNotificationLevel", $this->_propDict)) { if (is_a($this->_propDict["updateNotificationLevel"], "\Microsoft\Graph\Model\WindowsUpdateNotificationDisplayOption") || is_null($this->_propDict["updateNotificationLevel"])) { return $this->_propDict["updateNotificationLevel"]; } else { $this->_propDict["updateNotificationLevel"] = new WindowsUpdateNotificationDisplayOption($this->_propDict["updateNotificationLevel"]); return $this->_propDict["updateNotificationLevel"]; } } return null; } /** * Sets the updateNotificationLevel * Specifies what Windows Update notifications users see. Possible values are: NotConfigured, DefaultNotifications, RestartWarningsOnly, DisableAllNotifications. Returned by default. Query parameters are not supported. Possible values are: notConfigured, defaultNotifications, restartWarningsOnly, disableAllNotifications, unknownFutureValue. * * @param WindowsUpdateNotificationDisplayOption $val The updateNotificationLevel * * @return WindowsUpdateForBusinessConfiguration */ public function setUpdateNotificationLevel($val) { $this->_propDict["updateNotificationLevel"] = $val; return $this; } /** * Gets the updateWeeks * Schedule the update installation on the weeks of the month. Possible values are: UserDefined, FirstWeek, SecondWeek, ThirdWeek, FourthWeek, EveryWeek. Returned by default. Query parameters are not supported. Possible values are: userDefined, firstWeek, secondWeek, thirdWeek, fourthWeek, everyWeek, unknownFutureValue. * * @return WindowsUpdateForBusinessUpdateWeeks|null The updateWeeks */ public function getUpdateWeeks() { if (array_key_exists("updateWeeks", $this->_propDict)) { if (is_a($this->_propDict["updateWeeks"], "\Microsoft\Graph\Model\WindowsUpdateForBusinessUpdateWeeks") || is_null($this->_propDict["updateWeeks"])) { return $this->_propDict["updateWeeks"]; } else { $this->_propDict["updateWeeks"] = new WindowsUpdateForBusinessUpdateWeeks($this->_propDict["updateWeeks"]); return $this->_propDict["updateWeeks"]; } } return null; } /** * Sets the updateWeeks * Schedule the update installation on the weeks of the month. Possible values are: UserDefined, FirstWeek, SecondWeek, ThirdWeek, FourthWeek, EveryWeek. Returned by default. Query parameters are not supported. Possible values are: userDefined, firstWeek, secondWeek, thirdWeek, fourthWeek, everyWeek, unknownFutureValue. * * @param WindowsUpdateForBusinessUpdateWeeks $val The updateWeeks * * @return WindowsUpdateForBusinessConfiguration */ public function setUpdateWeeks($val) { $this->_propDict["updateWeeks"] = $val; return $this; } /** * Gets the userPauseAccess * Specifies whether to enable end user’s access to pause software updates. Possible values are: NotConfigured, Enabled, Disabled. Returned by default. Query parameters are not supported. Possible values are: notConfigured, enabled, disabled. * * @return Enablement|null The userPauseAccess */ public function getUserPauseAccess() { if (array_key_exists("userPauseAccess", $this->_propDict)) { if (is_a($this->_propDict["userPauseAccess"], "\Microsoft\Graph\Model\Enablement") || is_null($this->_propDict["userPauseAccess"])) { return $this->_propDict["userPauseAccess"]; } else { $this->_propDict["userPauseAccess"] = new Enablement($this->_propDict["userPauseAccess"]); return $this->_propDict["userPauseAccess"]; } } return null; } /** * Sets the userPauseAccess * Specifies whether to enable end user’s access to pause software updates. Possible values are: NotConfigured, Enabled, Disabled. Returned by default. Query parameters are not supported. Possible values are: notConfigured, enabled, disabled. * * @param Enablement $val The userPauseAccess * * @return WindowsUpdateForBusinessConfiguration */ public function setUserPauseAccess($val) { $this->_propDict["userPauseAccess"] = $val; return $this; } /** * Gets the userWindowsUpdateScanAccess * Specifies whether to disable user’s access to scan Windows Update. Possible values are: NotConfigured, Enabled, Disabled. Returned by default. Query parameters are not supported. Possible values are: notConfigured, enabled, disabled. * * @return Enablement|null The userWindowsUpdateScanAccess */ public function getUserWindowsUpdateScanAccess() { if (array_key_exists("userWindowsUpdateScanAccess", $this->_propDict)) { if (is_a($this->_propDict["userWindowsUpdateScanAccess"], "\Microsoft\Graph\Model\Enablement") || is_null($this->_propDict["userWindowsUpdateScanAccess"])) { return $this->_propDict["userWindowsUpdateScanAccess"]; } else { $this->_propDict["userWindowsUpdateScanAccess"] = new Enablement($this->_propDict["userWindowsUpdateScanAccess"]); return $this->_propDict["userWindowsUpdateScanAccess"]; } } return null; } /** * Sets the userWindowsUpdateScanAccess * Specifies whether to disable user’s access to scan Windows Update. Possible values are: NotConfigured, Enabled, Disabled. Returned by default. Query parameters are not supported. Possible values are: notConfigured, enabled, disabled. * * @param Enablement $val The userWindowsUpdateScanAccess * * @return WindowsUpdateForBusinessConfiguration */ public function setUserWindowsUpdateScanAccess($val) { $this->_propDict["userWindowsUpdateScanAccess"] = $val; return $this; } }
cải xoăn