managed_environment_diagnostics_detectors
Creates, updates, deletes, gets or lists a managed_environment_diagnostics_detectors
resource.
Overview
Name | managed_environment_diagnostics_detectors |
Type | Resource |
Id | azure.container_apps.managed_environment_diagnostics_detectors |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Name | Datatype | Description |
---|---|---|
properties | object | Diagnostics resource specific properties |
Name | Datatype | Description |
---|---|---|
properties | object | Diagnostics resource specific properties |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , environmentName , detectorName | Get the diagnostics data for a Managed Environment used to host container apps. | |
list | select | subscriptionId , resourceGroupName , environmentName | Get the list of diagnostics for a Managed Environment used to host container apps. |
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.
Name | Datatype | Description |
---|---|---|
detectorName | string | Name of the Managed Environment detector. |
environmentName | string | Name of the Environment. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
- list
Get the diagnostics data for a Managed Environment used to host container apps.
SELECT
properties
FROM azure.container_apps.managed_environment_diagnostics_detectors
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND environmentName = '{{ environmentName }}' -- required
AND detectorName = '{{ detectorName }}' -- required
;
Get the list of diagnostics for a Managed Environment used to host container apps.
SELECT
properties
FROM azure.container_apps.managed_environment_diagnostics_detectors
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND environmentName = '{{ environmentName }}' -- required
;