intelligence_packs
Creates, updates, deletes, gets or lists an intelligence_packs
resource.
Overview
Name | intelligence_packs |
Type | Resource |
Id | azure.log_analytics.intelligence_packs |
Fields
The following fields are returned by SELECT
queries:
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
disable | exec | resourceGroupName , workspaceName , intelligencePackName , subscriptionId | Disables an intelligence pack for a given workspace. | |
enable | exec | resourceGroupName , workspaceName , intelligencePackName , subscriptionId | Enables an intelligence pack for a given workspace. | |
list | exec | resourceGroupName , workspaceName , subscriptionId | Lists all the intelligence packs possible and whether they are enabled or disabled for a given workspace. |
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 |
---|---|---|
intelligencePackName | string | The name of the intelligence pack to be enabled. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
workspaceName | string | The name of the workspace. |
Lifecycle Methods
- disable
- enable
- list
Disables an intelligence pack for a given workspace.
EXEC azure.log_analytics.intelligence_packs.disable
@resourceGroupName='{{ resourceGroupName }}' --required,
@workspaceName='{{ workspaceName }}' --required,
@intelligencePackName='{{ intelligencePackName }}' --required,
@subscriptionId='{{ subscriptionId }}' --required
;
Enables an intelligence pack for a given workspace.
EXEC azure.log_analytics.intelligence_packs.enable
@resourceGroupName='{{ resourceGroupName }}' --required,
@workspaceName='{{ workspaceName }}' --required,
@intelligencePackName='{{ intelligencePackName }}' --required,
@subscriptionId='{{ subscriptionId }}' --required
;
Lists all the intelligence packs possible and whether they are enabled or disabled for a given workspace.
EXEC azure.log_analytics.intelligence_packs.list
@resourceGroupName='{{ resourceGroupName }}' --required,
@workspaceName='{{ workspaceName }}' --required,
@subscriptionId='{{ subscriptionId }}' --required
;