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:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
categorystringWorkbook category, as defined by the user at creation time. Required.
descriptionstringThe description of the workbook.
displayNamestringThe user-defined name (display name) of the workbook. Required.
etagstringResource etag.
kindstringThe kind of workbook. Only valid value is shared. "shared" (shared)
locationstringThe geo-location where the resource lives. Required.
revisionstringThe unique revision id for this workbook definition.
serializedDatastringConfiguration of this particular workbook. Configuration data is a string containing valid JSON. Required.
sourceIdstringResourceId for a source resource.
storageUristringThe resourceId to the storage account when bring your own storage is used.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
tagsobjectResource tags.
timeModifiedstring (date-time)Date and time in UTC of the last modification that was made to this workbook definition.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".
userIdstringUnique user id of the specific user that owns this workbook.
versionstringWorkbook schema version format, like 'Notebook/1.0', which should match the workbook in serializedData.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_subscriptionselectsubscription_idcategory, tagsGet 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
subscription_idstring
categorystringCategory of workbook to return. Known values are: "workbook", "TSG", "performance", and "retention". Default value is None.
tagsarrayTags presents on each workbook returned. Default value is None.

SELECT examples

Get all recently deleted Workbooks in a specified subscription.

SELECT
id,
name,
category,
description,
displayName,
etag,
kind,
location,
revision,
serializedData,
sourceId,
storageUri,
systemData,
tags,
timeModified,
type,
userId,
version
FROM azure.application_insights.deleted_workbooks
WHERE subscription_id = '{{ subscription_id }}' -- required
AND category = '{{ category }}'
AND tags = '{{ tags }}'
;