Class: Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildexecutionAdminV1alphaAcceleratorConfig
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildexecutionAdminV1alphaAcceleratorConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/remotebuildexecution_v1/classes.rb,
lib/google/apis/remotebuildexecution_v1/representations.rb,
lib/google/apis/remotebuildexecution_v1/representations.rb
Overview
AcceleratorConfig defines the accelerator cards to attach to the VM.
Instance Attribute Summary collapse
-
#accelerator_count ⇒ Fixnum
The number of guest accelerator cards exposed to each VM.
-
#accelerator_type ⇒ String
The type of accelerator to attach to each VM, e.g.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDevtoolsRemotebuildexecutionAdminV1alphaAcceleratorConfig
constructor
A new instance of GoogleDevtoolsRemotebuildexecutionAdminV1alphaAcceleratorConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsRemotebuildexecutionAdminV1alphaAcceleratorConfig
Returns a new instance of GoogleDevtoolsRemotebuildexecutionAdminV1alphaAcceleratorConfig.
1718 1719 1720 |
# File 'lib/google/apis/remotebuildexecution_v1/classes.rb', line 1718 def initialize(**args) update!(**args) end |
Instance Attribute Details
#accelerator_count ⇒ Fixnum
The number of guest accelerator cards exposed to each VM.
Corresponds to the JSON property acceleratorCount
1710 1711 1712 |
# File 'lib/google/apis/remotebuildexecution_v1/classes.rb', line 1710 def accelerator_count @accelerator_count end |
#accelerator_type ⇒ String
The type of accelerator to attach to each VM, e.g. "nvidia-tesla-k80" for
nVidia Tesla K80.
Corresponds to the JSON property acceleratorType
1716 1717 1718 |
# File 'lib/google/apis/remotebuildexecution_v1/classes.rb', line 1716 def accelerator_type @accelerator_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1723 1724 1725 1726 |
# File 'lib/google/apis/remotebuildexecution_v1/classes.rb', line 1723 def update!(**args) @accelerator_count = args[:accelerator_count] if args.key?(:accelerator_count) @accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type) end |