buildKey = $buildKey; } /** * @return string */ public function getBuildKey() { return $this->buildKey; } /** * Optional. Build value. * * @param string $buildValue */ public function setBuildValue($buildValue) { $this->buildValue = $buildValue; } /** * @return string */ public function getBuildValue() { return $this->buildValue; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(BuildInfo::class, 'Google_Service_Dataproc_BuildInfo');