UNPKG

@azure/arm-security

Version:
40 lines 1.82 kB
import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { SecureScores } from "../operationsInterfaces"; import { SecurityCenter } from "../securityCenter"; import { SecureScoreItem, SecureScoresListOptionalParams, SecureScoresGetOptionalParams, SecureScoresGetResponse } from "../models"; /** Class containing SecureScores operations. */ export declare class SecureScoresImpl implements SecureScores { private readonly client; /** * Initialize a new instance of the class SecureScores class. * @param client Reference to the service client */ constructor(client: SecurityCenter); /** * List secure scores for all your Security Center initiatives within your current scope. * @param options The options parameters. */ list(options?: SecureScoresListOptionalParams): PagedAsyncIterableIterator<SecureScoreItem>; private listPagingPage; private listPagingAll; /** * List secure scores for all your Security Center initiatives within your current scope. * @param options The options parameters. */ private _list; /** * Get secure score for a specific Security Center initiative within your current scope. For the ASC * Default initiative, use 'ascScore'. * @param secureScoreName The initiative name. For the ASC Default initiative, use 'ascScore' as in the * sample request below. * @param options The options parameters. */ get(secureScoreName: string, options?: SecureScoresGetOptionalParams): Promise<SecureScoresGetResponse>; /** * ListNext * @param nextLink The nextLink from the previous successful call to the List method. * @param options The options parameters. */ private _listNext; } //# sourceMappingURL=secureScores.d.ts.map