Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookIdleShutdownConfig
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookIdleShutdownConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
The idle shutdown configuration of NotebookRuntimeTemplate, which contains the idle_timeout as required field.
Instance Attribute Summary collapse
-
#idle_shutdown_disabled ⇒ Boolean
(also: #idle_shutdown_disabled?)
Whether Idle Shutdown is disabled in this NotebookRuntimeTemplate.
-
#idle_timeout ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1NotebookIdleShutdownConfig
constructor
A new instance of GoogleCloudAiplatformV1beta1NotebookIdleShutdownConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1NotebookIdleShutdownConfig
Returns a new instance of GoogleCloudAiplatformV1beta1NotebookIdleShutdownConfig.
19381 19382 19383 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19381 def initialize(**args) update!(**args) end |
Instance Attribute Details
#idle_shutdown_disabled ⇒ Boolean Also known as: idle_shutdown_disabled?
Whether Idle Shutdown is disabled in this NotebookRuntimeTemplate.
Corresponds to the JSON property idleShutdownDisabled
19371 19372 19373 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19371 def idle_shutdown_disabled @idle_shutdown_disabled end |
#idle_timeout ⇒ String
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.
Corresponds to the JSON property idleTimeout
19379 19380 19381 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19379 def idle_timeout @idle_timeout end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
19386 19387 19388 19389 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19386 def update!(**args) @idle_shutdown_disabled = args[:idle_shutdown_disabled] if args.key?(:idle_shutdown_disabled) @idle_timeout = args[:idle_timeout] if args.key?(:idle_timeout) end |