percentages = $percentages; } /** * @return int[] */ public function getPercentages() { return $this->percentages; } /** * @param Postdeploy */ public function setPostdeploy(Postdeploy $postdeploy) { $this->postdeploy = $postdeploy; } /** * @return Postdeploy */ public function getPostdeploy() { return $this->postdeploy; } /** * @param Predeploy */ public function setPredeploy(Predeploy $predeploy) { $this->predeploy = $predeploy; } /** * @return Predeploy */ public function getPredeploy() { return $this->predeploy; } /** * @param bool */ public function setVerify($verify) { $this->verify = $verify; } /** * @return bool */ public function getVerify() { return $this->verify; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CanaryDeployment::class, 'Google_Service_CloudDeploy_CanaryDeployment');