Skip to main content

iot_security_solutions_analytics_recommendations

Creates, updates, deletes, gets or lists an iot_security_solutions_analytics_recommendations resource.

Overview

Nameiot_security_solutions_analytics_recommendations
TypeResource
Idazure.security.iot_security_solutions_analytics_recommendations

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
propertiesobjectSecurity Solution data
systemDataobjectMetadata pertaining to creation and last modification of the resource.
tagsobjectResource tags
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
getselectsubscriptionId, resourceGroupName, solutionName, aggregatedRecommendationNameapi-versionUse this method to get the aggregated security analytics recommendation of yours IoT Security solution. This aggregation is performed by recommendation name.
listselectsubscriptionId, resourceGroupName, solutionNameapi-version, $topUse this method to get the list of aggregated security analytics recommendations of yours IoT Security solution.

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
aggregatedRecommendationNamestringName of the recommendation aggregated for this query.
resourceGroupNamestringThe name of the resource group within the user's subscription. The name is case insensitive.
solutionNamestringThe name of the IoT Security solution.
subscriptionIdstringAzure subscription ID
$topinteger (int32)Number of results to retrieve.
api-versionstringAPI version for the operation

SELECT examples

Use this method to get the aggregated security analytics recommendation of yours IoT Security solution. This aggregation is performed by recommendation name.

SELECT
id,
name,
properties,
systemData,
tags,
type
FROM azure.security.iot_security_solutions_analytics_recommendations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND solutionName = '{{ solutionName }}' -- required
AND aggregatedRecommendationName = '{{ aggregatedRecommendationName }}' -- required
AND api-version = '{{ api-version }}'
;