Skip to content

Commit 3a716bd

Browse files
committed
docs(ins): remove references to b_ssd volumes
1 parent 37dd6c1 commit 3a716bd

File tree

10 files changed

+31
-323
lines changed

10 files changed

+31
-323
lines changed

menu/navigation.json

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1548,22 +1548,6 @@
15481548
"label": "Creating and Managing Instances",
15491549
"slug": "creating-managing-instances-with-cliv2"
15501550
},
1551-
{
1552-
"label": "Creating a volume via the Instance API",
1553-
"slug": "creating-a-volume"
1554-
},
1555-
{
1556-
"label": "Attaching a volume via the Instance API",
1557-
"slug": "attaching-a-volume"
1558-
},
1559-
{
1560-
"label": "Increasing volumes via the Instance API",
1561-
"slug": "increasing-volume-size"
1562-
},
1563-
{
1564-
"label": "Detaching a volume via the Instance API",
1565-
"slug": "detaching-a-volume"
1566-
},
15671551
{
15681552
"label": "Creating backups",
15691553
"slug": "creating-backups"

pages/instances/api-cli/attaching-a-volume.mdx

Lines changed: 0 additions & 138 deletions
This file was deleted.

pages/instances/api-cli/creating-a-volume.mdx

Lines changed: 0 additions & 51 deletions
This file was deleted.

pages/instances/api-cli/detaching-a-volume.mdx

Lines changed: 0 additions & 32 deletions
This file was deleted.

pages/instances/api-cli/increasing-volume-size.mdx

Lines changed: 0 additions & 55 deletions
This file was deleted.

pages/instances/api-cli/using-routed-ips.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ Run the following command to create an Instance with the previously created IP a
203203
"id": "ccc917ca-8250-4b7b-89a9-614f08b17826",
204204
"name": "Ubuntu 22.04 Jammy Jellyfish",
205205
"size": 10000000000,
206-
"volume_type": "b_ssd"
206+
"volume_type": "sbs_5k"
207207
},
208208
"state": "available",
209209
"tags": [],
@@ -384,7 +384,7 @@ And now we create the Instance.
384384
"id": "ccc917ca-8250-4b7b-89a9-614f08b17826",
385385
"name": "Ubuntu 22.04 Jammy Jellyfish",
386386
"size": 10000000000,
387-
"volume_type": "b_ssd"
387+
"volume_type": "sbs_5k"
388388
},
389389
"state": "available",
390390
"tags": [],
@@ -537,7 +537,7 @@ Then you can create a new Instance using those IPs through the `public_ips` fiel
537537
"id": "ccc917ca-8250-4b7b-89a9-614f08b17826",
538538
"name": "Ubuntu 22.04 Jammy Jellyfish",
539539
"size": 10000000000,
540-
"volume_type": "b_ssd"
540+
"volume_type": "sbs_5k"
541541
},
542542
"state": "available",
543543
"tags": [],
@@ -781,7 +781,7 @@ You can verify if your Instance is enabled for routed IPs through the `/servers`
781781
"id": "72d9e5b6-60c6-499b-be03-03c9fb07daa3",
782782
"name": "Ubuntu 22.04 Jammy Jellyfish",
783783
"size": 10000000000,
784-
"volume_type": "b_ssd"
784+
"volume_type": "sbs_5k"
785785
},
786786
"state": "available",
787787
"tags": [],
@@ -850,7 +850,7 @@ You can verify if your Instance is enabled for routed IPs through the `/servers`
850850
"size": 10000000000,
851851
"state": "available",
852852
"tags": [],
853-
"volume_type": "b_ssd",
853+
"volume_type": "sbs_5k",
854854
"zone": "pl-waw-2"
855855
}
856856
},
@@ -910,7 +910,7 @@ You can verify if your Instance is enabled for routed IPs through the `/servers`
910910
"id": "93dbf1e9-cd13-4f60-b427-6fa6b2ad5f99",
911911
"name": "Ubuntu 22.04 Jammy Jellyfish",
912912
"size": 10000000000,
913-
"volume_type": "b_ssd"
913+
"volume_type": "sbs_5k"
914914
},
915915
"state": "available",
916916
"tags": [],

pages/instances/how-to/create-an-instance.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ Select a tab below for instructions on how to create an Instance via either our
177177
| commercial-type | The commercial Instance type to create (string) | Any valid ID of a Scaleway commercial Instance type, e.g. `"GP1-S"`, `"PRO2-M"`. Use the [List Instance Types](https://www.scaleway.com/en/developers/api/instance/#path-instance-types-list-instance-types) endpoint to get a list of all valid Instance types and their IDs. |
178178
| image | The image to install on the Instance, e.g. a particular OS (string) | Any valid Scaleway image label, e.g. `ubuntu_noble` which is the label for the Ubuntu 24.04 Noble Numbat image. |
179179
| enable_ipv6 | Whether to enable IPv6 on the Instance (boolean) | `true` or `false` |
180-
| volumes | An object that specifies the storage volumes to attach to the Instance. Must respect the volume constraints of the `commercial_type` (i.e. for each type of Instance, a minimum amount of storage is required, and there is also a maximum that cannot be exceeded. Some Instance types support only Block Storage (`b_ssd`), others also support Local Storage (`l_ssd`) ). These constraints are available at the [List Instance Types](https://www.scaleway.com/en/developers/api/instance/#path-instance-types-list-instance-types) endpoint, via the `volume_constraints` parameter for each type listed in the response | A (dictionary) object with a minimum of one key (`"0"`) whose value is another object containing the parameters `"name"` (a name for the volume), `"size"` (the size for the volume, in bytes), and `"volume_type"` (`"l_ssd"` or `"b_ssd"`). Additional keys for additional volumes should increment by 1 each time (the second volume would have a key of `1`.) Further parameters are available, and it is possible to attach existing volumes rather than creating a new one, or create a volume from a snapshot. For full details see [here](https://www.scaleway.com/en/developers/api/instance/#path-volumes). |
180+
| volumes | An object that specifies the storage volumes to attach to the Instance. Must respect the volume constraints of the `commercial_type` (i.e. for each type of Instance, a minimum amount of storage is required, and there is also a maximum that cannot be exceeded. Some Instance types support only Block Storage (`sbs_5k` or `sbs_10k`), others also support Local Storage (`l_ssd`) ). These constraints are available at the [List Instance Types](https://www.scaleway.com/en/developers/api/instance/#path-instance-types-list-instance-types) endpoint, via the `volume_constraints` parameter for each type listed in the response | A (dictionary) object with a minimum of one key (`"0"`) whose value is another object containing the parameters `"name"` (a name for the volume), `"size"` (the size for the volume, in bytes), and `"volume_type"` (`"l_ssd"`, `sbs_5k`, or `"sbs_15k"`). Additional keys for additional volumes should increment by 1 each time (the second volume would have a key of `1`.) Further parameters are available, and it is possible to attach existing volumes rather than creating a new one, or create a volume from a snapshot. For full details see [here](https://www.scaleway.com/en/developers/api/instance/#path-volumes). |
181181

182182
4. Use the following curl command, replacing the payload with the one you specified in step 2, to create your Instance.
183183

pages/instances/how-to/create-image-from-snapshot.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ scw instance image create snapshot-id="$SCW_VOLUME_ID_1" additional-volumes.0.id
5555
[additional-volumes.{index}.id] UUID of the snapshot to add
5656
[additional-volumes.{index}.name] Name of the additional snapshot
5757
[additional-volumes.{index}.size] Size of the additional snapshot
58-
[additional-volumes.{index}.volume-type] Underlying volume type of the additional snapshot (l_ssd | b_ssd | unified | scratch | sbs_volume | sbs_snapshot)
58+
[additional-volumes.{index}.volume-type] Underlying volume type of the additional snapshot (l_ssd | sbs_5k | unified | scratch | sbs_volume | sbs_snapshot)
5959
[additional-volumes.{index}.project-id] Project ID that own the additional snapshot
6060
[project-id] Project ID to use. If none is passed the default project ID will be used
6161
[tags.{index}] Tags of the image
@@ -93,6 +93,6 @@ curl --location "https://api.scaleway.com/instance/v1/zones/$SCW_AVAILABILITY_ZO
9393
Supported volume IDs include:
9494
- Local Storage volumes (`l_ssd`)
9595
- Block Storage Low Latency volumes (`sbs`)
96-
- Block Storage legacy (`b_ssd`) volumes (deprecated).
96+
- Block Storage legacy (`sbs_5k`) volumes (deprecated).
9797
</Message>
9898

pages/instances/how-to/migrate-volumes-snapshots-to-sbs.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: How to migrate existing volumes and snapshots to Scaleway's new Block Storage management
33
description: Learn how to migrate your existing Block Storage volumes and snapshots to Scaleway's Block Storage management.
4-
tags: instance snapshot volume b_ssd sbs
4+
tags: instance snapshot volume sbs_5k sbs_15k sbs
55
dates:
66
validation: 2025-07-21
77
posted: 2024-08-07

0 commit comments

Comments
 (0)