diagnostics_site_detectors
Creates, updates, deletes, gets or lists a diagnostics_site_detectors
resource.
Overview
Name | diagnostics_site_detectors |
Type | Resource |
Id | azure.app_service.diagnostics_site_detectors |
Fields
- vw_diagnostics_site_detectors
- diagnostics_site_detectors
Name | Datatype | Description |
---|---|---|
id | text | Resource Id. |
name | text | Resource Name. |
description | text | field from the properties object |
detectorName | text | field from the properties object |
diagnosticCategory | text | field from the properties object |
display_name | text | field from the properties object |
is_enabled | text | field from the properties object |
kind | text | Kind of resource. |
rank | text | field from the properties object |
resourceGroupName | text | field from the properties object |
siteName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Resource type. |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource Name. |
kind | string | Kind of resource. |
properties | object | Class representing detector definition |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | detectorName, diagnosticCategory, resourceGroupName, siteName, subscriptionId | Description for Get Detector |
list | SELECT | diagnosticCategory, resourceGroupName, siteName, subscriptionId | Description for Get Detectors |
SELECT
examples
Description for Get Detectors
- vw_diagnostics_site_detectors
- diagnostics_site_detectors
SELECT
id,
name,
description,
detectorName,
diagnosticCategory,
display_name,
is_enabled,
kind,
rank,
resourceGroupName,
siteName,
subscriptionId,
type
FROM azure.app_service.vw_diagnostics_site_detectors
WHERE diagnosticCategory = '{{ diagnosticCategory }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.diagnostics_site_detectors
WHERE diagnosticCategory = '{{ diagnosticCategory }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';