Skip to content

Commit cd02ea6

Browse files
authored
Generated from 3749af17da52fd48f69870d8bacc577a54650ad1 (#3861)
Ported fix from master branch
1 parent 9707715 commit cd02ea6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

azure-mgmt-network/azure/mgmt/network/v2018_08_01/operations/virtual_networks_operations.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -522,15 +522,15 @@ def internal_paging(next_link=None, raw=False):
522522
list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks'}
523523

524524
def check_ip_address_availability(
525-
self, ip_address, resource_group_name, virtual_network_name, custom_headers=None, raw=False, **operation_config):
525+
self, resource_group_name, virtual_network_name, ip_address, custom_headers=None, raw=False, **operation_config):
526526
"""Checks whether a private IP address is available for use.
527527
528-
:param ip_address: The private IP address to be verified.
529-
:type ip_address: str
530528
:param resource_group_name: The name of the resource group.
531529
:type resource_group_name: str
532530
:param virtual_network_name: The name of the virtual network.
533531
:type virtual_network_name: str
532+
:param ip_address: The private IP address to be verified.
533+
:type ip_address: str
534534
:param dict custom_headers: headers that will be added to the request
535535
:param bool raw: returns the direct response alongside the
536536
deserialized response

azure-mgmt-network/azure/mgmt/network/v2018_10_01/operations/virtual_networks_operations.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -522,15 +522,15 @@ def internal_paging(next_link=None, raw=False):
522522
list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks'}
523523

524524
def check_ip_address_availability(
525-
self, ip_address, resource_group_name, virtual_network_name, custom_headers=None, raw=False, **operation_config):
525+
self, resource_group_name, virtual_network_name, ip_address, custom_headers=None, raw=False, **operation_config):
526526
"""Checks whether a private IP address is available for use.
527527
528-
:param ip_address: The private IP address to be verified.
529-
:type ip_address: str
530528
:param resource_group_name: The name of the resource group.
531529
:type resource_group_name: str
532530
:param virtual_network_name: The name of the virtual network.
533531
:type virtual_network_name: str
532+
:param ip_address: The private IP address to be verified.
533+
:type ip_address: str
534534
:param dict custom_headers: headers that will be added to the request
535535
:param bool raw: returns the direct response alongside the
536536
deserialized response

0 commit comments

Comments
 (0)