currentWindow = $currentWindow; } /** * @return BackupDrEnabledWindow */ public function getCurrentWindow() { return $this->currentWindow; } /** * Windows during which BackupDR was enabled for this cluster, along with * associated configuration for that window. These are used to determine * points-in-time for which restores can be performed. The windows are ordered * with the most recent window last. Windows are mutally exclusive. Windows * which closed more than 1 year ago will be removed from this list. * * @param BackupDrEnabledWindow[] $previousWindows */ public function setPreviousWindows($previousWindows) { $this->previousWindows = $previousWindows; } /** * @return BackupDrEnabledWindow[] */ public function getPreviousWindows() { return $this->previousWindows; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(BackupDrInfo::class, 'Google_Service_CloudAlloyDBAdmin_BackupDrInfo');