> For the complete documentation index, see [llms.txt](https://docs.ionos.com/ruby-sdk/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ionos.com/ruby-sdk/models/cpuarchitectureproperties.md).

# 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

```ruby
require 'ionoscloud'


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

  max_cores: 62,

  max_ram: 245760,

  vendor: AuthenticAMD
)
```
