UNPKG

@azure/arm-security

Version:
28 lines 1.91 kB
import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { DiscoveredSecuritySolution, DiscoveredSecuritySolutionsListOptionalParams, DiscoveredSecuritySolutionsListByHomeRegionOptionalParams, DiscoveredSecuritySolutionsGetOptionalParams, DiscoveredSecuritySolutionsGetResponse } from "../models"; /** Interface representing a DiscoveredSecuritySolutions. */ export interface DiscoveredSecuritySolutions { /** * Gets a list of discovered Security Solutions for the subscription. * @param options The options parameters. */ list(options?: DiscoveredSecuritySolutionsListOptionalParams): PagedAsyncIterableIterator<DiscoveredSecuritySolution>; /** * Gets a list of discovered Security Solutions for the subscription and location. * @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from * Get locations * @param options The options parameters. */ listByHomeRegion(ascLocation: string, options?: DiscoveredSecuritySolutionsListByHomeRegionOptionalParams): PagedAsyncIterableIterator<DiscoveredSecuritySolution>; /** * Gets a specific discovered Security Solution. * @param resourceGroupName The name of the resource group within the user's subscription. The name is * case insensitive. * @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from * Get locations * @param discoveredSecuritySolutionName Name of a discovered security solution. * @param options The options parameters. */ get(resourceGroupName: string, ascLocation: string, discoveredSecuritySolutionName: string, options?: DiscoveredSecuritySolutionsGetOptionalParams): Promise<DiscoveredSecuritySolutionsGetResponse>; } //# sourceMappingURL=discoveredSecuritySolutions.d.ts.map