@azure/arm-security
Version:
A generated SDK for SecurityCenter.
35 lines (32 loc) • 1.25 kB
text/typescript
/*
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
import { PagedAsyncIterableIterator } from "@azure/core-paging";
import {
SecureScoreControlDefinitionItem,
SecureScoreControlDefinitionsListOptionalParams,
SecureScoreControlDefinitionsListBySubscriptionOptionalParams
} from "../models";
/// <reference lib="esnext.asynciterable" />
/** Interface representing a SecureScoreControlDefinitions. */
export interface SecureScoreControlDefinitions {
/**
* List the available security controls, their assessments, and the max score
* @param options The options parameters.
*/
list(
options?: SecureScoreControlDefinitionsListOptionalParams
): PagedAsyncIterableIterator<SecureScoreControlDefinitionItem>;
/**
* For a specified subscription, list the available security controls, their assessments, and the max
* score
* @param options The options parameters.
*/
listBySubscription(
options?: SecureScoreControlDefinitionsListBySubscriptionOptionalParams
): PagedAsyncIterableIterator<SecureScoreControlDefinitionItem>;
}