UNPKG

@azure/arm-security

Version:
25 lines 1.92 kB
import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { IoTSecurityAggregatedRecommendation, IotSecuritySolutionsAnalyticsRecommendationListOptionalParams, IotSecuritySolutionsAnalyticsRecommendationGetOptionalParams, IotSecuritySolutionsAnalyticsRecommendationGetResponse } from "../models"; /** Interface representing a IotSecuritySolutionsAnalyticsRecommendation. */ export interface IotSecuritySolutionsAnalyticsRecommendation { /** * Use this method to get the list of aggregated security analytics recommendations of yours IoT * Security solution. * @param resourceGroupName The name of the resource group within the user's subscription. The name is * case insensitive. * @param solutionName The name of the IoT Security solution. * @param options The options parameters. */ list(resourceGroupName: string, solutionName: string, options?: IotSecuritySolutionsAnalyticsRecommendationListOptionalParams): PagedAsyncIterableIterator<IoTSecurityAggregatedRecommendation>; /** * Use this method to get the aggregated security analytics recommendation of yours IoT Security * solution. This aggregation is performed by recommendation name. * @param resourceGroupName The name of the resource group within the user's subscription. The name is * case insensitive. * @param solutionName The name of the IoT Security solution. * @param aggregatedRecommendationName Name of the recommendation aggregated for this query. * @param options The options parameters. */ get(resourceGroupName: string, solutionName: string, aggregatedRecommendationName: string, options?: IotSecuritySolutionsAnalyticsRecommendationGetOptionalParams): Promise<IotSecuritySolutionsAnalyticsRecommendationGetResponse>; } //# sourceMappingURL=iotSecuritySolutionsAnalyticsRecommendation.d.ts.map