component_available_features
Creates, updates, deletes, gets or lists a component_available_features
resource.
Overview
Name | component_available_features |
Type | Resource |
Id | azure.application_insights.component_available_features |
Fields
The following fields are returned by SELECT
queries:
- get
An Application Insights component available features definition.
Name | Datatype | Description |
---|---|---|
Result | array | A list of Application Insights component feature. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , subscriptionId , resourceName | Returns all available features of the application insights component. |
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 |
---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
resourceName | string | The name of the Application Insights component resource. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
Returns all available features of the application insights component.
SELECT
Result
FROM azure.application_insights.component_available_features
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceName = '{{ resourceName }}' -- required
;