Class: Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildexecutionAdminV1alphaAcceleratorConfig
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildexecutionAdminV1alphaAcceleratorConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/remotebuildexecution_v1alpha/classes.rb,
generated/google/apis/remotebuildexecution_v1alpha/representations.rb,
generated/google/apis/remotebuildexecution_v1alpha/representations.rb
Overview
AcceleratorConfig defines the accelerator cards to attach to the VM.
Instance Attribute Summary collapse
-
#accelerator_count ⇒ Fixnum
The number of the guest accelerator cards exposed to this VM.
-
#accelerator_type ⇒ String
The type of accelerator to attach to this VM, e.g.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDevtoolsRemotebuildexecutionAdminV1alphaAcceleratorConfig
constructor
A new instance of GoogleDevtoolsRemotebuildexecutionAdminV1alphaAcceleratorConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsRemotebuildexecutionAdminV1alphaAcceleratorConfig
Returns a new instance of GoogleDevtoolsRemotebuildexecutionAdminV1alphaAcceleratorConfig
1591 1592 1593 |
# File 'generated/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1591 def initialize(**args) update!(**args) end |
Instance Attribute Details
#accelerator_count ⇒ Fixnum
The number of the guest accelerator cards exposed to this VM.
Corresponds to the JSON property acceleratorCount
1583 1584 1585 |
# File 'generated/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1583 def accelerator_count @accelerator_count end |
#accelerator_type ⇒ String
The type of accelerator to attach to this VM, e.g. "nvidia-tesla-k80" for
nVidia Tesla K80.
Corresponds to the JSON property acceleratorType
1589 1590 1591 |
# File 'generated/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1589 def accelerator_type @accelerator_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1596 1597 1598 1599 |
# File 'generated/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1596 def update!(**args) @accelerator_count = args[:accelerator_count] if args.key?(:accelerator_count) @accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type) end |