Class: Google::Apis::ContainerV1::GpuDriverInstallationConfig
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::GpuDriverInstallationConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/container_v1/classes.rb,
lib/google/apis/container_v1/representations.rb,
lib/google/apis/container_v1/representations.rb
Overview
GPUDriverInstallationConfig specifies the version of GPU driver to be auto installed.
Instance Attribute Summary collapse
-
#gpu_driver_version ⇒ String
Mode for how the GPU driver is installed.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GpuDriverInstallationConfig
constructor
A new instance of GpuDriverInstallationConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GpuDriverInstallationConfig
Returns a new instance of GpuDriverInstallationConfig.
2607 2608 2609 |
# File 'lib/google/apis/container_v1/classes.rb', line 2607 def initialize(**args) update!(**args) end |
Instance Attribute Details
#gpu_driver_version ⇒ String
Mode for how the GPU driver is installed.
Corresponds to the JSON property gpuDriverVersion
2605 2606 2607 |
# File 'lib/google/apis/container_v1/classes.rb', line 2605 def gpu_driver_version @gpu_driver_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2612 2613 2614 |
# File 'lib/google/apis/container_v1/classes.rb', line 2612 def update!(**args) @gpu_driver_version = args[:gpu_driver_version] if args.key?(:gpu_driver_version) end |