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

The following fields are returned by SELECT queries:

Request successful. The operation returns LoadBalancer Probe resource.

NameDatatypeDescription
idstringResource ID.
namestringThe 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.
etagstringA unique read-only string that changes whenever the resource is updated.
propertiesobjectProperties of load balancer probe.
typestringType of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, loadBalancerName, probeName, subscriptionIdGets load balancer probe.
listselectresourceGroupName, loadBalancerName, subscriptionIdGets all the load balancer probes.

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
loadBalancerNamestringThe name of the load balancer.
probeNamestringThe name of the probe.
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 probe.

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