vw_source_controls
Creates, updates, deletes, gets or lists a vw_source_controls
resource.
Overview
Name | vw_source_controls |
Type | View |
Id | azure.sentinel.vw_source_controls |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
etag as etag,
JSON_EXTRACT(properties, '$.id') as "id",
JSON_EXTRACT(properties, '$.version') as "version",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.repoType') as "repo_type",
JSON_EXTRACT(properties, '$.contentTypes') as "content_types",
JSON_EXTRACT(properties, '$.repository') as "repository",
JSON_EXTRACT(properties, '$.servicePrincipal') as "service_principal",
JSON_EXTRACT(properties, '$.repositoryAccess') as "repository_access",
JSON_EXTRACT(properties, '$.repositoryResourceInfo') as "repository_resource_info",
JSON_EXTRACT(properties, '$.lastDeploymentInfo') as "last_deployment_info",
JSON_EXTRACT(properties, '$.pullRequest') as "pull_request",
subscriptionId,
resourceGroupName,
workspaceName,
sourceControlId
FROM azure.sentinel.source_controls
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';
SELECT
etag as etag,
json_extract_path_text(properties, '$.id') as "id",
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, '$.repoType') as "repo_type",
json_extract_path_text(properties, '$.contentTypes') as "content_types",
json_extract_path_text(properties, '$.repository') as "repository",
json_extract_path_text(properties, '$.servicePrincipal') as "service_principal",
json_extract_path_text(properties, '$.repositoryAccess') as "repository_access",
json_extract_path_text(properties, '$.repositoryResourceInfo') as "repository_resource_info",
json_extract_path_text(properties, '$.lastDeploymentInfo') as "last_deployment_info",
json_extract_path_text(properties, '$.pullRequest') as "pull_request",
subscriptionId,
resourceGroupName,
workspaceName,
sourceControlId
FROM azure.sentinel.source_controls
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';