dataGuardRoleChangedTime = $dataGuardRoleChangedTime; } /** * @return string */ public function getDataGuardRoleChangedTime() { return $this->dataGuardRoleChangedTime; } /** * Output only. The date and time the Disaster Recovery role was switched for * the standby Autonomous Database. * * @param string $disasterRecoveryRoleChangedTime */ public function setDisasterRecoveryRoleChangedTime($disasterRecoveryRoleChangedTime) { $this->disasterRecoveryRoleChangedTime = $disasterRecoveryRoleChangedTime; } /** * @return string */ public function getDisasterRecoveryRoleChangedTime() { return $this->disasterRecoveryRoleChangedTime; } /** * Output only. The amount of time, in seconds, that the data of the standby * database lags in comparison to the data of the primary database. * * @param string $lagTimeDuration */ public function setLagTimeDuration($lagTimeDuration) { $this->lagTimeDuration = $lagTimeDuration; } /** * @return string */ public function getLagTimeDuration() { return $this->lagTimeDuration; } /** * Output only. The additional details about the current lifecycle state of * the Autonomous Database. * * @param string $lifecycleDetails */ public function setLifecycleDetails($lifecycleDetails) { $this->lifecycleDetails = $lifecycleDetails; } /** * @return string */ public function getLifecycleDetails() { return $this->lifecycleDetails; } /** * Output only. The current lifecycle state of the Autonomous Database. * * Accepted values: STATE_UNSPECIFIED, PROVISIONING, AVAILABLE, STOPPING, * STOPPED, STARTING, TERMINATING, TERMINATED, UNAVAILABLE, * RESTORE_IN_PROGRESS, RESTORE_FAILED, BACKUP_IN_PROGRESS, SCALE_IN_PROGRESS, * AVAILABLE_NEEDS_ATTENTION, UPDATING, MAINTENANCE_IN_PROGRESS, RESTARTING, * RECREATING, ROLE_CHANGE_IN_PROGRESS, UPGRADING, INACCESSIBLE, STANDBY * * @param self::STATE_* $state */ public function setState($state) { $this->state = $state; } /** * @return self::STATE_* */ public function getState() { return $this->state; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AutonomousDatabaseStandbySummary::class, 'Google_Service_OracleDatabase_AutonomousDatabaseStandbySummary');