Sha256: 6972b3342a6bbf6c938ddcc8e4c9974642da5c1635e415d3ba06821b5524f9be

Contents?: true

Size: 1.78 KB

Versions: 4

Compression:

Stored size: 1.78 KB

Contents

# ServerProperties

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **template_uuid** | **String** | The UUID of the template for creating a CUBE server; the available templates for CUBE servers can be found on the templates resource | [optional] |
| **name** | **String** | A name of that resource | [optional] |
| **cores** | **Integer** | The total number of cores for the server |  |
| **ram** | **Integer** | The amount of memory for the server in MB, e.g. 2048. Size must be specified in multiples of 256 MB with a minimum of 256 MB; however, if you set ramHotPlug to TRUE then you must use a minimum of 1024 MB. If you set the RAM size more than 240GB, then ramHotPlug will be set to FALSE and can not be set to TRUE unless RAM size not set to less than 240GB. |  |
| **availability_zone** | **String** | The availability zone in which the server should exist | [optional] |
| **vm_state** | **String** | Status of the virtual Machine | [optional][readonly] |
| **boot_cdrom** | [**ResourceReference**](ResourceReference.md) |  | [optional] |
| **boot_volume** | [**ResourceReference**](ResourceReference.md) |  | [optional] |
| **cpu_family** | **String** | CPU architecture on which server gets provisioned; not all CPU architectures are available in all datacenter regions; available CPU architectures can be retrieved from the datacenter resource | [optional] |
| **type** | **String** | server usages: ENTERPRISE or CUBE | [optional] |

## Example

```ruby
require 'ionoscloud'

instance = Ionoscloud::ServerProperties.new(
  template_uuid: 15f67991-0f51-4efc-a8ad-ef1fb31a480c,
  name: My resource,
  cores: 4,
  ram: 4096,
  availability_zone: AUTO,
  vm_state: RUNNING,
  boot_cdrom: null,
  boot_volume: null,
  cpu_family: AMD_OPTERON,
  type: CUBE
)
```

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ionoscloud-6.0.0.beta.4 docs/models/ServerProperties.md
ionoscloud-6.0.0.beta.3 docs/ServerProperties.md
ionoscloud-6.0.0.beta.2 docs/ServerProperties.md
ionoscloud-6.0.0.beta.1 docs/ServerProperties.md