component_feature_capabilities
Creates, updates, deletes, gets or lists a component_feature_capabilities
resource.
Overview
Name | component_feature_capabilities |
Type | Resource |
Id | azure.application_insights.component_feature_capabilities |
Fields
The following fields are returned by SELECT
queries:
- get
An Application Insights component feature capabilities definition.
Name | Datatype | Description |
---|---|---|
AnalyticsIntegration | boolean | Reserved, not used now. |
ApiAccessLevel | string | Reserved, not used now. |
ApplicationMap | boolean | Reserved, not used now. |
BurstThrottlePolicy | string | Reserved, not used now. |
DailyCap | number | Daily data volume cap in GB. |
DailyCapResetTime | number | Daily data volume cap UTC reset hour. |
LiveStreamMetrics | boolean | Reserved, not used now. |
MetadataClass | string | Reserved, not used now. |
MultipleStepWebTest | boolean | Whether allow to use multiple steps web test feature. |
OpenSchema | boolean | Reserved, not used now. |
PowerBIIntegration | boolean | Reserved, not used now. |
ProactiveDetection | boolean | Reserved, not used now. |
SupportExportData | boolean | Whether allow to use continuous export feature. |
ThrottleRate | number | Reserved, not used now. |
TrackingType | string | The application insights component used tracking type. |
WorkItemIntegration | boolean | Whether allow to use work item integration feature. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , subscriptionId , resourceName | Returns 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.
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 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
;