Skip to main content

deleted_workbooks

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

Overview

Namedeleted_workbooks
TypeResource
Idazure.application_insights.deleted_workbooks

Fields

The following fields are returned by SELECT queries:

A list containing 0 or more workbook definitions.

NameDatatypeDescription
etagstringResource etag
kindstringThe kind of workbook. Only valid value is shared.
propertiesobjectMetadata describing a workbook for an Azure resource.
systemDataobjectMetadata pertaining to creation and last modification of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_subscriptionselectsubscriptionId, categorytagsGet all recently deleted Workbooks in a specified subscription.

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
categorystringCategory of workbook to return.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
tagsarrayTags presents on each workbook returned.

SELECT examples

Get all recently deleted Workbooks in a specified subscription.

SELECT
etag,
kind,
properties,
systemData
FROM azure.application_insights.deleted_workbooks
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND category = '{{ category }}' -- required
AND tags = '{{ tags }}'
;