Skip to main content

cves

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

Overview

Namecves
TypeResource
Idazure.iot_firmware_defense.cves

Fields

NameDatatypeDescription
idstringFully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
propertiesobjectDetails of a CVE detected in firmware.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

NameAccessible byRequired ParamsDescription
list_by_firmwareSELECTfirmwareId, resourceGroupName, subscriptionId, workspaceNameLists CVE analysis results of a firmware.

SELECT examples

Lists CVE analysis results of a firmware.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.iot_firmware_defense.cves
WHERE firmwareId = '{{ firmwareId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';