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: docs/commands/baremetal.md
+75Lines changed: 75 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,9 @@ Elastic metal API
6
6
-[Get BMC (Baseboard Management Controller) access for a given elastic metal server](#get-bmc-(baseboard-management-controller)-access-for-a-given-elastic-metal-server)
7
7
-[Start BMC (Baseboard Management Controller) access for a given elastic metal server](#start-bmc-(baseboard-management-controller)-access-for-a-given-elastic-metal-server)
8
8
-[Stop BMC (Baseboard Management Controller) access for a given elastic metal server](#stop-bmc-(baseboard-management-controller)-access-for-a-given-elastic-metal-server)
Server offers will answer with all different elastic metal server ranges available in a given zone.
106
+
Each of them will contain all the features of the server (cpus, memories, disks) with their associated pricing.
107
+
108
+
109
+
110
+
### Get offer
111
+
112
+
Return specific offer for the given ID.
113
+
114
+
**Usage:**
115
+
116
+
```
117
+
scw baremetal offer get [arg=value ...]
118
+
```
119
+
120
+
121
+
**Args:**
122
+
123
+
| Name || Description |
124
+
|------|---|-------------|
125
+
| offer-id | Required | ID of the researched Offer |
126
+
| zone | Default: `fr-par-1`<br />One of: `fr-par-1`, `fr-par-2`, `nl-ams-1`| Zone to target. If none is passed will use default zone from the config |
127
+
128
+
129
+
**Examples:**
130
+
131
+
132
+
Get a server offer with the given ID
133
+
```
134
+
scw baremetal offer get zone=fr-par-1 offer-id=11111111-1111-1111-1111-111111111111
135
+
```
136
+
137
+
138
+
139
+
140
+
### List offers
141
+
142
+
List all available server offers.
143
+
144
+
**Usage:**
145
+
146
+
```
147
+
scw baremetal offer list [arg=value ...]
148
+
```
149
+
150
+
151
+
**Args:**
152
+
153
+
| Name || Description |
154
+
|------|---|-------------|
155
+
| subscription-period | One of: `unknown_subscription_period`, `hourly`, `monthly`| Period of subscription to filter offers |
156
+
| zone | Default: `fr-par-1`<br />One of: `fr-par-1`, `fr-par-2`, `nl-ams-1`| Zone to target. If none is passed will use default zone from the config |
157
+
158
+
159
+
**Examples:**
160
+
161
+
162
+
List all server offers in the default zone
163
+
```
164
+
scw baremetal offer list
165
+
```
166
+
167
+
List all server offers in fr-par-1 zone
168
+
```
169
+
scw baremetal offer list zone=fr-par-1
170
+
```
171
+
172
+
173
+
174
+
100
175
## Operating System (OS) management commands
101
176
102
177
An Operating System (OS) is the underlying software installed on your server
0 commit comments