Skip to content

Commit 9bde51f

Browse files
docs(lb): hide new ipmob fields (#3176)
Co-authored-by: Rémy Léone <[email protected]>
1 parent 59cdc64 commit 9bde51f

File tree

4 files changed

+0
-18
lines changed

4 files changed

+0
-18
lines changed

cmd/scw/testdata/test-all-usage-lbip-create-usage.golden

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ USAGE:
88
ARGS:
99
[project-id] Project ID to use. If none is passed the default project ID will be used
1010
[reverse] Reverse DNS (domain name) for the IP address
11-
[is-ipv6] If true, creates a Flexible IP with an ipv6 address
1211
[organization-id] Organization ID to use. If none is passed the default organization ID will be used
1312
[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)
1413

cmd/scw/testdata/test-all-usage-lblb-create-usage.golden

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ ARGS:
1010
name=<generated> Name for the Load Balancer
1111
[description] Description for the Load Balancer
1212
[assign-flexible-ip] Defines whether to automatically assign a flexible public IP to lb. Default value is `false` (do not assign).
13-
[ip-ids.{index}] List of IP IDs to attach to the Load Balancer
1413
[tags.{index}] List of tags for the Load Balancer
1514
[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)
1615
[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)

docs/commands/lb.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,6 @@ scw lb ip create [arg=value ...]
789789
|------|---|-------------|
790790
| project-id | | Project ID to use. If none is passed the default project ID will be used |
791791
| reverse | | Reverse DNS (domain name) for the IP address |
792-
| is-ipv6 | | If true, creates a Flexible IP with an ipv6 address |
793792
| organization-id | | Organization ID to use. If none is passed the default organization ID will be used |
794793
| 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 |
795794

@@ -903,7 +902,6 @@ scw lb lb create [arg=value ...]
903902
| description | | Description for the Load Balancer |
904903
| ~~ip-id~~ | Deprecated | ID of an existing flexible IP address to attach to the Load Balancer |
905904
| assign-flexible-ip | | Defines whether to automatically assign a flexible public IP to lb. Default value is `false` (do not assign). |
906-
| ip-ids.{index} | | List of IP IDs to attach to the Load Balancer |
907905
| tags.{index} | | List of tags for the Load Balancer |
908906
| 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 |
909907
| 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 |

internal/namespaces/lb/v1/lb_cli.go

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -285,13 +285,6 @@ func lbLBCreate() *core.Command {
285285
Deprecated: false,
286286
Positional: false,
287287
},
288-
{
289-
Name: "ip-ids.{index}",
290-
Short: `List of IP IDs to attach to the Load Balancer`,
291-
Required: false,
292-
Deprecated: false,
293-
Positional: false,
294-
},
295288
{
296289
Name: "tags.{index}",
297290
Short: `List of tags for the Load Balancer`,
@@ -568,13 +561,6 @@ func lbIPCreate() *core.Command {
568561
Deprecated: false,
569562
Positional: false,
570563
},
571-
{
572-
Name: "is-ipv6",
573-
Short: `If true, creates a Flexible IP with an ipv6 address`,
574-
Required: false,
575-
Deprecated: false,
576-
Positional: false,
577-
},
578564
core.OrganizationIDArgSpec(),
579565
core.ZoneArgSpec(scw.ZoneFrPar1, scw.ZoneFrPar2, scw.ZoneNlAms1, scw.ZoneNlAms2, scw.ZonePlWaw1, scw.ZonePlWaw2),
580566
},

0 commit comments

Comments
 (0)