CpuArchitectureProperties

Properties

| cpu_family | String | A valid CPU family name. | [optional] |

| max_cores | Integer | The maximum number of cores available. | [optional] |

| max_ram | Integer | The maximum RAM size in MB. | [optional] |

| vendor | String | A valid CPU vendor name. | [optional] |

Example

require 'ionoscloud'


instance = Ionoscloud::CpuArchitectureProperties.new(
  cpu_family: AMD_OPTERON,

  max_cores: 62,

  max_ram: 245760,

  vendor: AuthenticAMD
)

Last updated