UNPKG

@azure/arm-security

Version:
19 lines 1.05 kB
import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { SecureScoreItem, SecureScoresListOptionalParams, SecureScoresGetOptionalParams, SecureScoresGetResponse } from "../models"; /** Interface representing a SecureScores. */ export interface SecureScores { /** * List secure scores for all your Security Center initiatives within your current scope. * @param options The options parameters. */ list(options?: SecureScoresListOptionalParams): PagedAsyncIterableIterator<SecureScoreItem>; /** * 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>; } //# sourceMappingURL=secureScores.d.ts.map