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
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/instance/v1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ async def _create_server(
:param zone: Zone to target. If none is passed will use default zone from the config.
:param commercial_type: Define the Instance commercial type (i.e. GP1-S).
:param name: Instance name.
:param dynamic_ip_required: Define if a dynamic IPv4 is required for the Instance.
:param dynamic_ip_required: By default, `dynamic_ip_required` is true, a dynamic ip is attached to the instance (if no flexible ip is already attached).
:param routed_ip_enabled: If true, configure the Instance so it uses the new routed IP mode.
:param image: Instance image ID or label.
:param volumes: Volumes attached to the server.
Expand Down
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/instance/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1859,7 +1859,7 @@ class CreateServerRequest:

dynamic_ip_required: Optional[bool]
"""
Define if a dynamic IPv4 is required for the Instance.
By default, `dynamic_ip_required` is true, a dynamic ip is attached to the instance (if no flexible ip is already attached).
"""

routed_ip_enabled: Optional[bool]
Expand Down
2 changes: 1 addition & 1 deletion scaleway/scaleway/instance/v1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ def _create_server(
:param zone: Zone to target. If none is passed will use default zone from the config.
:param commercial_type: Define the Instance commercial type (i.e. GP1-S).
:param name: Instance name.
:param dynamic_ip_required: Define if a dynamic IPv4 is required for the Instance.
:param dynamic_ip_required: By default, `dynamic_ip_required` is true, a dynamic ip is attached to the instance (if no flexible ip is already attached).
:param routed_ip_enabled: If true, configure the Instance so it uses the new routed IP mode.
:param image: Instance image ID or label.
:param volumes: Volumes attached to the server.
Expand Down
2 changes: 1 addition & 1 deletion scaleway/scaleway/instance/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1859,7 +1859,7 @@ class CreateServerRequest:

dynamic_ip_required: Optional[bool]
"""
Define if a dynamic IPv4 is required for the Instance.
By default, `dynamic_ip_required` is true, a dynamic ip is attached to the instance (if no flexible ip is already attached).
"""

routed_ip_enabled: Optional[bool]
Expand Down
Loading