airflowConfigOverrides = $airflowConfigOverrides; } /** * @return string[] */ public function getAirflowConfigOverrides() { return $this->airflowConfigOverrides; } /** * @param string[] */ public function setEnvVariables($envVariables) { $this->envVariables = $envVariables; } /** * @return string[] */ public function getEnvVariables() { return $this->envVariables; } /** * @param string */ public function setImageVersion($imageVersion) { $this->imageVersion = $imageVersion; } /** * @return string */ public function getImageVersion() { return $this->imageVersion; } /** * @param string[] */ public function setPypiPackages($pypiPackages) { $this->pypiPackages = $pypiPackages; } /** * @return string[] */ public function getPypiPackages() { return $this->pypiPackages; } /** * @param string */ public function setPythonVersion($pythonVersion) { $this->pythonVersion = $pythonVersion; } /** * @return string */ public function getPythonVersion() { return $this->pythonVersion; } /** * @param int */ public function setSchedulerCount($schedulerCount) { $this->schedulerCount = $schedulerCount; } /** * @return int */ public function getSchedulerCount() { return $this->schedulerCount; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SoftwareConfig::class, 'Google_Service_CloudComposer_SoftwareConfig');