Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ARGS:
[tags.{index}] Tags to apply to the Database Instance
[init-settings.{index}.name]
[init-settings.{index}.value]
[volume-type] Type of volume where data is stored (lssd, bssd, ...) (lssd | bssd)
[volume-type] Type of volume where data is stored (lssd, bssd, ...) (lssd | bssd | sbs)
[volume-size] Volume size when volume_type is not lssd
[init-endpoints.{index}.private-network.private-network-id] UUID of the Private Network to be connected to the Database Instance
[init-endpoints.{index}.private-network.service-ip] Endpoint IPv4 address with a CIDR notation. Refer to the official Scaleway documentation to learn more about IP and subnet limitations.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ARGS:
[node-type] Node type of the Database Instance you want to upgrade to
[enable-ha] Defines whether or not high availability should be enabled on the Database Instance
[volume-size] Increase your block storage volume size
[volume-type] Change your Database Instance storage type (lssd | bssd)
[volume-type] Change your Database Instance storage type (lssd | bssd | sbs)
[upgradable-version-id] Update your database engine to a newer version
[region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw)

Expand Down
4 changes: 2 additions & 2 deletions docs/commands/rdb.md
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ scw rdb instance create [arg=value ...]
| tags.{index} | | Tags to apply to the Database Instance |
| init-settings.{index}.name | | |
| init-settings.{index}.value | | |
| volume-type | One of: `lssd`, `bssd` | Type of volume where data is stored (lssd, bssd, ...) |
| volume-type | One of: `lssd`, `bssd`, `sbs` | Type of volume where data is stored (lssd, bssd, ...) |
| volume-size | | Volume size when volume_type is not lssd |
| init-endpoints.{index}.private-network.private-network-id | | UUID of the Private Network to be connected to the Database Instance |
| init-endpoints.{index}.private-network.service-ip | | Endpoint IPv4 address with a CIDR notation. Refer to the official Scaleway documentation to learn more about IP and subnet limitations. |
Expand Down Expand Up @@ -922,7 +922,7 @@ scw rdb instance upgrade <instance-id ...> [arg=value ...]
| node-type | | Node type of the Database Instance you want to upgrade to |
| enable-ha | | Defines whether or not high availability should be enabled on the Database Instance |
| volume-size | | Increase your block storage volume size |
| volume-type | One of: `lssd`, `bssd` | Change your Database Instance storage type |
| volume-type | One of: `lssd`, `bssd`, `sbs` | Change your Database Instance storage type |
| upgradable-version-id | | Update your database engine to a newer version |
| region | Default: `fr-par`<br />One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config |

Expand Down
4 changes: 2 additions & 2 deletions internal/namespaces/rdb/v1/rdb_cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ func rdbInstanceUpgrade() *core.Command {
Required: false,
Deprecated: false,
Positional: false,
EnumValues: []string{"lssd", "bssd"},
EnumValues: []string{"lssd", "bssd", "sbs"},
},
{
Name: "upgradable-version-id",
Expand Down Expand Up @@ -929,7 +929,7 @@ func rdbInstanceCreate() *core.Command {
Required: false,
Deprecated: false,
Positional: false,
EnumValues: []string{"lssd", "bssd"},
EnumValues: []string{"lssd", "bssd", "sbs"},
},
{
Name: "volume-size",
Expand Down