Class: Google::Apis::NotebooksV1::SwitchRuntimeRequest
- Inherits:
-
Object
- Object
- Google::Apis::NotebooksV1::SwitchRuntimeRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/notebooks_v1/classes.rb,
lib/google/apis/notebooks_v1/representations.rb,
lib/google/apis/notebooks_v1/representations.rb more...
Overview
Request for switching a Managed Notebook Runtime.
Instance Attribute Summary collapse
-
#accelerator_config ⇒ Google::Apis::NotebooksV1::RuntimeAcceleratorConfig
Definition of the types of hardware accelerators that can be used.
-
#machine_type ⇒ String
machine type.
-
#request_id ⇒ String
Idempotent request UUID.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SwitchRuntimeRequest
constructor
A new instance of SwitchRuntimeRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SwitchRuntimeRequest
Returns a new instance of SwitchRuntimeRequest.
2991 2992 2993 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2991 def initialize(**args) update!(**args) end |
Instance Attribute Details
#accelerator_config ⇒ Google::Apis::NotebooksV1::RuntimeAcceleratorConfig
Definition of the types of hardware accelerators that can be used. See
Compute Engine AcceleratorTypes. Examples: * nvidia-tesla-k80
* nvidia-
tesla-p100
* nvidia-tesla-v100
* nvidia-tesla-p4
* nvidia-tesla-t4
*
nvidia-tesla-a100
Corresponds to the JSON property acceleratorConfig
2979 2980 2981 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2979 def accelerator_config @accelerator_config end |
#machine_type ⇒ String
machine type.
Corresponds to the JSON property machineType
2984 2985 2986 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2984 def machine_type @machine_type end |
#request_id ⇒ String
Idempotent request UUID.
Corresponds to the JSON property requestId
2989 2990 2991 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2989 def request_id @request_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2996 2997 2998 2999 3000 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2996 def update!(**args) @accelerator_config = args[:accelerator_config] if args.key?(:accelerator_config) @machine_type = args[:machine_type] if args.key?(:machine_type) @request_id = args[:request_id] if args.key?(:request_id) end |