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
The following fields are returned by SELECT queries:
- get
| 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
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, resource_name, subscription_id | Returns current billing features for an Application Insights component. | |
update | update | resource_group_name, resource_name, subscription_id | Update 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.
| Name | Datatype | Description |
|---|---|---|
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
resource_name | string | The name of the Application Insights component resource. Required. |
subscription_id | string |
SELECT examples
- get
Returns current billing features for an Application Insights component.
SELECT
CurrentBillingFeatures,
DataVolumeCap
FROM azure.application_insights.component_current_billing_features
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND resource_name = '{{ resource_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
UPDATE examples
- update
Update current billing features for an Application Insights component.
UPDATE azure.application_insights.component_current_billing_features
SET
DataVolumeCap = '{{ DataVolumeCap }}',
CurrentBillingFeatures = '{{ CurrentBillingFeatures }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND resource_name = '{{ resource_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
RETURNING
CurrentBillingFeatures,
DataVolumeCap;