File tree Expand file tree Collapse file tree 5 files changed +3
-29
lines changed
internal/namespaces/vpc/v2 Expand file tree Collapse file tree 5 files changed +3
-29
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ AVAILABLE COMMANDS:
99 private-network Private network management command
1010 route Route management command
1111 rule Rule management command
12- subnet Subnet management command
1312 vpc VPC management command
1413
1514FLAGS:
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ This API allows you to manage your Virtual Private Clouds (VPCs) and Private Net
2020 - [ Edit all ACL rules of a VPC] ( #edit-all-acl-rules-of-a-vpc )
2121 - [ Get ACL Rules for VPC] ( #get-acl-rules-for-vpc )
2222 - [ Set VPC ACL rules] ( #set-vpc-acl-rules )
23- - [ Subnet management command] ( #subnet-management-command )
2423- [ VPC management command] ( #vpc-management-command )
2524 - [ Create a VPC] ( #create-a-vpc )
2625 - [ Delete a VPC] ( #delete-a-vpc )
@@ -395,20 +394,6 @@ scw vpc rule set [arg=value ...]
395394
396395
397396
398- ## Subnet management command
399-
400- CIDR Subnet.
401-
402- CIDR Subnet.
403-
404- ** Usage:**
405-
406- ```
407- scw vpc subnet
408- ```
409-
410-
411-
412397## VPC management command
413398
414399A Virtual Private Cloud (VPC) allows you to group your regional
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ require (
2323 github.com/mattn/go-isatty v0.0.20
2424 github.com/moby/buildkit v0.26.2
2525 github.com/opencontainers/go-digest v1.0.0
26- github.com/scaleway/scaleway-sdk-go v1.0.0-beta.35.0.20251120105008-da92c1d23d16
26+ github.com/scaleway/scaleway-sdk-go v1.0.0-beta.35.0.20251121164012-c666d15170bb
2727 github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
2828 github.com/spf13/cobra v1.10.1
2929 github.com/spf13/pflag v1.0.10
Original file line number Diff line number Diff line change @@ -464,8 +464,8 @@ github.com/rogpeppe/go-internal v1.14.1/go.mod h1:MaRKkUm5W0goXpeCfT7UZI6fk/L7L7
464464github.1485827954.workers.dev/russross/blackfriday/v2 v2.1.0 /go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM =
465465github.1485827954.workers.dev/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 h1:OkMGxebDjyw0ULyrTYWeN0UNCCkmCWfjPnIA2W6oviI =
466466github.1485827954.workers.dev/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 /go.mod h1:+ePHsJ1keEjQtpvf9HHw0f4ZeJ0TLRsxhunSI2hYJSs =
467- github.com/scaleway/scaleway-sdk-go v1.0.0-beta.35.0.20251120105008-da92c1d23d16 h1:NECKW6fpn7/hja8ZZpAjhVSvuqgL+b0Mn7EVEWG9LqE =
468- github.com/scaleway/scaleway-sdk-go v1.0.0-beta.35.0.20251120105008-da92c1d23d16 /go.mod h1:BBENv1W9QH4COViJkDJB/0D1T6CweMAkDP7XehRsHQ8 =
467+ github.com/scaleway/scaleway-sdk-go v1.0.0-beta.35.0.20251121164012-c666d15170bb h1:+QbyxT414TLHUqzv3VrSGSWrV//sJLQ04I9gXTjPxZs =
468+ github.com/scaleway/scaleway-sdk-go v1.0.0-beta.35.0.20251121164012-c666d15170bb /go.mod h1:BBENv1W9QH4COViJkDJB/0D1T6CweMAkDP7XehRsHQ8 =
469469github.1485827954.workers.dev/sclevine/spec v1.4.0 h1:z/Q9idDcay5m5irkZ28M7PtQM4aOISzOpj4bUPkDee8 =
470470github.1485827954.workers.dev/sclevine/spec v1.4.0 /go.mod h1:LvpgJaFyvQzRvc1kaDs0bulYwzC70PbiYjC4QnFHkOM =
471471github.1485827954.workers.dev/secure-systems-lab/go-securesystemslib v0.9.1 h1:nZZaNz4DiERIQguNy0cL5qTdn9lR8XKHf4RUyG1Sx3g =
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ func GetGeneratedCommands() *core.Commands {
2222 vpcRoot (),
2323 vpcVpc (),
2424 vpcPrivateNetwork (),
25- vpcSubnet (),
2625 vpcRoute (),
2726 vpcRule (),
2827 vpcVpcList (),
@@ -78,15 +77,6 @@ resource can be a part of multiple private networks.`,
7877 }
7978}
8079
81- func vpcSubnet () * core.Command {
82- return & core.Command {
83- Short : `Subnet management command` ,
84- Long : `CIDR Subnet.` ,
85- Namespace : "vpc" ,
86- Resource : "subnet" ,
87- }
88- }
89-
9080func vpcRoute () * core.Command {
9181 return & core.Command {
9282 Short : `Route management command` ,
You can’t perform that action at this time.
0 commit comments