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: scaleway-async/scaleway_async/instance/v1/api.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -934,11 +934,11 @@ async def server_action(
934
934
* `stop_in_place`: Stop the Instance, but keep the slot on the hypervisor.
935
935
* `reboot`: Stop the instance and restart it.
936
936
* `backup`: Create an image with all the volumes of an Instance.
937
-
* `terminate`: Delete the Instance along with its attached volumes, except for SBS volumes.
937
+
* `terminate`: Delete the Instance along with its attached local volumes.
938
938
* `enable_routed_ip`: Migrate the Instance to the new network stack.
939
939
940
-
The `terminate` action will result in the deletion of `l_ssd`, `b_ssd` and `scratch` volumes types, `sbs_volume` volumes type will only be detached.
941
-
If you want to preserve your volumes, you should detach them before the Instance deletion or `terminate` action.
940
+
The `terminate` action will result in the deletion of `l_ssd`and `scratch` volumes types, `sbs_volume` volumes will only be detached.
941
+
If you want to preserve your `l_ssd` volumes, you should stop your Instance, detach the volumes to be preserved, then delete your Instance.
942
942
943
943
The `backup` action can be done with:
944
944
* No `volumes` key in the body: an image is created with snapshots of all the server volumes, except for the `scratch` volumes types.
@@ -2208,7 +2208,7 @@ async def update_volume(
2208
2208
) ->UpdateVolumeResponse:
2209
2209
"""
2210
2210
Update a volume.
2211
-
Replace the name and/or size properties of a volume specified by its ID, with the specified value(s). Any volume name can be changed, however only `b_ssd` volumes can currently be increased in size.
2211
+
Replace the name and/or size properties of a volume specified by its ID, with the specified value(s).
2212
2212
:param volume_id: UUID of the volume.
2213
2213
:param zone: Zone to target. If none is passed will use default zone from the config.
Copy file name to clipboardExpand all lines: scaleway/scaleway/instance/v1/api.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -934,11 +934,11 @@ def server_action(
934
934
* `stop_in_place`: Stop the Instance, but keep the slot on the hypervisor.
935
935
* `reboot`: Stop the instance and restart it.
936
936
* `backup`: Create an image with all the volumes of an Instance.
937
-
* `terminate`: Delete the Instance along with its attached volumes, except for SBS volumes.
937
+
* `terminate`: Delete the Instance along with its attached local volumes.
938
938
* `enable_routed_ip`: Migrate the Instance to the new network stack.
939
939
940
-
The `terminate` action will result in the deletion of `l_ssd`, `b_ssd` and `scratch` volumes types, `sbs_volume` volumes type will only be detached.
941
-
If you want to preserve your volumes, you should detach them before the Instance deletion or `terminate` action.
940
+
The `terminate` action will result in the deletion of `l_ssd`and `scratch` volumes types, `sbs_volume` volumes will only be detached.
941
+
If you want to preserve your `l_ssd` volumes, you should stop your Instance, detach the volumes to be preserved, then delete your Instance.
942
942
943
943
The `backup` action can be done with:
944
944
* No `volumes` key in the body: an image is created with snapshots of all the server volumes, except for the `scratch` volumes types.
@@ -2208,7 +2208,7 @@ def update_volume(
2208
2208
) ->UpdateVolumeResponse:
2209
2209
"""
2210
2210
Update a volume.
2211
-
Replace the name and/or size properties of a volume specified by its ID, with the specified value(s). Any volume name can be changed, however only `b_ssd` volumes can currently be increased in size.
2211
+
Replace the name and/or size properties of a volume specified by its ID, with the specified value(s).
2212
2212
:param volume_id: UUID of the volume.
2213
2213
:param zone: Zone to target. If none is passed will use default zone from the config.
0 commit comments