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:

An Application Insights component feature capabilities definition.

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
getselectresourceGroupName, subscriptionId, resourceNameReturns 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
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
resourceNamestringThe name of the Application Insights component resource.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

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 resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceName = '{{ resourceName }}' -- required
;