Skip to main content

crypto_certificates

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

Overview

Namecrypto_certificates
TypeResource
Idazure.iot_firmware_defense.crypto_certificates

Fields

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

SELECT examples

Lists cryptographic certificate analysis results found in a firmware.

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