coolingThresholdDays = $coolingThresholdDays; } /** * @return int */ public function getCoolingThresholdDays() { return $this->coolingThresholdDays; } /** * Optional. Flag indicating that the hot tier bypass mode is enabled. Default * is false. This is only applicable to Flex service level. * * @param bool $hotTierBypassModeEnabled */ public function setHotTierBypassModeEnabled($hotTierBypassModeEnabled) { $this->hotTierBypassModeEnabled = $hotTierBypassModeEnabled; } /** * @return bool */ public function getHotTierBypassModeEnabled() { return $this->hotTierBypassModeEnabled; } /** * Optional. Flag indicating if the volume has tiering policy enable/pause. * Default is PAUSED. * * Accepted values: TIER_ACTION_UNSPECIFIED, ENABLED, PAUSED * * @param self::TIER_ACTION_* $tierAction */ public function setTierAction($tierAction) { $this->tierAction = $tierAction; } /** * @return self::TIER_ACTION_* */ public function getTierAction() { return $this->tierAction; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TieringPolicy::class, 'Google_Service_NetAppFiles_TieringPolicy');