iot_security_solutions_analytics_recommendations
Creates, updates, deletes, gets or lists an iot_security_solutions_analytics_recommendations
resource.
Overview
Name | iot_security_solutions_analytics_recommendations |
Type | Resource |
Id | azure.security.iot_security_solutions_analytics_recommendations |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Name | Datatype | Description |
---|---|---|
id | string (arm-id) | 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 | Security Solution data |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
tags | object | Resource tags |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Name | Datatype | Description |
---|---|---|
id | string (arm-id) | 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 | Security Solution data |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
tags | object | Resource tags |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , solutionName , aggregatedRecommendationName | api-version | Use this method to get the aggregated security analytics recommendation of yours IoT Security solution. This aggregation is performed by recommendation name. |
list | select | subscriptionId , resourceGroupName , solutionName | api-version , $top | Use 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.
Name | Datatype | Description |
---|---|---|
aggregatedRecommendationName | string | Name of the recommendation aggregated for this query. |
resourceGroupName | string | The name of the resource group within the user's subscription. The name is case insensitive. |
solutionName | string | The name of the IoT Security solution. |
subscriptionId | string | Azure subscription ID |
$top | integer (int32) | Number of results to retrieve. |
api-version | string | API version for the operation |
SELECT
examples
- get
- list
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 }}'
;
Use this method to get the list of aggregated security analytics recommendations of yours IoT Security solution.
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 api-version = '{{ api-version }}'
AND $top = '{{ $top }}'
;