component_current_billing_features
Creates, updates, deletes, gets or lists a component_current_billing_features
resource.
Overview
Name | component_current_billing_features |
Type | Resource |
Id | azure.application_insights.component_current_billing_features |
Fields
Name | Datatype | Description |
---|---|---|
CurrentBillingFeatures | array | Current enabled pricing plan. When the component is in the Enterprise plan, this will list both 'Basic' and 'Application Insights Enterprise'. |
DataVolumeCap | object | An Application Insights component daily data volume cap |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, resourceName, subscriptionId | Returns current billing features for an Application Insights component. |
update | REPLACE | resourceGroupName, resourceName, subscriptionId | Update current billing features for an Application Insights component. |
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 }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
REPLACE
example
Replaces all fields in the specified component_current_billing_features
resource.
/*+ update */
REPLACE azure.application_insights.component_current_billing_features
SET
DataVolumeCap = '{{ DataVolumeCap }}',
CurrentBillingFeatures = '{{ CurrentBillingFeatures }}'
WHERE
resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';