UNPKG

@azure/arm-security

Version:
21 lines 1.2 kB
import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { ComplianceResult, ComplianceResultsListOptionalParams, ComplianceResultsGetOptionalParams, ComplianceResultsGetResponse } from "../models"; /** Interface representing a ComplianceResults. */ export interface ComplianceResults { /** * Security compliance results in the subscription * @param scope Scope of the query, can be subscription * (/subscriptions/0b06d9ea-afe6-4779-bd59-30e5c2d9d13f) or management group * (/providers/Microsoft.Management/managementGroups/mgName). * @param options The options parameters. */ list(scope: string, options?: ComplianceResultsListOptionalParams): PagedAsyncIterableIterator<ComplianceResult>; /** * Security Compliance Result * @param resourceId The identifier of the resource. * @param complianceResultName name of the desired assessment compliance result * @param options The options parameters. */ get(resourceId: string, complianceResultName: string, options?: ComplianceResultsGetOptionalParams): Promise<ComplianceResultsGetResponse>; } //# sourceMappingURL=complianceResults.d.ts.map