import type { CosmosDBManagementContext } from "../../api/cosmosDBManagementContext.js"; import type { RestorableSqlDatabasesListOptionalParams } from "../../api/restorableSqlDatabases/options.js"; import type { RestorableSqlDatabaseGetResult } from "../../models/models.js"; import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; /** Interface representing a RestorableSqlDatabases operations. */ export interface RestorableSqlDatabasesOperations { /** Show the event feed of all mutations done on all the Azure Cosmos DB SQL databases under the restorable account. This helps in scenario where database was accidentally deleted to get the deletion time. This API requires 'Microsoft.DocumentDB/locations/restorableDatabaseAccounts/.../read' permission */ list: (location: string, instanceId: string, options?: RestorableSqlDatabasesListOptionalParams) => PagedAsyncIterableIterator; } export declare function _getRestorableSqlDatabasesOperations(context: CosmosDBManagementContext): RestorableSqlDatabasesOperations; //# sourceMappingURL=index.d.ts.map