Skip to main content

components_purge_status

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

Overview

Namecomponents_purge_status
TypeResource
Idazure.application_insights.components_purge_status

Fields

The following fields are returned by SELECT queries:

Returns status of purge operation in body of response. e.g.: running, completed.

NameDatatypeDescription
statusstringStatus of the operation represented by the requested Id.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, subscriptionId, resourceName, purgeIdGet status for an ongoing purge operation.

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
purgeIdstringIn a purge status request, this is the Id of the operation the status of which is returned.
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

Get status for an ongoing purge operation.

SELECT
status
FROM azure.application_insights.components_purge_status
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceName = '{{ resourceName }}' -- required
AND purgeId = '{{ purgeId }}' -- required
;