deleted_workbooks
Creates, updates, deletes, gets or lists a deleted_workbooks
resource.
Overview
Name | deleted_workbooks |
Type | Resource |
Id | azure.application_insights.deleted_workbooks |
Fields
The following fields are returned by SELECT
queries:
- list_by_subscription
A list containing 0 or more workbook definitions.
Name | Datatype | Description |
---|---|---|
etag | string | Resource etag |
kind | string | The kind of workbook. Only valid value is shared. |
properties | object | Metadata describing a workbook for an Azure resource. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list_by_subscription | select | subscriptionId , category | tags | Get 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.
Name | Datatype | Description |
---|---|---|
category | string | Category of workbook to return. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
tags | array | Tags presents on each workbook returned. |
SELECT
examples
- list_by_subscription
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 }}'
;