vw_product_templates
Creates, updates, deletes, gets or lists a vw_product_templates
resource.
Overview
Name | vw_product_templates |
Type | View |
Id | azure.sentinel.vw_product_templates |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
etag as etag,
JSON_EXTRACT(properties, '$.contentId') as "content_id",
JSON_EXTRACT(properties, '$.contentProductId') as "content_product_id",
JSON_EXTRACT(properties, '$.packageVersion') as "package_version",
JSON_EXTRACT(properties, '$.version') as "version",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.contentKind') as "content_kind",
JSON_EXTRACT(properties, '$.source') as "source",
JSON_EXTRACT(properties, '$.author') as "author",
JSON_EXTRACT(properties, '$.support') as "support",
JSON_EXTRACT(properties, '$.dependencies') as "dependencies",
JSON_EXTRACT(properties, '$.categories') as "categories",
JSON_EXTRACT(properties, '$.providers') as "providers",
JSON_EXTRACT(properties, '$.firstPublishDate') as "first_publish_date",
JSON_EXTRACT(properties, '$.lastPublishDate') as "last_publish_date",
JSON_EXTRACT(properties, '$.customVersion') as "custom_version",
JSON_EXTRACT(properties, '$.contentSchemaVersion') as "content_schema_version",
JSON_EXTRACT(properties, '$.icon') as "icon",
JSON_EXTRACT(properties, '$.threatAnalysisTactics') as "threat_analysis_tactics",
JSON_EXTRACT(properties, '$.threatAnalysisTechniques') as "threat_analysis_techniques",
JSON_EXTRACT(properties, '$.previewImages') as "preview_images",
JSON_EXTRACT(properties, '$.previewImagesDark') as "preview_images_dark",
JSON_EXTRACT(properties, '$.packageId') as "package_id",
JSON_EXTRACT(properties, '$.packageKind') as "package_kind",
JSON_EXTRACT(properties, '$.packageName') as "package_name",
JSON_EXTRACT(properties, '$.isDeprecated') as "is_deprecated",
JSON_EXTRACT(properties, '$.packagedContent') as "packaged_content",
subscriptionId,
resourceGroupName,
workspaceName,
templateId
FROM azure.sentinel.product_templates
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';
SELECT
etag as etag,
json_extract_path_text(properties, '$.contentId') as "content_id",
json_extract_path_text(properties, '$.contentProductId') as "content_product_id",
json_extract_path_text(properties, '$.packageVersion') as "package_version",
json_extract_path_text(properties, '$.version') as "version",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.contentKind') as "content_kind",
json_extract_path_text(properties, '$.source') as "source",
json_extract_path_text(properties, '$.author') as "author",
json_extract_path_text(properties, '$.support') as "support",
json_extract_path_text(properties, '$.dependencies') as "dependencies",
json_extract_path_text(properties, '$.categories') as "categories",
json_extract_path_text(properties, '$.providers') as "providers",
json_extract_path_text(properties, '$.firstPublishDate') as "first_publish_date",
json_extract_path_text(properties, '$.lastPublishDate') as "last_publish_date",
json_extract_path_text(properties, '$.customVersion') as "custom_version",
json_extract_path_text(properties, '$.contentSchemaVersion') as "content_schema_version",
json_extract_path_text(properties, '$.icon') as "icon",
json_extract_path_text(properties, '$.threatAnalysisTactics') as "threat_analysis_tactics",
json_extract_path_text(properties, '$.threatAnalysisTechniques') as "threat_analysis_techniques",
json_extract_path_text(properties, '$.previewImages') as "preview_images",
json_extract_path_text(properties, '$.previewImagesDark') as "preview_images_dark",
json_extract_path_text(properties, '$.packageId') as "package_id",
json_extract_path_text(properties, '$.packageKind') as "package_kind",
json_extract_path_text(properties, '$.packageName') as "package_name",
json_extract_path_text(properties, '$.isDeprecated') as "is_deprecated",
json_extract_path_text(properties, '$.packagedContent') as "packaged_content",
subscriptionId,
resourceGroupName,
workspaceName,
templateId
FROM azure.sentinel.product_templates
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';