Skip to content

Commit a221865

Browse files
scaleway-botLaure-di
authored andcommitted
feat: update generated APIs
1 parent 78147bd commit a221865

File tree

6 files changed

+12
-8
lines changed

6 files changed

+12
-8
lines changed

cmd/scw/testdata/test-all-usage-apple-silicon-server-create-usage.golden

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ ARGS:
1111
[type] Create a server of the given type
1212
[os-id] Create a server with the given os_id
1313
[enable-vpc] Activate the Private Network feature for this server
14+
[commitment-type] Activate commitment for this server (duration_24h | renewed_monthly | none)
1415
[zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-3)
1516

1617
FLAGS:

cmd/scw/testdata/test-all-usage-apple-silicon-server-update-usage.golden

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ USAGE:
66
scw apple-silicon server update <server-id ...> [arg=value ...]
77

88
ARGS:
9-
server-id UUID of the server you want to update
10-
[name] Updated name for your server
11-
[schedule-deletion] Specify whether the server should be flagged for automatic deletion
12-
[enable-vpc] Activate or deactivate Private Network support for this server
13-
[zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-3)
9+
server-id UUID of the server you want to update
10+
[name] Updated name for your server
11+
[schedule-deletion] Specify whether the server should be flagged for automatic deletion
12+
[enable-vpc] Activate or deactivate Private Network support for this server
13+
[commitment-type.commitment-type] (duration_24h | renewed_monthly | none)
14+
[zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-3)
1415

1516
FLAGS:
1617
-h, --help help for update

cmd/scw/testdata/test-all-usage-vpc-route-list-usage.golden

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ARGS:
1010
[vpc-id] VPC to filter for. Only routes within this VPC will be returned
1111
[nexthop-resource-id] Next hop resource ID to filter for. Only routes with a matching next hop resource ID will be returned
1212
[nexthop-private-network-id] Next hop private network ID to filter for. Only routes with a matching next hop private network ID will be returned
13-
[nexthop-resource-type] Next hop resource type to filter for. Only Routes with a matching next hop resource type will be returned (unknown_type | vpc_gateway_network | instance_private_nic | baremetal_private_nic)
13+
[nexthop-resource-type] Next hop resource type to filter for. Only Routes with a matching next hop resource type will be returned (unknown_type | vpc_gateway_network | instance_private_nic | baremetal_private_nic | apple_silicon_private_nic)
1414
[contains] Only routes whose destination is contained in this subnet will be returned
1515
[tags.{index}] Tags to filter for, only routes with one or more matching tags will be returned
1616
[is-ipv6] Only routes with an IPv6 destination will be returned

docs/commands/apple-silicon.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@ scw apple-silicon server create [arg=value ...]
195195
| type | | Create a server of the given type |
196196
| os-id | | Create a server with the given os_id |
197197
| enable-vpc | | Activate the Private Network feature for this server |
198+
| commitment-type | One of: `duration_24h`, `renewed_monthly`, `none` | Activate commitment for this server |
198199
| zone | Default: `fr-par-1`<br />One of: `fr-par-3` | Zone to target. If none is passed will use default zone from the config |
199200

200201

@@ -344,6 +345,7 @@ scw apple-silicon server update <server-id ...> [arg=value ...]
344345
| name | | Updated name for your server |
345346
| schedule-deletion | | Specify whether the server should be flagged for automatic deletion |
346347
| enable-vpc | | Activate or deactivate Private Network support for this server |
348+
| commitment-type.commitment-type | One of: `duration_24h`, `renewed_monthly`, `none` | |
347349
| zone | Default: `fr-par-1`<br />One of: `fr-par-3` | Zone to target. If none is passed will use default zone from the config |
348350

349351

docs/commands/vpc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ scw vpc route list [arg=value ...]
276276
| vpc-id | | VPC to filter for. Only routes within this VPC will be returned |
277277
| nexthop-resource-id | | Next hop resource ID to filter for. Only routes with a matching next hop resource ID will be returned |
278278
| nexthop-private-network-id | | Next hop private network ID to filter for. Only routes with a matching next hop private network ID will be returned |
279-
| nexthop-resource-type | One of: `unknown_type`, `vpc_gateway_network`, `instance_private_nic`, `baremetal_private_nic` | Next hop resource type to filter for. Only Routes with a matching next hop resource type will be returned |
279+
| nexthop-resource-type | One of: `unknown_type`, `vpc_gateway_network`, `instance_private_nic`, `baremetal_private_nic`, `apple_silicon_private_nic` | Next hop resource type to filter for. Only Routes with a matching next hop resource type will be returned |
280280
| contains | | Only routes whose destination is contained in this subnet will be returned |
281281
| tags.{index} | | Tags to filter for, only routes with one or more matching tags will be returned |
282282
| is-ipv6 | | Only routes with an IPv6 destination will be returned |

internal/namespaces/vpc/v2/vpc_cli.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -893,7 +893,7 @@ func vpcRouteList() *core.Command {
893893
Required: false,
894894
Deprecated: false,
895895
Positional: false,
896-
EnumValues: []string{"unknown_type", "vpc_gateway_network", "instance_private_nic", "baremetal_private_nic"},
896+
EnumValues: []string{"unknown_type", "vpc_gateway_network", "instance_private_nic", "baremetal_private_nic", "apple_silicon_private_nic"},
897897
},
898898
{
899899
Name: "contains",

0 commit comments

Comments
 (0)