vw_content_packages
Creates, updates, deletes, gets or lists a vw_content_packages
resource.
Overview
Name | vw_content_packages |
Type | View |
Id | azure.sentinel.vw_content_packages |
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, '$.contentKind') as "content_kind",
JSON_EXTRACT(properties, '$.contentSchemaVersion') as "content_schema_version",
JSON_EXTRACT(properties, '$.isNew') as "is_new",
JSON_EXTRACT(properties, '$.isPreview') as "is_preview",
JSON_EXTRACT(properties, '$.isFeatured') as "is_featured",
JSON_EXTRACT(properties, '$.isDeprecated') as "is_deprecated",
JSON_EXTRACT(properties, '$.version') as "version",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.publisherDisplayName') as "publisher_display_name",
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, '$.providers') as "providers",
JSON_EXTRACT(properties, '$.firstPublishDate') as "first_publish_date",
JSON_EXTRACT(properties, '$.lastPublishDate') as "last_publish_date",
JSON_EXTRACT(properties, '$.categories') as "categories",
JSON_EXTRACT(properties, '$.threatAnalysisTactics') as "threat_analysis_tactics",
JSON_EXTRACT(properties, '$.threatAnalysisTechniques') as "threat_analysis_techniques",
JSON_EXTRACT(properties, '$.icon') as "icon",
subscriptionId,
resourceGroupName,
workspaceName,
packageId
FROM azure.sentinel.content_packages
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, '$.contentKind') as "content_kind",
json_extract_path_text(properties, '$.contentSchemaVersion') as "content_schema_version",
json_extract_path_text(properties, '$.isNew') as "is_new",
json_extract_path_text(properties, '$.isPreview') as "is_preview",
json_extract_path_text(properties, '$.isFeatured') as "is_featured",
json_extract_path_text(properties, '$.isDeprecated') as "is_deprecated",
json_extract_path_text(properties, '$.version') as "version",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.publisherDisplayName') as "publisher_display_name",
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, '$.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, '$.categories') as "categories",
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, '$.icon') as "icon",
subscriptionId,
resourceGroupName,
workspaceName,
packageId
FROM azure.sentinel.content_packages
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';