content_packages
Creates, updates, deletes, gets or lists a content_packages
resource.
Overview
Name | content_packages |
Type | Resource |
Id | azure.sentinel.content_packages |
Fields
- vw_content_packages
- content_packages
Name | Datatype | Description |
---|---|---|
description | text | field from the properties object |
author | text | field from the properties object |
categories | text | field from the properties object |
content_id | text | field from the properties object |
content_kind | text | field from the properties object |
content_product_id | text | field from the properties object |
content_schema_version | text | field from the properties object |
dependencies | text | field from the properties object |
display_name | text | field from the properties object |
etag | text | Etag of the azure resource |
first_publish_date | text | field from the properties object |
icon | text | field from the properties object |
is_deprecated | text | field from the properties object |
is_featured | text | field from the properties object |
is_new | text | field from the properties object |
is_preview | text | field from the properties object |
last_publish_date | text | field from the properties object |
packageId | text | field from the properties object |
providers | text | field from the properties object |
publisher_display_name | text | field from the properties object |
resourceGroupName | text | field from the properties object |
source | text | field from the properties object |
subscriptionId | text | field from the properties object |
support | text | field from the properties object |
threat_analysis_tactics | text | field from the properties object |
threat_analysis_techniques | text | field from the properties object |
version | text | field from the properties object |
workspaceName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
etag | string | Etag of the azure resource |
properties | object | Describes package properties |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | packageId, resourceGroupName, subscriptionId, workspaceName | Gets an installed packages by its id. |
list | SELECT | resourceGroupName, subscriptionId, workspaceName | Gets all installed packages. |
install | EXEC | packageId, resourceGroupName, subscriptionId, workspaceName | Install a package to the workspace. |
uninstall | EXEC | packageId, resourceGroupName, subscriptionId, workspaceName | Uninstall a package from the workspace. |
SELECT
examples
Gets all installed packages.
- vw_content_packages
- content_packages
SELECT
description,
author,
categories,
content_id,
content_kind,
content_product_id,
content_schema_version,
dependencies,
display_name,
etag,
first_publish_date,
icon,
is_deprecated,
is_featured,
is_new,
is_preview,
last_publish_date,
packageId,
providers,
publisher_display_name,
resourceGroupName,
source,
subscriptionId,
support,
threat_analysis_tactics,
threat_analysis_techniques,
version,
workspaceName
FROM azure.sentinel.vw_content_packages
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';
SELECT
etag,
properties
FROM azure.sentinel.content_packages
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';