Class: Google::Apis::AlloydbV1beta::MachineConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/alloydb_v1beta/classes.rb,
lib/google/apis/alloydb_v1beta/representations.rb,
lib/google/apis/alloydb_v1beta/representations.rb

Overview

MachineConfig describes the configuration of a machine.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MachineConfig

Returns a new instance of MachineConfig.



2572
2573
2574
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 2572

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#cpu_countFixnum

The number of CPU's in the VM instance. Corresponds to the JSON property cpuCount

Returns:

  • (Fixnum)


2564
2565
2566
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 2564

def cpu_count
  @cpu_count
end

#machine_typeString

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

Returns:

  • (String)


2570
2571
2572
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 2570

def machine_type
  @machine_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2577
2578
2579
2580
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 2577

def update!(**args)
  @cpu_count = args[:cpu_count] if args.key?(:cpu_count)
  @machine_type = args[:machine_type] if args.key?(:machine_type)
end