import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { DatabaseOperations } from "../operationsInterfaces"; import { SqlManagementClient } from "../sqlManagementClient"; import { DatabaseOperation, DatabaseOperationsListByDatabaseOptionalParams, DatabaseOperationsCancelOptionalParams } from "../models"; /** Class containing DatabaseOperations operations. */ export declare class DatabaseOperationsImpl implements DatabaseOperations { private readonly client; /** * Initialize a new instance of the class DatabaseOperations class. * @param client Reference to the service client */ constructor(client: SqlManagementClient); /** * Gets a list of operations performed on the 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?: DatabaseOperationsListByDatabaseOptionalParams): PagedAsyncIterableIterator; private listByDatabasePagingPage; private listByDatabasePagingAll; /** * Cancels the asynchronous operation on the 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 operationId The operation identifier. * @param options The options parameters. */ cancel(resourceGroupName: string, serverName: string, databaseName: string, operationId: string, options?: DatabaseOperationsCancelOptionalParams): Promise; /** * Gets a list of operations performed on the 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; /** * 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=databaseOperations.d.ts.map