alertPolicyAnalyses = $alertPolicyAnalyses; } /** * @return AlertPolicyCheckStatus[] */ public function getAlertPolicyAnalyses() { return $this->alertPolicyAnalyses; } /** * Output only. The status of the running custom checks configured for this * analysis. * * @param CustomCheckStatus[] $customCheckAnalyses */ public function setCustomCheckAnalyses($customCheckAnalyses) { $this->customCheckAnalyses = $customCheckAnalyses; } /** * @return CustomCheckStatus[] */ public function getCustomCheckAnalyses() { return $this->customCheckAnalyses; } /** * Output only. The ID of the configured check that failed. This will always * be blank while the analysis is in progress or if it succeeded. * * @param string $failedCheckId */ public function setFailedCheckId($failedCheckId) { $this->failedCheckId = $failedCheckId; } /** * @return string */ public function getFailedCheckId() { return $this->failedCheckId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AnalysisJobRun::class, 'Google_Service_CloudDeploy_AnalysisJobRun');