Skip to main content

password_hashes

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

Overview

Namepassword_hashes
TypeResource
Idazure.iot_firmware_defense.password_hashes

Fields

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

SELECT examples

Lists password hash analysis results of a firmware.

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