diff --git a/scaleway-async/scaleway_async/vpcgw/v1/api.py b/scaleway-async/scaleway_async/vpcgw/v1/api.py index b1ee16a2c..6d81509b6 100644 --- a/scaleway-async/scaleway_async/vpcgw/v1/api.py +++ b/scaleway-async/scaleway_async/vpcgw/v1/api.py @@ -133,6 +133,7 @@ async def list_gateways( :param status: Filter for gateways with this current status. Use `unknown` to include all statuses. :param private_network_id: Filter for gateways attached to this Private nNetwork. :return: :class:`ListGatewaysResponse ` + :deprecated Usage: :: @@ -193,6 +194,7 @@ async def list_gateways_all( :param status: Filter for gateways with this current status. Use `unknown` to include all statuses. :param private_network_id: Filter for gateways attached to this Private nNetwork. :return: :class:`List[Gateway] ` + :deprecated Usage: :: @@ -231,6 +233,7 @@ async def get_gateway( :param gateway_id: ID of the gateway to fetch. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`Gateway ` + :deprecated Usage: :: @@ -264,6 +267,7 @@ async def wait_for_gateway( :param gateway_id: ID of the gateway to fetch. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`Gateway ` + :deprecated Usage: :: @@ -316,6 +320,7 @@ async def create_gateway( :param ip_id: Existing IP address to attach to the gateway. :param bastion_port: Port of the SSH bastion. :return: :class:`Gateway ` + :deprecated Usage: :: @@ -376,6 +381,7 @@ async def update_gateway( :param bastion_port: Port of the SSH bastion. :param enable_smtp: Defines whether SMTP traffic should be allowed to pass through the gateway. :return: :class:`Gateway ` + :deprecated Usage: :: @@ -422,6 +428,7 @@ async def delete_gateway( :param gateway_id: ID of the gateway to delete. :param cleanup_dhcp: Defines whether to clean up attached DHCP configurations (if any, and if not attached to another Gateway Network). :param zone: Zone to target. If none is passed will use default zone from the config. + :deprecated Usage: :: @@ -459,6 +466,7 @@ async def upgrade_gateway( :param zone: Zone to target. If none is passed will use default zone from the config. :param type_: Gateway type (commercial offer). :return: :class:`Gateway ` + :deprecated Usage: :: @@ -498,6 +506,7 @@ async def enable_ip_mobility( 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. :param gateway_id: ID of the gateway to upgrade to IP mobility. :param zone: Zone to target. If none is passed will use default zone from the config. + :deprecated Usage: :: @@ -544,6 +553,7 @@ async def list_gateway_networks( :param dhcp_id: Filter for GatewayNetworks using this DHCP configuration. :param status: Filter for GatewayNetworks with this current status this status. Use `unknown` to include all statuses. :return: :class:`ListGatewayNetworksResponse ` + :deprecated Usage: :: @@ -597,6 +607,7 @@ async def list_gateway_networks_all( :param dhcp_id: Filter for GatewayNetworks using this DHCP configuration. :param status: Filter for GatewayNetworks with this current status this status. Use `unknown` to include all statuses. :return: :class:`List[GatewayNetwork] ` + :deprecated Usage: :: @@ -633,6 +644,7 @@ async def get_gateway_network( :param gateway_network_id: ID of the GatewayNetwork to fetch. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`GatewayNetwork ` + :deprecated Usage: :: @@ -670,6 +682,7 @@ async def wait_for_gateway_network( :param gateway_network_id: ID of the GatewayNetwork to fetch. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`GatewayNetwork ` + :deprecated Usage: :: @@ -727,6 +740,7 @@ async def create_gateway_network( :param ipam_config: Note: all or none of the GatewayNetworks for a single gateway can use the IPAM. DHCP and IPAM configurations cannot be mixed. Some products may require that the Public Gateway uses the IPAM, to ensure correct functionality. One-Of ('ip_config'): at most one of 'dhcp_id', 'dhcp', 'address', 'ipam_config' could be set. :return: :class:`GatewayNetwork ` + :deprecated Usage: :: @@ -788,6 +802,7 @@ async def update_gateway_network( :param ipam_config: Note: all or none of the GatewayNetworks for a single gateway can use the IPAM. DHCP and IPAM configurations cannot be mixed. Some products may require that the Public Gateway uses the IPAM, to ensure correct functionality. One-Of ('ip_config'): at most one of 'dhcp_id', 'address', 'ipam_config' could be set. :return: :class:`GatewayNetwork ` + :deprecated Usage: :: @@ -835,6 +850,7 @@ async def delete_gateway_network( :param gateway_network_id: ID of the GatewayNetwork to delete. :param cleanup_dhcp: Defines whether to clean up attached DHCP configurations (if any, and if not attached to another Gateway Network). :param zone: Zone to target. If none is passed will use default zone from the config. + :deprecated Usage: :: @@ -884,6 +900,7 @@ async def list_dhc_ps( :param address: Filter for DHCP configuration objects with this DHCP server IP address (the gateway's address in the Private Network). :param has_address: Filter for DHCP configuration objects with subnets containing this IP address. :return: :class:`ListDHCPsResponse ` + :deprecated Usage: :: @@ -935,6 +952,7 @@ async def list_dhc_ps_all( :param address: Filter for DHCP configuration objects with this DHCP server IP address (the gateway's address in the Private Network). :param has_address: Filter for DHCP configuration objects with subnets containing this IP address. :return: :class:`List[DHCP] ` + :deprecated Usage: :: @@ -970,6 +988,7 @@ async def get_dhcp( :param dhcp_id: ID of the DHCP configuration to fetch. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`DHCP ` + :deprecated Usage: :: @@ -1028,6 +1047,7 @@ async def create_dhcp( :param dns_search: Array of search paths in addition to the pushed DNS configuration. :param dns_local_name: TLD given to hostnames in the Private Network. Allowed characters are `a-z0-9-.`. Defaults to the slugified Private Network name if created along a GatewayNetwork, or else to `priv`. :return: :class:`DHCP ` + :deprecated Usage: :: @@ -1105,6 +1125,7 @@ async def update_dhcp( :param dns_search: Array of search paths in addition to the pushed DNS configuration. :param dns_local_name: TLD given to hostnames in the Private Networks. If an instance with hostname `foo` gets a lease, and this is set to `bar`, `foo.bar` will resolve. Allowed characters are `a-z0-9-.`. :return: :class:`DHCP ` + :deprecated Usage: :: @@ -1156,6 +1177,7 @@ async def delete_dhcp( Delete a DHCP configuration object, identified by its DHCP ID. Note that you cannot delete a DHCP configuration object that is currently being used by a Gateway Network. :param dhcp_id: DHCP configuration ID to delete. :param zone: Zone to target. If none is passed will use default zone from the config. + :deprecated Usage: :: @@ -1201,6 +1223,7 @@ async def list_dhcp_entries( :param hostname: Filter for entries with this hostname substring. :param type_: Filter for entries of this type. :return: :class:`ListDHCPEntriesResponse ` + :deprecated Usage: :: @@ -1254,6 +1277,7 @@ async def list_dhcp_entries_all( :param hostname: Filter for entries with this hostname substring. :param type_: Filter for entries of this type. :return: :class:`List[DHCPEntry] ` + :deprecated Usage: :: @@ -1290,6 +1314,7 @@ async def get_dhcp_entry( :param dhcp_entry_id: ID of the DHCP entry to fetch. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`DHCPEntry ` + :deprecated Usage: :: @@ -1326,6 +1351,7 @@ async def create_dhcp_entry( :param ip_address: IP address to give to the device. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`DHCPEntry ` + :deprecated Usage: :: @@ -1370,6 +1396,7 @@ async def update_dhcp_entry( :param zone: Zone to target. If none is passed will use default zone from the config. :param ip_address: New IP address to give to the device. :return: :class:`DHCPEntry ` + :deprecated Usage: :: @@ -1412,6 +1439,7 @@ async def set_dhcp_entries( :param zone: Zone to target. If none is passed will use default zone from the config. :param dhcp_entries: New list of DHCP reservations. :return: :class:`SetDHCPEntriesResponse ` + :deprecated Usage: :: @@ -1450,6 +1478,7 @@ async def delete_dhcp_entry( Delete a static DHCP reservation, identified by its DHCP entry ID. Note that you cannot delete DHCP entries of type `lease`, these are deleted automatically when their time-to-live expires. :param dhcp_entry_id: ID of the DHCP entry to delete. :param zone: Zone to target. If none is passed will use default zone from the config. + :deprecated Usage: :: @@ -1491,6 +1520,7 @@ async def list_pat_rules( :param private_ip: Filter for PAT rules targeting this private ip. :param protocol: Filter for PAT rules with this protocol. :return: :class:`ListPATRulesResponse ` + :deprecated Usage: :: @@ -1538,6 +1568,7 @@ async def list_pat_rules_all( :param private_ip: Filter for PAT rules targeting this private ip. :param protocol: Filter for PAT rules with this protocol. :return: :class:`List[PATRule] ` + :deprecated Usage: :: @@ -1572,6 +1603,7 @@ async def get_pat_rule( :param pat_rule_id: ID of the PAT rule to get. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`PATRule ` + :deprecated Usage: :: @@ -1612,6 +1644,7 @@ async def create_pat_rule( :param zone: Zone to target. If none is passed will use default zone from the config. :param protocol: Protocol the rule should apply to. :return: :class:`PATRule ` + :deprecated Usage: :: @@ -1665,6 +1698,7 @@ async def update_pat_rule( :param private_port: Private port to translate to. :param protocol: Protocol the rule should apply to. :return: :class:`PATRule ` + :deprecated Usage: :: @@ -1710,6 +1744,7 @@ async def set_pat_rules( :param pat_rules: New list of PAT rules. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`SetPATRulesResponse ` + :deprecated Usage: :: @@ -1749,6 +1784,7 @@ async def delete_pat_rule( Delete a PAT rule, identified by its PAT rule ID. This action is irreversible. :param pat_rule_id: ID of the PAT rule to delete. :param zone: Zone to target. If none is passed will use default zone from the config. + :deprecated Usage: :: @@ -1778,6 +1814,7 @@ async def list_gateway_types( List the different Public Gateway commercial offer types available at Scaleway. The response is an array of objects describing the name and technical details of each available gateway type. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`ListGatewayTypesResponse ` + :deprecated Usage: :: @@ -1821,6 +1858,7 @@ async def list_i_ps( :param reverse: Filter for IP addresses that have a reverse containing this string. :param is_free: Filter based on whether the IP is attached to a gateway or not. :return: :class:`ListIPsResponse ` + :deprecated Usage: :: @@ -1875,6 +1913,7 @@ async def list_i_ps_all( :param reverse: Filter for IP addresses that have a reverse containing this string. :param is_free: Filter based on whether the IP is attached to a gateway or not. :return: :class:`List[IP] ` + :deprecated Usage: :: @@ -1911,6 +1950,7 @@ async def get_ip( :param ip_id: ID of the IP address to get. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`IP ` + :deprecated Usage: :: @@ -1945,6 +1985,7 @@ async def create_ip( :param project_id: Project to create the IP address in. :param tags: Tags to give to the IP address. :return: :class:`IP ` + :deprecated Usage: :: @@ -1988,6 +2029,7 @@ async def update_ip( :param reverse: Reverse to set on the address. Empty string to unset. :param gateway_id: Gateway to attach the IP address to. Empty string to detach. :return: :class:`IP ` + :deprecated Usage: :: @@ -2029,6 +2071,7 @@ async def delete_ip( Delete a flexible IP address from your account. This action is irreversible. :param ip_id: ID of the IP address to delete. :param zone: Zone to target. If none is passed will use default zone from the config. + :deprecated Usage: :: @@ -2060,6 +2103,7 @@ async def refresh_ssh_keys( :param gateway_id: ID of the gateway to refresh SSH keys on. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`Gateway ` + :deprecated Usage: :: @@ -2092,6 +2136,7 @@ async def migrate_to_v2( Put a Public Gateway in IPAM mode, so that it can be used with the Public Gateways API v2. This call is idempotent. :param gateway_id: ID of the gateway to put into IPAM mode. :param zone: Zone to target. If none is passed will use default zone from the config. + :deprecated Usage: :: diff --git a/scaleway/scaleway/vpcgw/v1/api.py b/scaleway/scaleway/vpcgw/v1/api.py index 496a8dee3..170732449 100644 --- a/scaleway/scaleway/vpcgw/v1/api.py +++ b/scaleway/scaleway/vpcgw/v1/api.py @@ -133,6 +133,7 @@ def list_gateways( :param status: Filter for gateways with this current status. Use `unknown` to include all statuses. :param private_network_id: Filter for gateways attached to this Private nNetwork. :return: :class:`ListGatewaysResponse ` + :deprecated Usage: :: @@ -193,6 +194,7 @@ def list_gateways_all( :param status: Filter for gateways with this current status. Use `unknown` to include all statuses. :param private_network_id: Filter for gateways attached to this Private nNetwork. :return: :class:`List[Gateway] ` + :deprecated Usage: :: @@ -231,6 +233,7 @@ def get_gateway( :param gateway_id: ID of the gateway to fetch. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`Gateway ` + :deprecated Usage: :: @@ -264,6 +267,7 @@ def wait_for_gateway( :param gateway_id: ID of the gateway to fetch. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`Gateway ` + :deprecated Usage: :: @@ -316,6 +320,7 @@ def create_gateway( :param ip_id: Existing IP address to attach to the gateway. :param bastion_port: Port of the SSH bastion. :return: :class:`Gateway ` + :deprecated Usage: :: @@ -376,6 +381,7 @@ def update_gateway( :param bastion_port: Port of the SSH bastion. :param enable_smtp: Defines whether SMTP traffic should be allowed to pass through the gateway. :return: :class:`Gateway ` + :deprecated Usage: :: @@ -422,6 +428,7 @@ def delete_gateway( :param gateway_id: ID of the gateway to delete. :param cleanup_dhcp: Defines whether to clean up attached DHCP configurations (if any, and if not attached to another Gateway Network). :param zone: Zone to target. If none is passed will use default zone from the config. + :deprecated Usage: :: @@ -459,6 +466,7 @@ def upgrade_gateway( :param zone: Zone to target. If none is passed will use default zone from the config. :param type_: Gateway type (commercial offer). :return: :class:`Gateway ` + :deprecated Usage: :: @@ -498,6 +506,7 @@ def enable_ip_mobility( 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. :param gateway_id: ID of the gateway to upgrade to IP mobility. :param zone: Zone to target. If none is passed will use default zone from the config. + :deprecated Usage: :: @@ -544,6 +553,7 @@ def list_gateway_networks( :param dhcp_id: Filter for GatewayNetworks using this DHCP configuration. :param status: Filter for GatewayNetworks with this current status this status. Use `unknown` to include all statuses. :return: :class:`ListGatewayNetworksResponse ` + :deprecated Usage: :: @@ -597,6 +607,7 @@ def list_gateway_networks_all( :param dhcp_id: Filter for GatewayNetworks using this DHCP configuration. :param status: Filter for GatewayNetworks with this current status this status. Use `unknown` to include all statuses. :return: :class:`List[GatewayNetwork] ` + :deprecated Usage: :: @@ -633,6 +644,7 @@ def get_gateway_network( :param gateway_network_id: ID of the GatewayNetwork to fetch. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`GatewayNetwork ` + :deprecated Usage: :: @@ -668,6 +680,7 @@ def wait_for_gateway_network( :param gateway_network_id: ID of the GatewayNetwork to fetch. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`GatewayNetwork ` + :deprecated Usage: :: @@ -725,6 +738,7 @@ def create_gateway_network( :param ipam_config: Note: all or none of the GatewayNetworks for a single gateway can use the IPAM. DHCP and IPAM configurations cannot be mixed. Some products may require that the Public Gateway uses the IPAM, to ensure correct functionality. One-Of ('ip_config'): at most one of 'dhcp_id', 'dhcp', 'address', 'ipam_config' could be set. :return: :class:`GatewayNetwork ` + :deprecated Usage: :: @@ -786,6 +800,7 @@ def update_gateway_network( :param ipam_config: Note: all or none of the GatewayNetworks for a single gateway can use the IPAM. DHCP and IPAM configurations cannot be mixed. Some products may require that the Public Gateway uses the IPAM, to ensure correct functionality. One-Of ('ip_config'): at most one of 'dhcp_id', 'address', 'ipam_config' could be set. :return: :class:`GatewayNetwork ` + :deprecated Usage: :: @@ -833,6 +848,7 @@ def delete_gateway_network( :param gateway_network_id: ID of the GatewayNetwork to delete. :param cleanup_dhcp: Defines whether to clean up attached DHCP configurations (if any, and if not attached to another Gateway Network). :param zone: Zone to target. If none is passed will use default zone from the config. + :deprecated Usage: :: @@ -882,6 +898,7 @@ def list_dhc_ps( :param address: Filter for DHCP configuration objects with this DHCP server IP address (the gateway's address in the Private Network). :param has_address: Filter for DHCP configuration objects with subnets containing this IP address. :return: :class:`ListDHCPsResponse ` + :deprecated Usage: :: @@ -933,6 +950,7 @@ def list_dhc_ps_all( :param address: Filter for DHCP configuration objects with this DHCP server IP address (the gateway's address in the Private Network). :param has_address: Filter for DHCP configuration objects with subnets containing this IP address. :return: :class:`List[DHCP] ` + :deprecated Usage: :: @@ -968,6 +986,7 @@ def get_dhcp( :param dhcp_id: ID of the DHCP configuration to fetch. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`DHCP ` + :deprecated Usage: :: @@ -1026,6 +1045,7 @@ def create_dhcp( :param dns_search: Array of search paths in addition to the pushed DNS configuration. :param dns_local_name: TLD given to hostnames in the Private Network. Allowed characters are `a-z0-9-.`. Defaults to the slugified Private Network name if created along a GatewayNetwork, or else to `priv`. :return: :class:`DHCP ` + :deprecated Usage: :: @@ -1103,6 +1123,7 @@ def update_dhcp( :param dns_search: Array of search paths in addition to the pushed DNS configuration. :param dns_local_name: TLD given to hostnames in the Private Networks. If an instance with hostname `foo` gets a lease, and this is set to `bar`, `foo.bar` will resolve. Allowed characters are `a-z0-9-.`. :return: :class:`DHCP ` + :deprecated Usage: :: @@ -1154,6 +1175,7 @@ def delete_dhcp( Delete a DHCP configuration object, identified by its DHCP ID. Note that you cannot delete a DHCP configuration object that is currently being used by a Gateway Network. :param dhcp_id: DHCP configuration ID to delete. :param zone: Zone to target. If none is passed will use default zone from the config. + :deprecated Usage: :: @@ -1199,6 +1221,7 @@ def list_dhcp_entries( :param hostname: Filter for entries with this hostname substring. :param type_: Filter for entries of this type. :return: :class:`ListDHCPEntriesResponse ` + :deprecated Usage: :: @@ -1252,6 +1275,7 @@ def list_dhcp_entries_all( :param hostname: Filter for entries with this hostname substring. :param type_: Filter for entries of this type. :return: :class:`List[DHCPEntry] ` + :deprecated Usage: :: @@ -1288,6 +1312,7 @@ def get_dhcp_entry( :param dhcp_entry_id: ID of the DHCP entry to fetch. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`DHCPEntry ` + :deprecated Usage: :: @@ -1324,6 +1349,7 @@ def create_dhcp_entry( :param ip_address: IP address to give to the device. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`DHCPEntry ` + :deprecated Usage: :: @@ -1368,6 +1394,7 @@ def update_dhcp_entry( :param zone: Zone to target. If none is passed will use default zone from the config. :param ip_address: New IP address to give to the device. :return: :class:`DHCPEntry ` + :deprecated Usage: :: @@ -1410,6 +1437,7 @@ def set_dhcp_entries( :param zone: Zone to target. If none is passed will use default zone from the config. :param dhcp_entries: New list of DHCP reservations. :return: :class:`SetDHCPEntriesResponse ` + :deprecated Usage: :: @@ -1448,6 +1476,7 @@ def delete_dhcp_entry( Delete a static DHCP reservation, identified by its DHCP entry ID. Note that you cannot delete DHCP entries of type `lease`, these are deleted automatically when their time-to-live expires. :param dhcp_entry_id: ID of the DHCP entry to delete. :param zone: Zone to target. If none is passed will use default zone from the config. + :deprecated Usage: :: @@ -1489,6 +1518,7 @@ def list_pat_rules( :param private_ip: Filter for PAT rules targeting this private ip. :param protocol: Filter for PAT rules with this protocol. :return: :class:`ListPATRulesResponse ` + :deprecated Usage: :: @@ -1536,6 +1566,7 @@ def list_pat_rules_all( :param private_ip: Filter for PAT rules targeting this private ip. :param protocol: Filter for PAT rules with this protocol. :return: :class:`List[PATRule] ` + :deprecated Usage: :: @@ -1570,6 +1601,7 @@ def get_pat_rule( :param pat_rule_id: ID of the PAT rule to get. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`PATRule ` + :deprecated Usage: :: @@ -1610,6 +1642,7 @@ def create_pat_rule( :param zone: Zone to target. If none is passed will use default zone from the config. :param protocol: Protocol the rule should apply to. :return: :class:`PATRule ` + :deprecated Usage: :: @@ -1663,6 +1696,7 @@ def update_pat_rule( :param private_port: Private port to translate to. :param protocol: Protocol the rule should apply to. :return: :class:`PATRule ` + :deprecated Usage: :: @@ -1708,6 +1742,7 @@ def set_pat_rules( :param pat_rules: New list of PAT rules. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`SetPATRulesResponse ` + :deprecated Usage: :: @@ -1747,6 +1782,7 @@ def delete_pat_rule( Delete a PAT rule, identified by its PAT rule ID. This action is irreversible. :param pat_rule_id: ID of the PAT rule to delete. :param zone: Zone to target. If none is passed will use default zone from the config. + :deprecated Usage: :: @@ -1776,6 +1812,7 @@ def list_gateway_types( List the different Public Gateway commercial offer types available at Scaleway. The response is an array of objects describing the name and technical details of each available gateway type. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`ListGatewayTypesResponse ` + :deprecated Usage: :: @@ -1819,6 +1856,7 @@ def list_i_ps( :param reverse: Filter for IP addresses that have a reverse containing this string. :param is_free: Filter based on whether the IP is attached to a gateway or not. :return: :class:`ListIPsResponse ` + :deprecated Usage: :: @@ -1873,6 +1911,7 @@ def list_i_ps_all( :param reverse: Filter for IP addresses that have a reverse containing this string. :param is_free: Filter based on whether the IP is attached to a gateway or not. :return: :class:`List[IP] ` + :deprecated Usage: :: @@ -1909,6 +1948,7 @@ def get_ip( :param ip_id: ID of the IP address to get. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`IP ` + :deprecated Usage: :: @@ -1943,6 +1983,7 @@ def create_ip( :param project_id: Project to create the IP address in. :param tags: Tags to give to the IP address. :return: :class:`IP ` + :deprecated Usage: :: @@ -1986,6 +2027,7 @@ def update_ip( :param reverse: Reverse to set on the address. Empty string to unset. :param gateway_id: Gateway to attach the IP address to. Empty string to detach. :return: :class:`IP ` + :deprecated Usage: :: @@ -2027,6 +2069,7 @@ def delete_ip( Delete a flexible IP address from your account. This action is irreversible. :param ip_id: ID of the IP address to delete. :param zone: Zone to target. If none is passed will use default zone from the config. + :deprecated Usage: :: @@ -2058,6 +2101,7 @@ def refresh_ssh_keys( :param gateway_id: ID of the gateway to refresh SSH keys on. :param zone: Zone to target. If none is passed will use default zone from the config. :return: :class:`Gateway ` + :deprecated Usage: :: @@ -2090,6 +2134,7 @@ def migrate_to_v2( Put a Public Gateway in IPAM mode, so that it can be used with the Public Gateways API v2. This call is idempotent. :param gateway_id: ID of the gateway to put into IPAM mode. :param zone: Zone to target. If none is passed will use default zone from the config. + :deprecated Usage: ::