intelligence_packs
Creates, updates, deletes, gets or lists a intelligence_packs
resource.
Overview
Name | intelligence_packs |
Type | Resource |
Id | azure.log_analytics.intelligence_packs |
Fields
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | resourceGroupName, subscriptionId, workspaceName | Lists all the intelligence packs possible and whether they are enabled or disabled for a given workspace. |
disable | EXEC | intelligencePackName, resourceGroupName, subscriptionId, workspaceName | Disables an intelligence pack for a given workspace. |
enable | EXEC | intelligencePackName, resourceGroupName, subscriptionId, workspaceName | Enables an intelligence pack for a given workspace. |
SELECT
examples
Lists all the intelligence packs possible and whether they are enabled or disabled for a given workspace.
SELECT
FROM azure.log_analytics.intelligence_packs
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';