You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upgrade a Public Gateway to IP mobility (move from NAT IP to routed IP). This is idempotent: repeated calls after the first will return no error but have no effect.
482
482
:param zone: Zone to target. If none is passed will use default zone from the config.
483
483
:param gateway_id: ID of the gateway to upgrade to IP mobility.
Copy file name to clipboardExpand all lines: scaleway/scaleway/vpcgw/v1/api.py
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -475,13 +475,12 @@ def enable_ip_mobility(
475
475
*,
476
476
gateway_id: str,
477
477
zone: Optional[Zone] =None,
478
-
) ->Gateway:
478
+
) ->Optional[None]:
479
479
"""
480
480
Upgrade a Public Gateway to IP mobility.
481
481
Upgrade a Public Gateway to IP mobility (move from NAT IP to routed IP). This is idempotent: repeated calls after the first will return no error but have no effect.
482
482
:param zone: Zone to target. If none is passed will use default zone from the config.
483
483
:param gateway_id: ID of the gateway to upgrade to IP mobility.
0 commit comments