interface_ip_configurations
Creates, updates, deletes, gets or lists a interface_ip_configurations
resource.
Overview
Name | interface_ip_configurations |
Type | Resource |
Id | azure.network.interface_ip_configurations |
Fields
- vw_interface_ip_configurations
- interface_ip_configurations
Name | Datatype | Description |
---|---|---|
id | text | Resource ID. |
name | text | The name of the resource that is unique within a resource group. This name can be used to access the resource. |
application_gateway_backend_address_pools | text | field from the properties object |
application_security_groups | text | field from the properties object |
etag | text | A unique read-only string that changes whenever the resource is updated. |
gateway_load_balancer | text | field from the properties object |
ipConfigurationName | text | field from the properties object |
load_balancer_backend_address_pools | text | field from the properties object |
load_balancer_inbound_nat_rules | text | field from the properties object |
networkInterfaceName | text | field from the properties object |
primary | text | field from the properties object |
private_ip_address | text | field from the properties object |
private_ip_address_prefix_length | text | field from the properties object |
private_ip_address_version | text | field from the properties object |
private_ip_allocation_method | text | field from the properties object |
private_link_connection_properties | text | field from the properties object |
provisioning_state | text | field from the properties object |
public_ip_address | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subnet | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Resource type. |
virtual_network_taps | text | field from the properties object |
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 | Properties of IP configuration. |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | ipConfigurationName, networkInterfaceName, resourceGroupName, subscriptionId | Gets the specified network interface ip configuration. |
list | SELECT | networkInterfaceName, resourceGroupName, subscriptionId | Get all ip configurations in a network interface. |
SELECT
examples
Get all ip configurations in a network interface.
- vw_interface_ip_configurations
- interface_ip_configurations
SELECT
id,
name,
application_gateway_backend_address_pools,
application_security_groups,
etag,
gateway_load_balancer,
ipConfigurationName,
load_balancer_backend_address_pools,
load_balancer_inbound_nat_rules,
networkInterfaceName,
primary,
private_ip_address,
private_ip_address_prefix_length,
private_ip_address_version,
private_ip_allocation_method,
private_link_connection_properties,
provisioning_state,
public_ip_address,
resourceGroupName,
subnet,
subscriptionId,
type,
virtual_network_taps
FROM azure.network.vw_interface_ip_configurations
WHERE networkInterfaceName = '{{ networkInterfaceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
etag,
properties,
type
FROM azure.network.interface_ip_configurations
WHERE networkInterfaceName = '{{ networkInterfaceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';