Skip to main content

sbom_components

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

Overview

Namesbom_components
TypeResource
Idazure.iot_firmware_defense.sbom_components

Fields

NameDatatypeDescription
idstringFully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
propertiesobjectSBOM component of a 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 SBOM analysis results of a firmware.

SELECT examples

Lists SBOM analysis results of a firmware.

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