Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Generated from f321a6cb703b15bbe927a4b34005830c495c4e34
Fixes the missing array for the header actions (#4497)
  • Loading branch information
AutorestCI committed Nov 20, 2018
commit 2a5450f6d4da32e00cae22165d07b318138b8b68
Original file line number Diff line number Diff line change
Expand Up @@ -522,15 +522,15 @@ def internal_paging(next_link=None, raw=False):
list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks'}

def check_ip_address_availability(
self, ip_address, resource_group_name, virtual_network_name, custom_headers=None, raw=False, **operation_config):
self, resource_group_name, virtual_network_name, ip_address, custom_headers=None, raw=False, **operation_config):
"""Checks whether a private IP address is available for use.

:param ip_address: The private IP address to be verified.
:type ip_address: str
:param resource_group_name: The name of the resource group.
:type resource_group_name: str
:param virtual_network_name: The name of the virtual network.
:type virtual_network_name: str
:param ip_address: The private IP address to be verified.
:type ip_address: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
deserialized response
Expand Down