You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/includes/cloudstack/_compute_offerings.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@ curl -X GET \
11
11
12
12
# The above command returns JSON structured like this:
13
13
```
14
+
14
15
```json
15
16
{
16
17
"data": [
@@ -44,12 +45,12 @@ Attributes |
44
45
---------- | -----
45
46
`id`<br/>*UUID* | The id of the compute offering
46
47
`name`<br/>*string* | The name of the compute offering
47
-
`memoryInMB`<br/>*int* | The amount of provisioned memory in MB
48
-
`cpuCount`<br/>*int* | The number of vCPUs available to the created [instance](#cloudstack-instances)
49
-
`custom`<br/>*boolean* | If true, the `cpuCount` and `memoryInMB` fields will be missing from the response and will be required on [instance create](#cloudstack-create-an-instance)
50
48
`availableCpuCountValues`<br/>*Array[integer]* | The list of valid cpu counts when used in the [create instance operation](#cloudstack-create-an-instance). Only present for custom offerings
51
49
`availableMemoryInMBValues`<br/>*Array[integer]* | The list of valid amounts of memory (in MB) that can be used in the [create instance operation](#cloudstack-create-an-instance). Only present for custom offerings
50
+
`cpuCount`<br/>*int* | The number of vCPUs available to the created [instance](#cloudstack-instances)
51
+
`custom`<br/>*boolean* | If true, the `cpuCount` and `memoryInMB` fields will be missing from the response and will be required on [instance create](#cloudstack-create-an-instance)
52
52
`maxMemoryInMBToCpuRatio`<br/>*integer* | The maximum ratio of memory (in MB) to number of CPU of an [instance](#cloudstack-instances) created with this offering. Only present for custom offerings.
53
+
`memoryInMB`<br/>*int* | The amount of provisioned memory in MB
53
54
54
55
#### Retrieve a compute offering
55
56
@@ -60,6 +61,7 @@ curl -X GET \
60
61
61
62
# The above command returns JSON structured like this:
0 commit comments