containerConcurrency = $containerConcurrency; } /** * @return int */ public function getContainerConcurrency() { return $this->containerConcurrency; } /** * @param Container[] */ public function setContainers($containers) { $this->containers = $containers; } /** * @return Container[] */ public function getContainers() { return $this->containers; } /** * @param string */ public function setServiceAccountName($serviceAccountName) { $this->serviceAccountName = $serviceAccountName; } /** * @return string */ public function getServiceAccountName() { return $this->serviceAccountName; } /** * @param int */ public function setTimeoutSeconds($timeoutSeconds) { $this->timeoutSeconds = $timeoutSeconds; } /** * @return int */ public function getTimeoutSeconds() { return $this->timeoutSeconds; } /** * @param Volume[] */ public function setVolumes($volumes) { $this->volumes = $volumes; } /** * @return Volume[] */ public function getVolumes() { return $this->volumes; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RevisionSpec::class, 'Google_Service_CloudRun_RevisionSpec');