deprecateTime = $deprecateTime; } /** * @return string */ public function getDeprecateTime() { return $this->deprecateTime; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setObsoleteTime($obsoleteTime) { $this->obsoleteTime = $obsoleteTime; } /** * @return string */ public function getObsoleteTime() { return $this->obsoleteTime; } /** * @param string */ public function setState($state) { $this->state = $state; } /** * @return string */ public function getState() { return $this->state; } /** * @param string */ public function setSupportTime($supportTime) { $this->supportTime = $supportTime; } /** * @return string */ public function getSupportTime() { return $this->supportTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TerraformVersion::class, 'Google_Service_Config_TerraformVersion');