Skip to main content

interface_ip_configurations

Creates, updates, deletes, gets or lists an interface_ip_configurations resource.

Overview

Nameinterface_ip_configurations
TypeResource
Idazure.network.interface_ip_configurations

Fields

The following fields are returned by SELECT queries:

Request successful. The operation returns the resulting NetworkInterface IPConfiguration resource.

NameDatatypeDescription
idstringResource ID.
namestringThe name of the resource that is unique within a resource group. This name can be used to access the resource.
etagstringA unique read-only string that changes whenever the resource is updated.
propertiesobjectNetwork interface IP configuration properties.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, networkInterfaceName, ipConfigurationName, subscriptionIdGets the specified network interface ip configuration.
listselectresourceGroupName, networkInterfaceName, subscriptionIdGet all ip configurations in a network interface.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
ipConfigurationNamestringThe name of the ip configuration name.
networkInterfaceNamestringThe name of the network interface.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Gets the specified network interface ip configuration.

SELECT
id,
name,
etag,
properties,
type
FROM azure.network.interface_ip_configurations
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND networkInterfaceName = '{{ networkInterfaceName }}' -- required
AND ipConfigurationName = '{{ ipConfigurationName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;