interface_ip_configurations
Creates, updates, deletes, gets or lists an interface_ip_configurations
resource.
Overview
Name | interface_ip_configurations |
Type | Resource |
Id | azure.network.interface_ip_configurations |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Request successful. The operation returns the resulting NetworkInterface IPConfiguration resource.
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | The name of the resource that is unique within a resource group. This name can be used to access the resource. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
properties | object | Network interface IP configuration properties. |
type | string | Resource type. |
Request successful. The operation returns a list of NetworkInterface IPConfiguration resources.
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | The name of the resource that is unique within a resource group. This name can be used to access the resource. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
properties | object | Network interface IP configuration properties. |
type | string | Resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , networkInterfaceName , ipConfigurationName , subscriptionId | Gets the specified network interface ip configuration. | |
list | select | resourceGroupName , networkInterfaceName , subscriptionId | Get 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.
Name | Datatype | Description |
---|---|---|
ipConfigurationName | string | The name of the ip configuration name. |
networkInterfaceName | string | The name of the network interface. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
- list
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
;
Get all ip configurations in a network interface.
SELECT
id,
name,
etag,
properties,
type
FROM azure.network.interface_ip_configurations
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND networkInterfaceName = '{{ networkInterfaceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;