load_balancer_frontend_ip_configurations
Creates, updates, deletes, gets or lists a load_balancer_frontend_ip_configurations
resource.
Overview
Name | load_balancer_frontend_ip_configurations |
Type | Resource |
Id | azure.network.load_balancer_frontend_ip_configurations |
Fields
- vw_load_balancer_frontend_ip_configurations
- load_balancer_frontend_ip_configurations
Name | Datatype | Description |
---|---|---|
id | text | Resource ID. |
name | text | The 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. |
etag | text | A unique read-only string that changes whenever the resource is updated. |
frontendIPConfigurationName | text | field from the properties object |
gateway_load_balancer | text | field from the properties object |
inbound_nat_pools | text | field from the properties object |
inbound_nat_rules | text | field from the properties object |
loadBalancerName | text | field from the properties object |
load_balancing_rules | text | field from the properties object |
outbound_rules | text | field from the properties object |
private_ip_address | 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 |
provisioning_state | text | field from the properties object |
public_ip_address | text | field from the properties object |
public_ip_prefix | 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 | Type of the resource. |
zones | text | A list of availability zones denoting the IP allocated for the resource needs to come from. |
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | The 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. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
properties | object | Properties of Frontend IP Configuration of the load balancer. |
type | string | Type of the resource. |
zones | array | A list of availability zones denoting the IP allocated for the resource needs to come from. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | frontendIPConfigurationName, loadBalancerName, resourceGroupName, subscriptionId | Gets load balancer frontend IP configuration. |
list | SELECT | loadBalancerName, resourceGroupName, subscriptionId | Gets all the load balancer frontend IP configurations. |
SELECT
examples
Gets all the load balancer frontend IP configurations.
- vw_load_balancer_frontend_ip_configurations
- 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 }}';
SELECT
id,
name,
etag,
properties,
type,
zones
FROM azure.network.load_balancer_frontend_ip_configurations
WHERE loadBalancerName = '{{ loadBalancerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';