Skip to main content

load_balancer_probes

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

Overview

Nameload_balancer_probes
TypeResource
Idazure.network.load_balancer_probes

Fields

NameDatatypeDescription
idtextResource ID.
nametextThe name of the resource that is unique within the set of probes 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.
interval_in_secondstextfield from the properties object
loadBalancerNametextfield from the properties object
load_balancing_rulestextfield from the properties object
no_healthy_backends_behaviortextfield from the properties object
number_of_probestextfield from the properties object
porttextfield from the properties object
probeNametextfield from the properties object
probe_thresholdtextfield from the properties object
protocoltextfield from the properties object
provisioning_statetextfield from the properties object
request_pathtextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextType of the resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTloadBalancerName, probeName, resourceGroupName, subscriptionIdGets load balancer probe.
listSELECTloadBalancerName, resourceGroupName, subscriptionIdGets all the load balancer probes.

SELECT examples

Gets all the load balancer probes.

SELECT
id,
name,
etag,
interval_in_seconds,
loadBalancerName,
load_balancing_rules,
no_healthy_backends_behavior,
number_of_probes,
port,
probeName,
probe_threshold,
protocol,
provisioning_state,
request_path,
resourceGroupName,
subscriptionId,
type
FROM azure.network.vw_load_balancer_probes
WHERE loadBalancerName = '{{ loadBalancerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';