File tree Expand file tree Collapse file tree 4 files changed +32
-6
lines changed
internal/namespaces/vpc/v2 Expand file tree Collapse file tree 4 files changed +32
-6
lines changed Original file line number Diff line number Diff line change 7
7
8
8
AVAILABLE COMMANDS:
9
9
private-network Private network management command
10
+ route Route management command
10
11
routes Routes management command
11
12
subnet Subnet management command
12
13
vpc VPC management command
Original file line number Diff line number Diff line change 1
1
🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲
2
2
🟥🟥🟥 STDERR️️ 🟥🟥🟥️
3
- A Virtual Private Cloud (VPC) allows you to group your regional
4
- Private Networks together. Note that a Private Network can be a
3
+ A Virtual Private Cloud (VPC) allows you to group your regional
4
+ Private Networks together. Note that a Private Network can be a
5
5
part of only one VPC.
6
6
7
7
USAGE:
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ This API allows you to manage your Virtual Private Clouds (VPCs) and Private Net
10
10
- [ List Private Networks] ( #list-private-networks )
11
11
- [ Migrate Private Networks from zoned to regional] ( #migrate-private-networks-from-zoned-to-regional )
12
12
- [ Update Private Network] ( #update-private-network )
13
+ - [ Route management command] ( #route-management-command )
13
14
- [ Routes management command] ( #routes-management-command )
14
15
- [ Return routes with associated next hop data] ( #return-routes-with-associated-next-hop-data )
15
16
- [ Subnet management command] ( #subnet-management-command )
@@ -184,6 +185,20 @@ scw vpc private-network update <private-network-id ...> [arg=value ...]
184
185
185
186
186
187
188
+ ## Route management command
189
+
190
+ Custom routes.
191
+
192
+ Custom routes.
193
+
194
+ ** Usage:**
195
+
196
+ ```
197
+ scw vpc route
198
+ ```
199
+
200
+
201
+
187
202
## Routes management command
188
203
189
204
Routes management command.
@@ -232,8 +247,8 @@ scw vpc subnet
232
247
233
248
## VPC management command
234
249
235
- A Virtual Private Cloud (VPC) allows you to group your regional
236
- Private Networks together. Note that a Private Network can be a
250
+ A Virtual Private Cloud (VPC) allows you to group your regional
251
+ Private Networks together. Note that a Private Network can be a
237
252
part of only one VPC.
238
253
239
254
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ func GetGeneratedCommands() *core.Commands {
23
23
vpcVpc (),
24
24
vpcPrivateNetwork (),
25
25
vpcSubnet (),
26
+ vpcRoute (),
26
27
vpcRoutes (),
27
28
vpcVpcList (),
28
29
vpcVpcCreate (),
@@ -50,8 +51,8 @@ func vpcRoot() *core.Command {
50
51
func vpcVpc () * core.Command {
51
52
return & core.Command {
52
53
Short : `VPC management command` ,
53
- Long : `A Virtual Private Cloud (VPC) allows you to group your regional
54
- Private Networks together. Note that a Private Network can be a
54
+ Long : `A Virtual Private Cloud (VPC) allows you to group your regional
55
+ Private Networks together. Note that a Private Network can be a
55
56
part of only one VPC.` ,
56
57
Namespace : "vpc" ,
57
58
Resource : "vpc" ,
@@ -79,6 +80,15 @@ func vpcSubnet() *core.Command {
79
80
}
80
81
}
81
82
83
+ func vpcRoute () * core.Command {
84
+ return & core.Command {
85
+ Short : `Route management command` ,
86
+ Long : `Custom routes.` ,
87
+ Namespace : "vpc" ,
88
+ Resource : "route" ,
89
+ }
90
+ }
91
+
82
92
func vpcRoutes () * core.Command {
83
93
return & core.Command {
84
94
Short : `Routes management command` ,
You can’t perform that action at this time.
0 commit comments