accelerators = $accelerators; } /** * @return GkeNodePoolAcceleratorConfig[] */ public function getAccelerators() { return $this->accelerators; } /** * @param int */ public function setLocalSsdCount($localSsdCount) { $this->localSsdCount = $localSsdCount; } /** * @return int */ public function getLocalSsdCount() { return $this->localSsdCount; } /** * @param string */ public function setMachineType($machineType) { $this->machineType = $machineType; } /** * @return string */ public function getMachineType() { return $this->machineType; } /** * @param string */ public function setMinCpuPlatform($minCpuPlatform) { $this->minCpuPlatform = $minCpuPlatform; } /** * @return string */ public function getMinCpuPlatform() { return $this->minCpuPlatform; } /** * @param bool */ public function setPreemptible($preemptible) { $this->preemptible = $preemptible; } /** * @return bool */ public function getPreemptible() { return $this->preemptible; } /** * @param bool */ public function setSpot($spot) { $this->spot = $spot; } /** * @return bool */ public function getSpot() { return $this->spot; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GkeNodeConfig::class, 'Google_Service_Dataproc_GkeNodeConfig');