Skip to main content

summaries

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

Overview

Namesummaries
TypeResource
Idazure.iot_firmware_defense.summaries

Fields

NameDatatypeDescription
idtextFully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
nametextThe name of the resource
firmwareIdtextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
summaryNametextfield from the properties object
summary_typetextfield from the properties object
system_datatextfield from the properties object
typetextThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
workspaceNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTfirmwareId, resourceGroupName, subscriptionId, summaryName, workspaceNameGet an analysis result summary of a firmware by name.
list_by_firmwareSELECTfirmwareId, resourceGroupName, subscriptionId, workspaceNameLists analysis result summary names of a firmware. To fetch the full summary data, get that summary by name.

SELECT examples

Lists analysis result summary names of a firmware. To fetch the full summary data, get that summary by name.

SELECT
id,
name,
firmwareId,
resourceGroupName,
subscriptionId,
summaryName,
summary_type,
system_data,
type,
workspaceName
FROM azure.iot_firmware_defense.vw_summaries
WHERE firmwareId = '{{ firmwareId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';