autoscalingPolicies = $autoscalingPolicies; } /** * @return AutoscalingPolicy[] */ public function getAutoscalingPolicies() { return $this->autoscalingPolicies; } /** * @param string */ public function setCoolDownPeriod($coolDownPeriod) { $this->coolDownPeriod = $coolDownPeriod; } /** * @return string */ public function getCoolDownPeriod() { return $this->coolDownPeriod; } /** * @param int */ public function setMaxClusterNodeCount($maxClusterNodeCount) { $this->maxClusterNodeCount = $maxClusterNodeCount; } /** * @return int */ public function getMaxClusterNodeCount() { return $this->maxClusterNodeCount; } /** * @param int */ public function setMinClusterNodeCount($minClusterNodeCount) { $this->minClusterNodeCount = $minClusterNodeCount; } /** * @return int */ public function getMinClusterNodeCount() { return $this->minClusterNodeCount; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AutoscalingSettings::class, 'Google_Service_VMwareEngine_AutoscalingSettings');