Skip to main content

binary_hardenings

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

Overview

Namebinary_hardenings
TypeResource
Idazure.iot_firmware_defense.binary_hardenings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring (arm-id)Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
propertiesobjectThe properties of a binary hardening result found within a firmware image (title: binary hardening result properties)
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_firmwareselectsubscriptionId, resourceGroupName, workspaceName, firmwareIdLists binary hardening analysis results of a firmware.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
firmwareIdstringThe id of the firmware.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
workspaceNamestringThe name of the firmware analysis workspace.

SELECT examples

Lists binary hardening analysis results of a firmware.

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