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

The following fields are returned by SELECT queries:

Request successful. The operation returns LoadBalancer FrontendIPConfiguration resource.

NameDatatypeDescription
idstringResource ID.
namestringThe 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.
etagstringA unique read-only string that changes whenever the resource is updated.
propertiesobjectProperties of the load balancer probe.
typestringType of the resource.
zonesarrayA list of availability zones denoting the IP allocated for the resource needs to come from.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, loadBalancerName, frontendIPConfigurationName, subscriptionIdGets load balancer frontend IP configuration.
listselectresourceGroupName, loadBalancerName, subscriptionIdGets all the load balancer frontend IP configurations.

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
frontendIPConfigurationNamestringThe name of the frontend IP configuration.
loadBalancerNamestringThe name of the load balancer.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Gets load balancer frontend IP configuration.

SELECT
id,
name,
etag,
properties,
type,
zones
FROM azure.network.load_balancer_frontend_ip_configurations
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND loadBalancerName = '{{ loadBalancerName }}' -- required
AND frontendIPConfigurationName = '{{ frontendIPConfigurationName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;