load_balancer_probes
Creates, updates, deletes, gets or lists a load_balancer_probes
resource.
Overview
Name | load_balancer_probes |
Type | Resource |
Id | azure.network.load_balancer_probes |
Fields
- vw_load_balancer_probes
- load_balancer_probes
Name | Datatype | Description |
---|---|---|
id | text | Resource ID. |
name | text | The 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. |
etag | text | A unique read-only string that changes whenever the resource is updated. |
interval_in_seconds | text | field from the properties object |
loadBalancerName | text | field from the properties object |
load_balancing_rules | text | field from the properties object |
no_healthy_backends_behavior | text | field from the properties object |
number_of_probes | text | field from the properties object |
port | text | field from the properties object |
probeName | text | field from the properties object |
probe_threshold | text | field from the properties object |
protocol | text | field from the properties object |
provisioning_state | text | field from the properties object |
request_path | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Type of the resource. |
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | The 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. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
properties | object | Load balancer probe resource. |
type | string | Type of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | loadBalancerName, probeName, resourceGroupName, subscriptionId | Gets load balancer probe. |
list | SELECT | loadBalancerName, resourceGroupName, subscriptionId | Gets all the load balancer probes. |
SELECT
examples
Gets all the load balancer probes.
- vw_load_balancer_probes
- 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 }}';
SELECT
id,
name,
etag,
properties,
type
FROM azure.network.load_balancer_probes
WHERE loadBalancerName = '{{ loadBalancerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';