managed_environments_diagnostics_roots
Creates, updates, deletes, gets or lists a managed_environments_diagnostics_roots
resource.
Overview
Name | managed_environments_diagnostics_roots |
Type | Resource |
Id | azure.container_apps.managed_environments_diagnostics_roots |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
identity | object | Managed identities for the Managed Environment to interact with other Azure services without maintaining any secrets or credentials in code. |
kind | string | Kind of the Environment. |
location | string | The geo-location where the resource lives |
properties | object | Managed environment resource specific properties |
tags | object | Resource tags. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , environmentName | Get the properties of 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 |
---|---|---|
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
Get the properties of a Managed Environment used to host container apps.
SELECT
identity,
kind,
location,
properties,
tags
FROM azure.container_apps.managed_environments_diagnostics_roots
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND environmentName = '{{ environmentName }}' -- required
;