Skip to main content

component_available_features

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

Overview

Namecomponent_available_features
TypeResource
Idazure.application_insights.component_available_features

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
ResultarrayA list of Application Insights component feature.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, resource_name, subscription_idReturns 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.

NameDatatypeDescription
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
resource_namestringThe name of the Application Insights component resource. Required.
subscription_idstring

SELECT examples

Returns all available features of the application insights component.

SELECT
Result
FROM azure.application_insights.component_available_features
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND resource_name = '{{ resource_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;