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
16 changes: 16 additions & 0 deletions cmd/scw/testdata/test-all-usage-domain-usage.golden
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲
🟥🟥🟥 STDERR️️ 🟥🟥🟥️
Manage your domains and contacts.

USAGE:
scw domain

FLAGS:
-h, --help help for domain
--list-sub-commands List all subcommands

GLOBAL FLAGS:
-c, --config string The path to the config file
-D, --debug Enable debug mode
-o, --output string Output format: json or human, see 'scw help output' for more info (default "human")
-p, --profile string The config profile to use
1 change: 1 addition & 0 deletions cmd/scw/testdata/test-main-usage-usage.golden
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ AI COMMANDS:

AVAILABLE COMMANDS:
datalab Data Lab API for Apache Spark™
domain Domains and DNS - Registrar API

BAREMETAL COMMANDS:
apple-silicon Apple silicon API
Expand Down
6 changes: 6 additions & 0 deletions docs/commands/domain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<!-- DO NOT EDIT: this file is automatically generated using scw-doc-gen -->
# Documentation for `scw domain`
Manage your domains and contacts.



2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ require (
github.com/moby/buildkit v0.28.0
github.com/moby/go-archive v0.2.0
github.com/opencontainers/go-digest v1.0.0
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.36.0.20260316103241-3ecf8306ce64
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.36.0.20260318093803-884e805f81ce
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
github.com/spf13/cobra v1.10.2
github.com/spf13/pflag v1.0.10
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -476,8 +476,8 @@ github.com/rogpeppe/go-internal v1.14.1/go.mod h1:MaRKkUm5W0goXpeCfT7UZI6fk/L7L7
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 h1:OkMGxebDjyw0ULyrTYWeN0UNCCkmCWfjPnIA2W6oviI=
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06/go.mod h1:+ePHsJ1keEjQtpvf9HHw0f4ZeJ0TLRsxhunSI2hYJSs=
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.36.0.20260316103241-3ecf8306ce64 h1:wXpcK+W/EOdVu62G+knMgLHdTrMlmxzkpQkzFy3re9M=
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.36.0.20260316103241-3ecf8306ce64/go.mod h1:SKcIU6lqwljcpjOlTnSfMFfURd/XT+08spQyqN9OTWA=
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.36.0.20260318093803-884e805f81ce h1:WbR0BSDl9BPWA6MR8GHvqozhe2v1/soaEEBISY0DeRk=
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.36.0.20260318093803-884e805f81ce/go.mod h1:SKcIU6lqwljcpjOlTnSfMFfURd/XT+08spQyqN9OTWA=
github.com/sclevine/spec v1.4.0 h1:z/Q9idDcay5m5irkZ28M7PtQM4aOISzOpj4bUPkDee8=
github.com/sclevine/spec v1.4.0/go.mod h1:LvpgJaFyvQzRvc1kaDs0bulYwzC70PbiYjC4QnFHkOM=
github.com/secure-systems-lab/go-securesystemslib v0.10.0 h1:l+H5ErcW0PAehBNrBxoGv1jjNpGYdZ9RcheFkB2WI14=
Expand Down
9 changes: 9 additions & 0 deletions internal/namespaces/domain/v2beta1/domain_cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ var (
func GetGeneratedCommands() *core.Commands {
return core.NewCommands(
dnsRoot(),
domainRoot(),
dnsZone(),
dnsRecord(),
dnsTsigKey(),
Expand Down Expand Up @@ -59,6 +60,14 @@ func dnsRoot() *core.Command {
}
}

func domainRoot() *core.Command {
return &core.Command{
Short: `Domains and DNS - Registrar API`,
Long: `Manage your domains and contacts.`,
Namespace: "domain",
}
}

func dnsZone() *core.Command {
return &core.Command{
Short: `DNS Zones management`,
Expand Down
Loading