Skip to main content

component_feature_capabilities

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

Overview

Namecomponent_feature_capabilities
TypeResource
Idazure.application_insights.component_feature_capabilities

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
AnalyticsIntegrationbooleanReserved, not used now.
ApiAccessLevelstringReserved, not used now.
ApplicationMapbooleanReserved, not used now.
BurstThrottlePolicystringReserved, not used now.
DailyCapnumberDaily data volume cap in GB.
DailyCapResetTimenumberDaily data volume cap UTC reset hour.
LiveStreamMetricsbooleanReserved, not used now.
MetadataClassstringReserved, not used now.
MultipleStepWebTestbooleanWhether allow to use multiple steps web test feature.
OpenSchemabooleanReserved, not used now.
PowerBIIntegrationbooleanReserved, not used now.
ProactiveDetectionbooleanReserved, not used now.
SupportExportDatabooleanWhether allow to use continuous export feature.
ThrottleRatenumberReserved, not used now.
TrackingTypestringThe application insights component used tracking type.
WorkItemIntegrationbooleanWhether allow to use work item integration feature.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, resource_name, subscription_idReturns feature capabilities 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 feature capabilities of the application insights component.

SELECT
AnalyticsIntegration,
ApiAccessLevel,
ApplicationMap,
BurstThrottlePolicy,
DailyCap,
DailyCapResetTime,
LiveStreamMetrics,
MetadataClass,
MultipleStepWebTest,
OpenSchema,
PowerBIIntegration,
ProactiveDetection,
SupportExportData,
ThrottleRate,
TrackingType,
WorkItemIntegration
FROM azure.application_insights.component_feature_capabilities
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND resource_name = '{{ resource_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;