Skip to content

fix(lb): change default value for assign_flexible_ip #551

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 14, 2024
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
4 changes: 2 additions & 2 deletions scaleway-async/scaleway_async/lb/v1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ async def create_lb(
One-Of ('project_identifier'): at most one of 'project_id', 'organization_id' could be set.
:param name: Name for the Load Balancer.
:param ip_id: ID of an existing flexible IP address to attach to the Load Balancer.
:param assign_flexible_ip: Defines whether to automatically assign a flexible public IP to lb. Default value is `false` (do not assign).
:param assign_flexible_ip: Defines whether to automatically assign a flexible public IP to the Load Balancer. Default value is `true` (assign).
:param assign_flexible_ipv6: Defines whether to automatically assign a flexible public IPv6 to the Load Balancer. Default value is `false` (do not assign).
:param ip_ids: List of IP IDs to attach to the Load Balancer.
:param tags: List of tags for the Load Balancer.
Expand Down Expand Up @@ -3345,7 +3345,7 @@ async def create_lb(
One-Of ('project_identifier'): at most one of 'project_id', 'organization_id' could be set.
:param name: Name for the Load Balancer.
:param ip_id: ID of an existing flexible IP address to attach to the Load Balancer.
:param assign_flexible_ip: Defines whether to automatically assign a flexible public IP to lb. Default value is `false` (do not assign).
:param assign_flexible_ip: Defines whether to automatically assign a flexible public IP to the Load Balancer. Default value is `true` (assign).
:param assign_flexible_ipv6: Defines whether to automatically assign a flexible public IPv6 to the Load Balancer. Default value is `false` (do not assign).
:param ip_ids: List of IP IDs to attach to the Load Balancer.
:param tags: List of tags for the Load Balancer.
Expand Down
4 changes: 2 additions & 2 deletions scaleway-async/scaleway_async/lb/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1528,7 +1528,7 @@ class CreateLbRequest:

assign_flexible_ip: Optional[bool]
"""
Defines whether to automatically assign a flexible public IP to lb. Default value is `false` (do not assign).
Defines whether to automatically assign a flexible public IP to the Load Balancer. Default value is `true` (assign).
"""

assign_flexible_ipv6: Optional[bool]
Expand Down Expand Up @@ -3167,7 +3167,7 @@ class ZonedApiCreateLbRequest:

assign_flexible_ip: Optional[bool]
"""
Defines whether to automatically assign a flexible public IP to lb. Default value is `false` (do not assign).
Defines whether to automatically assign a flexible public IP to the Load Balancer. Default value is `true` (assign).
"""

assign_flexible_ipv6: Optional[bool]
Expand Down
4 changes: 2 additions & 2 deletions scaleway/scaleway/lb/v1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def create_lb(
One-Of ('project_identifier'): at most one of 'project_id', 'organization_id' could be set.
:param name: Name for the Load Balancer.
:param ip_id: ID of an existing flexible IP address to attach to the Load Balancer.
:param assign_flexible_ip: Defines whether to automatically assign a flexible public IP to lb. Default value is `false` (do not assign).
:param assign_flexible_ip: Defines whether to automatically assign a flexible public IP to the Load Balancer. Default value is `true` (assign).
:param assign_flexible_ipv6: Defines whether to automatically assign a flexible public IPv6 to the Load Balancer. Default value is `false` (do not assign).
:param ip_ids: List of IP IDs to attach to the Load Balancer.
:param tags: List of tags for the Load Balancer.
Expand Down Expand Up @@ -3343,7 +3343,7 @@ def create_lb(
One-Of ('project_identifier'): at most one of 'project_id', 'organization_id' could be set.
:param name: Name for the Load Balancer.
:param ip_id: ID of an existing flexible IP address to attach to the Load Balancer.
:param assign_flexible_ip: Defines whether to automatically assign a flexible public IP to lb. Default value is `false` (do not assign).
:param assign_flexible_ip: Defines whether to automatically assign a flexible public IP to the Load Balancer. Default value is `true` (assign).
:param assign_flexible_ipv6: Defines whether to automatically assign a flexible public IPv6 to the Load Balancer. Default value is `false` (do not assign).
:param ip_ids: List of IP IDs to attach to the Load Balancer.
:param tags: List of tags for the Load Balancer.
Expand Down
4 changes: 2 additions & 2 deletions scaleway/scaleway/lb/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1528,7 +1528,7 @@ class CreateLbRequest:

assign_flexible_ip: Optional[bool]
"""
Defines whether to automatically assign a flexible public IP to lb. Default value is `false` (do not assign).
Defines whether to automatically assign a flexible public IP to the Load Balancer. Default value is `true` (assign).
"""

assign_flexible_ipv6: Optional[bool]
Expand Down Expand Up @@ -3167,7 +3167,7 @@ class ZonedApiCreateLbRequest:

assign_flexible_ip: Optional[bool]
"""
Defines whether to automatically assign a flexible public IP to lb. Default value is `false` (do not assign).
Defines whether to automatically assign a flexible public IP to the Load Balancer. Default value is `true` (assign).
"""

assign_flexible_ipv6: Optional[bool]
Expand Down