Skip to main content

product_packages

Creates, updates, deletes, gets or lists a product_packages resource.

Overview

Nameproduct_packages
TypeResource
Idazure.sentinel.product_packages

Fields

NameDatatypeDescription
descriptiontextfield from the properties object
authortextfield from the properties object
categoriestextfield from the properties object
content_idtextfield from the properties object
content_kindtextfield from the properties object
content_product_idtextfield from the properties object
content_schema_versiontextfield from the properties object
dependenciestextfield from the properties object
display_nametextfield from the properties object
etagtextEtag of the azure resource
first_publish_datetextfield from the properties object
icontextfield from the properties object
installed_versiontextfield from the properties object
is_deprecatedtextfield from the properties object
is_featuredtextfield from the properties object
is_newtextfield from the properties object
is_previewtextfield from the properties object
last_publish_datetextfield from the properties object
metadata_resource_idtextfield from the properties object
packageIdtextfield from the properties object
packaged_contenttextfield from the properties object
providerstextfield from the properties object
publisher_display_nametextfield from the properties object
resourceGroupNametextfield from the properties object
sourcetextfield from the properties object
subscriptionIdtextfield from the properties object
supporttextfield from the properties object
threat_analysis_tacticstextfield from the properties object
threat_analysis_techniquestextfield from the properties object
versiontextfield from the properties object
workspaceNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTpackageId, resourceGroupName, subscriptionId, workspaceNameGets a package by its identifier from the catalog.
listSELECTresourceGroupName, subscriptionId, workspaceNameGets all packages from the catalog.

Expandable properties:

  • properties/installed
  • properties/packagedContent |

SELECT examples

Gets all packages from the catalog. Expandable properties:

  • properties/installed
  • properties/packagedContent
SELECT
description,
author,
categories,
content_id,
content_kind,
content_product_id,
content_schema_version,
dependencies,
display_name,
etag,
first_publish_date,
icon,
installed_version,
is_deprecated,
is_featured,
is_new,
is_preview,
last_publish_date,
metadata_resource_id,
packageId,
packaged_content,
providers,
publisher_display_name,
resourceGroupName,
source,
subscriptionId,
support,
threat_analysis_tactics,
threat_analysis_techniques,
version,
workspaceName
FROM azure.sentinel.vw_product_packages
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';