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
1 change: 0 additions & 1 deletion cmd/scw/testdata/test-all-usage-lbip-create-usage.golden
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ USAGE:
ARGS:
[project-id] Project ID to use. If none is passed the default project ID will be used
[reverse] Reverse DNS (domain name) for the IP address
[is-ipv6] If true, creates a Flexible IP with an ipv6 address
[organization-id] Organization ID to use. If none is passed the default organization ID will be used
[zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2)

Expand Down
1 change: 0 additions & 1 deletion cmd/scw/testdata/test-all-usage-lblb-create-usage.golden
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ ARGS:
name=<generated> Name for the Load Balancer
[description] Description for the Load Balancer
[assign-flexible-ip] Defines whether to automatically assign a flexible public IP to lb. Default value is `false` (do not assign).
[ip-ids.{index}] List of IP IDs to attach to the Load Balancer
[tags.{index}] List of tags for the Load Balancer
[type=LB-S] Load Balancer commercial offer type. Use the Load Balancer types endpoint to retrieve a list of available offer types (LB-S | LB-GP-M | LB-GP-L)
[ssl-compatibility-level] Determines the minimal SSL version which needs to be supported on the client side, in an SSL/TLS offloading context. Intermediate is suitable for general-purpose servers with a variety of clients, recommended for almost all systems. Modern is suitable for services with clients that support TLS 1.3 and do not need backward compatibility. Old is compatible with a small number of very old clients and should be used only as a last resort (ssl_compatibility_level_unknown | ssl_compatibility_level_intermediate | ssl_compatibility_level_modern | ssl_compatibility_level_old)
Expand Down
2 changes: 0 additions & 2 deletions docs/commands/lb.md
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,6 @@ scw lb ip create [arg=value ...]
|------|---|-------------|
| project-id | | Project ID to use. If none is passed the default project ID will be used |
| reverse | | Reverse DNS (domain name) for the IP address |
| is-ipv6 | | If true, creates a Flexible IP with an ipv6 address |
| organization-id | | Organization ID to use. If none is passed the default organization ID will be used |
| zone | Default: `fr-par-1`<br />One of: `fr-par-1`, `fr-par-2`, `nl-ams-1`, `nl-ams-2`, `pl-waw-1`, `pl-waw-2` | Zone to target. If none is passed will use default zone from the config |

Expand Down Expand Up @@ -903,7 +902,6 @@ scw lb lb create [arg=value ...]
| description | | Description for the Load Balancer |
| ~~ip-id~~ | Deprecated | ID of an existing flexible IP address to attach to the Load Balancer |
| assign-flexible-ip | | Defines whether to automatically assign a flexible public IP to lb. Default value is `false` (do not assign). |
| ip-ids.{index} | | List of IP IDs to attach to the Load Balancer |
| tags.{index} | | List of tags for the Load Balancer |
| type | Default: `LB-S`<br />One of: `LB-S`, `LB-GP-M`, `LB-GP-L` | Load Balancer commercial offer type. Use the Load Balancer types endpoint to retrieve a list of available offer types |
| ssl-compatibility-level | One of: `ssl_compatibility_level_unknown`, `ssl_compatibility_level_intermediate`, `ssl_compatibility_level_modern`, `ssl_compatibility_level_old` | Determines the minimal SSL version which needs to be supported on the client side, in an SSL/TLS offloading context. Intermediate is suitable for general-purpose servers with a variety of clients, recommended for almost all systems. Modern is suitable for services with clients that support TLS 1.3 and do not need backward compatibility. Old is compatible with a small number of very old clients and should be used only as a last resort |
Expand Down
14 changes: 0 additions & 14 deletions internal/namespaces/lb/v1/lb_cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -285,13 +285,6 @@ func lbLBCreate() *core.Command {
Deprecated: false,
Positional: false,
},
{
Name: "ip-ids.{index}",
Short: `List of IP IDs to attach to the Load Balancer`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "tags.{index}",
Short: `List of tags for the Load Balancer`,
Expand Down Expand Up @@ -568,13 +561,6 @@ func lbIPCreate() *core.Command {
Deprecated: false,
Positional: false,
},
{
Name: "is-ipv6",
Short: `If true, creates a Flexible IP with an ipv6 address`,
Required: false,
Deprecated: false,
Positional: false,
},
core.OrganizationIDArgSpec(),
core.ZoneArgSpec(scw.ZoneFrPar1, scw.ZoneFrPar2, scw.ZoneNlAms1, scw.ZoneNlAms2, scw.ZonePlWaw1, scw.ZonePlWaw2),
},
Expand Down