accelerators = $accelerators; } /** * @return AcceleratorConfig[] */ public function getAccelerators() { return $this->accelerators; } /** * @param AdvancedMachineFeatures */ public function setAdvancedMachineFeatures(AdvancedMachineFeatures $advancedMachineFeatures) { $this->advancedMachineFeatures = $advancedMachineFeatures; } /** * @return AdvancedMachineFeatures */ public function getAdvancedMachineFeatures() { return $this->advancedMachineFeatures; } /** * @param string */ public function setBootDiskKmsKey($bootDiskKmsKey) { $this->bootDiskKmsKey = $bootDiskKmsKey; } /** * @return string */ public function getBootDiskKmsKey() { return $this->bootDiskKmsKey; } /** * @param int */ public function setDiskSizeGb($diskSizeGb) { $this->diskSizeGb = $diskSizeGb; } /** * @return int */ public function getDiskSizeGb() { return $this->diskSizeGb; } /** * @param string */ public function setDiskType($diskType) { $this->diskType = $diskType; } /** * @return string */ public function getDiskType() { return $this->diskType; } /** * @param GcfsConfig */ public function setGcfsConfig(GcfsConfig $gcfsConfig) { $this->gcfsConfig = $gcfsConfig; } /** * @return GcfsConfig */ public function getGcfsConfig() { return $this->gcfsConfig; } /** * @param VirtualNIC */ public function setGvnic(VirtualNIC $gvnic) { $this->gvnic = $gvnic; } /** * @return VirtualNIC */ public function getGvnic() { return $this->gvnic; } /** * @param string */ public function setImageType($imageType) { $this->imageType = $imageType; } /** * @return string */ public function getImageType() { return $this->imageType; } /** * @param NodeKubeletConfig */ public function setKubeletConfig(NodeKubeletConfig $kubeletConfig) { $this->kubeletConfig = $kubeletConfig; } /** * @return NodeKubeletConfig */ public function getKubeletConfig() { return $this->kubeletConfig; } /** * @param string[] */ public function setLabels($labels) { $this->labels = $labels; } /** * @return string[] */ public function getLabels() { return $this->labels; } /** * @param LinuxNodeConfig */ public function setLinuxNodeConfig(LinuxNodeConfig $linuxNodeConfig) { $this->linuxNodeConfig = $linuxNodeConfig; } /** * @return LinuxNodeConfig */ public function getLinuxNodeConfig() { return $this->linuxNodeConfig; } /** * @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 setMetadata($metadata) { $this->metadata = $metadata; } /** * @return string[] */ public function getMetadata() { return $this->metadata; } /** * @param string */ public function setMinCpuPlatform($minCpuPlatform) { $this->minCpuPlatform = $minCpuPlatform; } /** * @return string */ public function getMinCpuPlatform() { return $this->minCpuPlatform; } /** * @param string */ public function setNodeGroup($nodeGroup) { $this->nodeGroup = $nodeGroup; } /** * @return string */ public function getNodeGroup() { return $this->nodeGroup; } /** * @param string[] */ public function setOauthScopes($oauthScopes) { $this->oauthScopes = $oauthScopes; } /** * @return string[] */ public function getOauthScopes() { return $this->oauthScopes; } /** * @param bool */ public function setPreemptible($preemptible) { $this->preemptible = $preemptible; } /** * @return bool */ public function getPreemptible() { return $this->preemptible; } /** * @param ReservationAffinity */ public function setReservationAffinity(ReservationAffinity $reservationAffinity) { $this->reservationAffinity = $reservationAffinity; } /** * @return ReservationAffinity */ public function getReservationAffinity() { return $this->reservationAffinity; } /** * @param SandboxConfig */ public function setSandboxConfig(SandboxConfig $sandboxConfig) { $this->sandboxConfig = $sandboxConfig; } /** * @return SandboxConfig */ public function getSandboxConfig() { return $this->sandboxConfig; } /** * @param string */ public function setServiceAccount($serviceAccount) { $this->serviceAccount = $serviceAccount; } /** * @return string */ public function getServiceAccount() { return $this->serviceAccount; } /** * @param ShieldedInstanceConfig */ public function setShieldedInstanceConfig(ShieldedInstanceConfig $shieldedInstanceConfig) { $this->shieldedInstanceConfig = $shieldedInstanceConfig; } /** * @return ShieldedInstanceConfig */ public function getShieldedInstanceConfig() { return $this->shieldedInstanceConfig; } /** * @param bool */ public function setSpot($spot) { $this->spot = $spot; } /** * @return bool */ public function getSpot() { return $this->spot; } /** * @param string[] */ public function setTags($tags) { $this->tags = $tags; } /** * @return string[] */ public function getTags() { return $this->tags; } /** * @param NodeTaint[] */ public function setTaints($taints) { $this->taints = $taints; } /** * @return NodeTaint[] */ public function getTaints() { return $this->taints; } /** * @param WorkloadMetadataConfig */ public function setWorkloadMetadataConfig(WorkloadMetadataConfig $workloadMetadataConfig) { $this->workloadMetadataConfig = $workloadMetadataConfig; } /** * @return WorkloadMetadataConfig */ public function getWorkloadMetadataConfig() { return $this->workloadMetadataConfig; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(NodeConfig::class, 'Google_Service_Container_NodeConfig');