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
@@ -1,6 +1,6 @@
🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲
🟥🟥🟥 STDERR️️ 🟥🟥🟥️
List all Operating System (OS). The response will include the total number of OS as well as their associated IDs, names and labels.
List all Operating Systems (OS). The response will include the total number of OS as well as their associated IDs, names and labels.

USAGE:
scw apple-silicon os list [arg=value ...]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ USAGE:

AVAILABLE COMMANDS:
get Get an Operating System (OS)
list List all Operating System (OS)
list List all Operating Systems (OS)

FLAGS:
-h, --help help for os
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲
🟥🟥🟥 STDERR️️ 🟥🟥🟥️
Get a server technical details.
Get technical details (CPU, disk size etc.) of a server type.

USAGE:
scw apple-silicon server-type get <server-type ...> [arg=value ...]
Expand Down
8 changes: 4 additions & 4 deletions docs/commands/apple-silicon.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Scaleway is not affiliated with Apple Inc.

- [OS management commands](#os-management-commands)
- [Get an Operating System (OS)](#get-an-operating-system-(os))
- [List all Operating System (OS)](#list-all-operating-system-(os))
- [List all Operating Systems (OS)](#list-all-operating-systems-(os))
- [Apple silicon management commands](#apple-silicon-management-commands)
- [Create a server](#create-a-server)
- [Delete a server](#delete-a-server)
Expand Down Expand Up @@ -55,9 +55,9 @@ scw apple-silicon os get <os-id ...> [arg=value ...]



### List all Operating System (OS)
### List all Operating Systems (OS)

List all Operating System (OS). The response will include the total number of OS as well as their associated IDs, names and labels.
List all Operating Systems (OS). The response will include the total number of OS as well as their associated IDs, names and labels.

**Usage:**

Expand Down Expand Up @@ -286,7 +286,7 @@ Server-Types management commands

### Get a server type

Get a server technical details.
Get technical details (CPU, disk size etc.) of a server type.

**Usage:**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func appleSiliconServerTypeList() *core.Command {
func appleSiliconServerTypeGet() *core.Command {
return &core.Command{
Short: `Get a server type`,
Long: `Get a server technical details.`,
Long: `Get technical details (CPU, disk size etc.) of a server type.`,
Namespace: "apple-silicon",
Resource: "server-type",
Verb: "get",
Expand Down Expand Up @@ -230,8 +230,8 @@ func appleSiliconServerList() *core.Command {

func appleSiliconOsList() *core.Command {
return &core.Command{
Short: `List all Operating System (OS)`,
Long: `List all Operating System (OS). The response will include the total number of OS as well as their associated IDs, names and labels.`,
Short: `List all Operating Systems (OS)`,
Long: `List all Operating Systems (OS). The response will include the total number of OS as well as their associated IDs, names and labels.`,
Namespace: "apple-silicon",
Resource: "os",
Verb: "list",
Expand Down