UNPKG

@azure/arm-security

Version:
66 lines 3.49 kB
import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { DiscoveredSecuritySolutions } from "../operationsInterfaces"; import { SecurityCenter } from "../securityCenter"; import { DiscoveredSecuritySolution, DiscoveredSecuritySolutionsListOptionalParams, DiscoveredSecuritySolutionsListByHomeRegionOptionalParams, DiscoveredSecuritySolutionsGetOptionalParams, DiscoveredSecuritySolutionsGetResponse } from "../models"; /** Class containing DiscoveredSecuritySolutions operations. */ export declare class DiscoveredSecuritySolutionsImpl implements DiscoveredSecuritySolutions { private readonly client; /** * Initialize a new instance of the class DiscoveredSecuritySolutions class. * @param client Reference to the service client */ constructor(client: SecurityCenter); /** * Gets a list of discovered Security Solutions for the subscription. * @param options The options parameters. */ list(options?: DiscoveredSecuritySolutionsListOptionalParams): PagedAsyncIterableIterator<DiscoveredSecuritySolution>; private listPagingPage; private listPagingAll; /** * 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>; private listByHomeRegionPagingPage; private listByHomeRegionPagingAll; /** * Gets a list of discovered Security Solutions for the subscription. * @param options The options parameters. */ private _list; /** * 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. */ private _listByHomeRegion; /** * 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>; /** * ListNext * @param nextLink The nextLink from the previous successful call to the List method. * @param options The options parameters. */ private _listNext; /** * ListByHomeRegionNext * @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from * Get locations * @param nextLink The nextLink from the previous successful call to the ListByHomeRegion method. * @param options The options parameters. */ private _listByHomeRegionNext; } //# sourceMappingURL=discoveredSecuritySolutions.d.ts.map