certVerification = $certVerification; } /** * @return CertVerification */ public function getCertVerification() { return $this->certVerification; } /** * Output only. DNS updates to facilitate your domain's zero-downtime * migration to Hosting. * * @param DnsUpdates $dnsUpdates */ public function setDnsUpdates(DnsUpdates $dnsUpdates) { $this->dnsUpdates = $dnsUpdates; } /** * @return DnsUpdates */ public function getDnsUpdates() { return $this->dnsUpdates; } /** * Output only. Issues that prevent the current step from completing. * * @param Status[] $issues */ public function setIssues($issues) { $this->issues = $issues; } /** * @return Status[] */ public function getIssues() { return $this->issues; } /** * Output only. The state of the live migration step, indicates whether you * should work to complete the step now, in the future, or have already * completed it. * * Accepted values: STATE_UNSPECIFIED, PREPARING, PENDING, INCOMPLETE, * PROCESSING, COMPLETE * * @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(LiveMigrationStep::class, 'Google_Service_FirebaseHosting_LiveMigrationStep');