kubeletConfig = $kubeletConfig; } /** * @return BareMetalKubeletConfig */ public function getKubeletConfig() { return $this->kubeletConfig; } /** * @param string[] */ public function setLabels($labels) { $this->labels = $labels; } /** * @return string[] */ public function getLabels() { return $this->labels; } /** * @param BareMetalNodeConfig[] */ public function setNodeConfigs($nodeConfigs) { $this->nodeConfigs = $nodeConfigs; } /** * @return BareMetalNodeConfig[] */ public function getNodeConfigs() { return $this->nodeConfigs; } /** * @param string */ public function setOperatingSystem($operatingSystem) { $this->operatingSystem = $operatingSystem; } /** * @return string */ public function getOperatingSystem() { return $this->operatingSystem; } /** * @param NodeTaint[] */ public function setTaints($taints) { $this->taints = $taints; } /** * @return NodeTaint[] */ public function getTaints() { return $this->taints; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(BareMetalNodePoolConfig::class, 'Google_Service_GKEOnPrem_BareMetalNodePoolConfig');