currentRepairPhaseIndex = $currentRepairPhaseIndex; } /** * @return string */ public function getCurrentRepairPhaseIndex() { return $this->currentRepairPhaseIndex; } /** * @param string */ public function setJobId($jobId) { $this->jobId = $jobId; } /** * @return string */ public function getJobId() { return $this->jobId; } /** * @param string */ public function setPhaseId($phaseId) { $this->phaseId = $phaseId; } /** * @return string */ public function getPhaseId() { return $this->phaseId; } /** * @param RepairPhase[] */ public function setRepairPhases($repairPhases) { $this->repairPhases = $repairPhases; } /** * @return RepairPhase[] */ public function getRepairPhases() { return $this->repairPhases; } /** * @param string */ public function setRollout($rollout) { $this->rollout = $rollout; } /** * @return string */ public function getRollout() { return $this->rollout; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RepairRolloutOperation::class, 'Google_Service_CloudDeploy_RepairRolloutOperation');