Skip to main content

sql_vulnerability_assessment_scans

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

Overview

Namesql_vulnerability_assessment_scans
TypeResource
Idazure.security.sql_vulnerability_assessment_scans

Fields

NameDatatypeDescription
idtextResource Id
nametextResource name
databasetextfield from the properties object
end_timetextfield from the properties object
high_severity_failed_rules_counttextfield from the properties object
is_baseline_appliedtextfield from the properties object
last_scan_timetextfield from the properties object
low_severity_failed_rules_counttextfield from the properties object
medium_severity_failed_rules_counttextfield from the properties object
resourceIdtextfield from the properties object
scanIdtextfield from the properties object
servertextfield from the properties object
sql_versiontextfield from the properties object
start_timetextfield from the properties object
statetextfield from the properties object
total_failed_rules_counttextfield from the properties object
total_passed_rules_counttextfield from the properties object
total_rules_counttextfield from the properties object
trigger_typetextfield from the properties object
typetextResource type
workspaceIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTresourceId, scanId, workspaceId
listSELECTresourceId, workspaceId

SELECT examples

SELECT
id,
name,
database,
end_time,
high_severity_failed_rules_count,
is_baseline_applied,
last_scan_time,
low_severity_failed_rules_count,
medium_severity_failed_rules_count,
resourceId,
scanId,
server,
sql_version,
start_time,
state,
total_failed_rules_count,
total_passed_rules_count,
total_rules_count,
trigger_type,
type,
workspaceId
FROM azure.security.vw_sql_vulnerability_assessment_scans
WHERE resourceId = '{{ resourceId }}'
AND workspaceId = '{{ workspaceId }}';