import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { RecoverableManagedDatabases } from "../operationsInterfaces"; import { SqlManagementClient } from "../sqlManagementClient"; import { RecoverableManagedDatabase, RecoverableManagedDatabasesListByInstanceOptionalParams, RecoverableManagedDatabasesGetOptionalParams, RecoverableManagedDatabasesGetResponse } from "../models"; /** Class containing RecoverableManagedDatabases operations. */ export declare class RecoverableManagedDatabasesImpl implements RecoverableManagedDatabases { private readonly client; /** * Initialize a new instance of the class RecoverableManagedDatabases class. * @param client Reference to the service client */ constructor(client: SqlManagementClient); /** * Gets a list of recoverable managed databases. * @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 options The options parameters. */ listByInstance(resourceGroupName: string, managedInstanceName: string, options?: RecoverableManagedDatabasesListByInstanceOptionalParams): PagedAsyncIterableIterator; private listByInstancePagingPage; private listByInstancePagingAll; /** * Gets a list of recoverable managed databases. * @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 options The options parameters. */ private _listByInstance; /** * Gets a recoverable managed 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 recoverableDatabaseName * @param options The options parameters. */ get(resourceGroupName: string, managedInstanceName: string, recoverableDatabaseName: string, options?: RecoverableManagedDatabasesGetOptionalParams): Promise; /** * ListByInstanceNext * @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 nextLink The nextLink from the previous successful call to the ListByInstance method. * @param options The options parameters. */ private _listByInstanceNext; } //# sourceMappingURL=recoverableManagedDatabases.d.ts.map