Skip to main content

diagnostics_detectors

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

Overview

Namediagnostics_detectors
TypeResource
Idazure.container_apps.diagnostics_detectors

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
propertiesobjectDiagnostics resource specific properties

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, containerAppName, detectorName
listselectsubscriptionId, resourceGroupName, containerAppName

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
containerAppNamestringName of the Container App for which detector info is needed.
detectorNamestringName of the Container App Detector.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

OK

SELECT
properties
FROM azure.container_apps.diagnostics_detectors
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND containerAppName = '{{ containerAppName }}' -- required
AND detectorName = '{{ detectorName }}' -- required
;