diff --git a/cmd/scw/testdata/test-all-usage-instance-usage.golden b/cmd/scw/testdata/test-all-usage-instance-usage.golden index 7564824deb..dd3638d873 100644 --- a/cmd/scw/testdata/test-all-usage-instance-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-usage.golden @@ -1,6 +1,6 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -This API allows you to manage your Instances. +This API allows you to manage your CPU and GPU Instances. USAGE: scw instance diff --git a/cmd/scw/testdata/test-main-usage-usage.golden b/cmd/scw/testdata/test-main-usage-usage.golden index 760cd1059b..dc34a753e5 100644 --- a/cmd/scw/testdata/test-main-usage-usage.golden +++ b/cmd/scw/testdata/test-main-usage-usage.golden @@ -12,7 +12,7 @@ BAREMETAL COMMANDS: fip This API allows you to manage your Elastic Metal servers' flexible public IP addresses COMPUTE COMMANDS: - instance This API allows you to manage your Instances + instance This API allows you to manage your CPU and GPU Instances marketplace This API allows you to find available images for use when launching a Scaleway Instance CONFIGURATION COMMANDS: diff --git a/docs/commands/instance.md b/docs/commands/instance.md index 96ac79e4c9..270dd6e27a 100644 --- a/docs/commands/instance.md +++ b/docs/commands/instance.md @@ -1,6 +1,6 @@ # Documentation for `scw instance` -This API allows you to manage your Instances. +This API allows you to manage your CPU and GPU Instances. - [Image management commands](#image-management-commands) - [Create an Instance image](#create-an-instance-image) diff --git a/internal/namespaces/instance/v1/instance_cli.go b/internal/namespaces/instance/v1/instance_cli.go index e8a4b0d89e..bbb7eaa414 100644 --- a/internal/namespaces/instance/v1/instance_cli.go +++ b/internal/namespaces/instance/v1/instance_cli.go @@ -96,8 +96,8 @@ func GetGeneratedCommands() *core.Commands { } func instanceRoot() *core.Command { return &core.Command{ - Short: `This API allows you to manage your Instances`, - Long: `This API allows you to manage your Instances.`, + Short: `This API allows you to manage your CPU and GPU Instances`, + Long: `This API allows you to manage your CPU and GPU Instances.`, Namespace: "instance", } }