idleShutdownDisabled = $idleShutdownDisabled; } /** * @return bool */ public function getIdleShutdownDisabled() { return $this->idleShutdownDisabled; } /** * Required. Duration is accurate to the second. In Notebook, Idle Timeout is * accurate to minute so the range of idle_timeout (second) is: 10 * 60 ~ 1440 * * 60. * * @param string $idleTimeout */ public function setIdleTimeout($idleTimeout) { $this->idleTimeout = $idleTimeout; } /** * @return string */ public function getIdleTimeout() { return $this->idleTimeout; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudAiplatformV1NotebookIdleShutdownConfig::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1NotebookIdleShutdownConfig');