UNPKG

@azure/arm-security

Version:
48 lines 2.41 kB
import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { ComplianceResults } from "../operationsInterfaces"; import { SecurityCenter } from "../securityCenter"; import { ComplianceResult, ComplianceResultsListOptionalParams, ComplianceResultsGetOptionalParams, ComplianceResultsGetResponse } from "../models"; /** Class containing ComplianceResults operations. */ export declare class ComplianceResultsImpl implements ComplianceResults { private readonly client; /** * Initialize a new instance of the class ComplianceResults class. * @param client Reference to the service client */ constructor(client: SecurityCenter); /** * 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>; private listPagingPage; private listPagingAll; /** * 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. */ private _list; /** * 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>; /** * ListNext * @param scope Scope of the query, can be subscription * (/subscriptions/0b06d9ea-afe6-4779-bd59-30e5c2d9d13f) or management group * (/providers/Microsoft.Management/managementGroups/mgName). * @param nextLink The nextLink from the previous successful call to the List method. * @param options The options parameters. */ private _listNext; } //# sourceMappingURL=complianceResults.d.ts.map