Skip to main content

load_balancer_frontend_ip_configurations

Creates, updates, deletes, gets or lists a load_balancer_frontend_ip_configurations resource.

Overview

Nameload_balancer_frontend_ip_configurations
TypeResource
Idazure.network.load_balancer_frontend_ip_configurations

Fields

NameDatatypeDescription
idtextResource ID.
nametextThe name of the resource that is unique within the set of frontend IP configurations used by the load balancer. This name can be used to access the resource.
etagtextA unique read-only string that changes whenever the resource is updated.
frontendIPConfigurationNametextfield from the properties object
gateway_load_balancertextfield from the properties object
inbound_nat_poolstextfield from the properties object
inbound_nat_rulestextfield from the properties object
loadBalancerNametextfield from the properties object
load_balancing_rulestextfield from the properties object
outbound_rulestextfield from the properties object
private_ip_addresstextfield from the properties object
private_ip_address_versiontextfield from the properties object
private_ip_allocation_methodtextfield from the properties object
provisioning_statetextfield from the properties object
public_ip_addresstextfield from the properties object
public_ip_prefixtextfield from the properties object
resourceGroupNametextfield from the properties object
subnettextfield from the properties object
subscriptionIdtextfield from the properties object
typetextType of the resource.
zonestextA list of availability zones denoting the IP allocated for the resource needs to come from.

Methods

NameAccessible byRequired ParamsDescription
getSELECTfrontendIPConfigurationName, loadBalancerName, resourceGroupName, subscriptionIdGets load balancer frontend IP configuration.
listSELECTloadBalancerName, resourceGroupName, subscriptionIdGets all the load balancer frontend IP configurations.

SELECT examples

Gets all the load balancer frontend IP configurations.

SELECT
id,
name,
etag,
frontendIPConfigurationName,
gateway_load_balancer,
inbound_nat_pools,
inbound_nat_rules,
loadBalancerName,
load_balancing_rules,
outbound_rules,
private_ip_address,
private_ip_address_version,
private_ip_allocation_method,
provisioning_state,
public_ip_address,
public_ip_prefix,
resourceGroupName,
subnet,
subscriptionId,
type,
zones
FROM azure.network.vw_load_balancer_frontend_ip_configurations
WHERE loadBalancerName = '{{ loadBalancerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';