import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { DatabaseSqlVulnerabilityAssessmentsSettings } from "../operationsInterfaces"; import { SqlManagementClient } from "../sqlManagementClient"; import { SqlVulnerabilityAssessment, DatabaseSqlVulnerabilityAssessmentsSettingsListByDatabaseOptionalParams, SqlVulnerabilityAssessmentName, DatabaseSqlVulnerabilityAssessmentsSettingsGetOptionalParams, DatabaseSqlVulnerabilityAssessmentsSettingsGetResponse } from "../models"; /** Class containing DatabaseSqlVulnerabilityAssessmentsSettings operations. */ export declare class DatabaseSqlVulnerabilityAssessmentsSettingsImpl implements DatabaseSqlVulnerabilityAssessmentsSettings { private readonly client; /** * Initialize a new instance of the class DatabaseSqlVulnerabilityAssessmentsSettings class. * @param client Reference to the service client */ constructor(client: SqlManagementClient); /** * Lists SQL Vulnerability Assessment policies associated with a database. * @param resourceGroupName The name of the resource group that contains the resource. You can obtain * this value from the Azure Resource Manager API or the portal. * @param serverName The name of the server. * @param databaseName The name of the database. * @param options The options parameters. */ listByDatabase(resourceGroupName: string, serverName: string, databaseName: string, options?: DatabaseSqlVulnerabilityAssessmentsSettingsListByDatabaseOptionalParams): PagedAsyncIterableIterator; private listByDatabasePagingPage; private listByDatabasePagingAll; /** * Lists SQL Vulnerability Assessment policies associated with a database. * @param resourceGroupName The name of the resource group that contains the resource. You can obtain * this value from the Azure Resource Manager API or the portal. * @param serverName The name of the server. * @param databaseName The name of the database. * @param options The options parameters. */ private _listByDatabase; /** * Gets SQL Vulnerability Assessment policy for database. * @param resourceGroupName The name of the resource group that contains the resource. You can obtain * this value from the Azure Resource Manager API or the portal. * @param serverName The name of the server. * @param databaseName The name of the database. * @param vulnerabilityAssessmentName The name of the SQL Vulnerability Assessment. * @param options The options parameters. */ get(resourceGroupName: string, serverName: string, databaseName: string, vulnerabilityAssessmentName: SqlVulnerabilityAssessmentName, options?: DatabaseSqlVulnerabilityAssessmentsSettingsGetOptionalParams): Promise; /** * ListByDatabaseNext * @param resourceGroupName The name of the resource group that contains the resource. You can obtain * this value from the Azure Resource Manager API or the portal. * @param serverName The name of the server. * @param databaseName The name of the database. * @param nextLink The nextLink from the previous successful call to the ListByDatabase method. * @param options The options parameters. */ private _listByDatabaseNext; } //# sourceMappingURL=databaseSqlVulnerabilityAssessmentsSettings.d.ts.map