Skip to main content

component_current_billing_features

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

Overview

Namecomponent_current_billing_features
TypeResource
Idazure.application_insights.component_current_billing_features

Fields

The following fields are returned by SELECT queries:

An Application Insights component billing features definition.

NameDatatypeDescription
CurrentBillingFeaturesarrayCurrent enabled pricing plan. When the component is in the Enterprise plan, this will list both 'Basic' and 'Application Insights Enterprise'.
DataVolumeCapobjectAn Application Insights component daily data volume cap

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, subscriptionId, resourceNameReturns current billing features for an Application Insights component.
updatereplaceresourceGroupName, subscriptionId, resourceNameUpdate current billing features for an 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 current billing features for an Application Insights component.

SELECT
CurrentBillingFeatures,
DataVolumeCap
FROM azure.application_insights.component_current_billing_features
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceName = '{{ resourceName }}' -- required
;

REPLACE examples

Update current billing features for an Application Insights component.

REPLACE azure.application_insights.component_current_billing_features
SET
data__DataVolumeCap = '{{ DataVolumeCap }}',
data__CurrentBillingFeatures = '{{ CurrentBillingFeatures }}'
WHERE
resourceGroupName = '{{ resourceGroupName }}' --required
AND subscriptionId = '{{ subscriptionId }}' --required
AND resourceName = '{{ resourceName }}' --required
RETURNING
CurrentBillingFeatures,
DataVolumeCap;