automatedBackupEnabled = $automatedBackupEnabled; } /** * @return bool */ public function getAutomatedBackupEnabled() { return $this->automatedBackupEnabled; } /** * @param RetentionSettings */ public function setBackupRetentionSettings(RetentionSettings $backupRetentionSettings) { $this->backupRetentionSettings = $backupRetentionSettings; } /** * @return RetentionSettings */ public function getBackupRetentionSettings() { return $this->backupRetentionSettings; } /** * @param bool */ public function setPointInTimeRecoveryEnabled($pointInTimeRecoveryEnabled) { $this->pointInTimeRecoveryEnabled = $pointInTimeRecoveryEnabled; } /** * @return bool */ public function getPointInTimeRecoveryEnabled() { return $this->pointInTimeRecoveryEnabled; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(BackupConfiguration::class, 'Google_Service_CloudRedis_BackupConfiguration');