/*
* 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 { SimplePollerLike, OperationState } from "@azure/core-lro";
import {
VulnerabilityAssessmentScanRecord,
VulnerabilityAssessmentName,
ManagedDatabaseVulnerabilityAssessmentScansListByDatabaseOptionalParams,
ManagedDatabaseVulnerabilityAssessmentScansInitiateScanOptionalParams,
ManagedDatabaseVulnerabilityAssessmentScansExportOptionalParams,
ManagedDatabaseVulnerabilityAssessmentScansExportResponse,
ManagedDatabaseVulnerabilityAssessmentScansGetOptionalParams,
ManagedDatabaseVulnerabilityAssessmentScansGetResponse
} from "../models";
///
/** Interface representing a ManagedDatabaseVulnerabilityAssessmentScans. */
export interface ManagedDatabaseVulnerabilityAssessmentScans {
/**
* Lists the vulnerability assessment scans of 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 managedInstanceName The name of the managed instance.
* @param databaseName The name of the database.
* @param vulnerabilityAssessmentName The name of the vulnerability assessment.
* @param options The options parameters.
*/
listByDatabase(
resourceGroupName: string,
managedInstanceName: string,
databaseName: string,
vulnerabilityAssessmentName: VulnerabilityAssessmentName,
options?: ManagedDatabaseVulnerabilityAssessmentScansListByDatabaseOptionalParams
): PagedAsyncIterableIterator;
/**
* Executes a Vulnerability Assessment database scan.
* @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 managedInstanceName The name of the managed instance.
* @param databaseName The name of the database.
* @param vulnerabilityAssessmentName The name of the vulnerability assessment.
* @param scanId The vulnerability assessment scan Id of the scan to retrieve.
* @param options The options parameters.
*/
beginInitiateScan(
resourceGroupName: string,
managedInstanceName: string,
databaseName: string,
vulnerabilityAssessmentName: VulnerabilityAssessmentName,
scanId: string,
options?: ManagedDatabaseVulnerabilityAssessmentScansInitiateScanOptionalParams
): Promise, void>>;
/**
* Executes a Vulnerability Assessment database scan.
* @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 managedInstanceName The name of the managed instance.
* @param databaseName The name of the database.
* @param vulnerabilityAssessmentName The name of the vulnerability assessment.
* @param scanId The vulnerability assessment scan Id of the scan to retrieve.
* @param options The options parameters.
*/
beginInitiateScanAndWait(
resourceGroupName: string,
managedInstanceName: string,
databaseName: string,
vulnerabilityAssessmentName: VulnerabilityAssessmentName,
scanId: string,
options?: ManagedDatabaseVulnerabilityAssessmentScansInitiateScanOptionalParams
): Promise;
/**
* Convert an existing scan result to a human readable format. If already exists nothing happens
* @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 managedInstanceName The name of the managed instance.
* @param databaseName The name of the scanned database.
* @param vulnerabilityAssessmentName The name of the vulnerability assessment.
* @param scanId The vulnerability assessment scan Id.
* @param options The options parameters.
*/
export(
resourceGroupName: string,
managedInstanceName: string,
databaseName: string,
vulnerabilityAssessmentName: VulnerabilityAssessmentName,
scanId: string,
options?: ManagedDatabaseVulnerabilityAssessmentScansExportOptionalParams
): Promise;
/**
* Gets a vulnerability assessment scan record of 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 managedInstanceName The name of the managed instance.
* @param databaseName The name of the database.
* @param vulnerabilityAssessmentName The name of the vulnerability assessment.
* @param scanId The vulnerability assessment scan Id of the scan to retrieve.
* @param options The options parameters.
*/
get(
resourceGroupName: string,
managedInstanceName: string,
databaseName: string,
vulnerabilityAssessmentName: VulnerabilityAssessmentName,
scanId: string,
options?: ManagedDatabaseVulnerabilityAssessmentScansGetOptionalParams
): Promise;
}