Class: Google::Apis::AlloydbV1alpha::MachineConfig
- Inherits:
-
Object
- Object
- Google::Apis::AlloydbV1alpha::MachineConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/alloydb_v1alpha/classes.rb,
lib/google/apis/alloydb_v1alpha/representations.rb,
lib/google/apis/alloydb_v1alpha/representations.rb
Overview
MachineConfig describes the configuration of a machine.
Instance Attribute Summary collapse
-
#cpu_count ⇒ Fixnum
The number of CPU's in the VM instance.
-
#machine_type ⇒ String
Machine type of the VM instance.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MachineConfig
constructor
A new instance of MachineConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MachineConfig
Returns a new instance of MachineConfig.
2606 2607 2608 |
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 2606 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cpu_count ⇒ Fixnum
The number of CPU's in the VM instance.
Corresponds to the JSON property cpuCount
2598 2599 2600 |
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 2598 def cpu_count @cpu_count end |
#machine_type ⇒ String
Machine type of the VM instance. E.g. "n2-highmem-4", "n2-highmem-8", "c4a-
highmem-4-lssd". cpu_count must match the number of vCPUs in the machine type.
Corresponds to the JSON property machineType
2604 2605 2606 |
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 2604 def machine_type @machine_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2611 2612 2613 2614 |
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 2611 def update!(**args) @cpu_count = args[:cpu_count] if args.key?(:cpu_count) @machine_type = args[:machine_type] if args.key?(:machine_type) end |