summaries
Creates, updates, deletes, gets or lists a summaries
resource.
Overview
Name | summaries |
Type | Resource |
Id | azure.iot_firmware_defense.summaries |
Fields
- vw_summaries
- summaries
Name | Datatype | Description |
---|---|---|
id | text | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | text | The name of the resource |
firmwareId | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
summaryName | text | field from the properties object |
summary_type | text | field from the properties object |
system_data | text | field from the properties object |
type | text | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
workspaceName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
properties | object | Properties of an analysis summary. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | firmwareId, resourceGroupName, subscriptionId, summaryName, workspaceName | Get an analysis result summary of a firmware by name. |
list_by_firmware | SELECT | firmwareId, resourceGroupName, subscriptionId, workspaceName | Lists 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.
- vw_summaries
- summaries
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 }}';
SELECT
id,
name,
properties,
systemData,
type
FROM azure.iot_firmware_defense.summaries
WHERE firmwareId = '{{ firmwareId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';