@azure/arm-security
Version:
A generated SDK for SecurityCenter.
36 lines (33 loc) • 1.35 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 {
SecuritySolutionsReferenceDataListOptionalParams,
SecuritySolutionsReferenceDataListResponse,
SecuritySolutionsReferenceDataListByHomeRegionOptionalParams,
SecuritySolutionsReferenceDataListByHomeRegionResponse
} from "../models";
/** Interface representing a SecuritySolutionsReferenceDataOperations. */
export interface SecuritySolutionsReferenceDataOperations {
/**
* Gets a list of all supported Security Solutions for the subscription.
* @param options The options parameters.
*/
list(
options?: SecuritySolutionsReferenceDataListOptionalParams
): Promise<SecuritySolutionsReferenceDataListResponse>;
/**
* Gets list of all supported Security Solutions for subscription and location.
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from
* Get locations
* @param options The options parameters.
*/
listByHomeRegion(
ascLocation: string,
options?: SecuritySolutionsReferenceDataListByHomeRegionOptionalParams
): Promise<SecuritySolutionsReferenceDataListByHomeRegionResponse>;
}