import type { PagedAsyncIterableIterator } from "@azure/core-paging"; import type { RestorableSqlResources } from "../operationsInterfaces/index.js"; import type { CosmosDBManagementClient } from "../cosmosDBManagementClient.js"; import type { RestorableSqlResourcesGetResult, RestorableSqlResourcesListOptionalParams } from "../models/index.js"; /** Class containing RestorableSqlResources operations. */ export declare class RestorableSqlResourcesImpl implements RestorableSqlResources { private readonly client; /** * Initialize a new instance of the class RestorableSqlResources class. * @param client Reference to the service client */ constructor(client: CosmosDBManagementClient); /** * Return a list of database and container combo that exist on the account at the given timestamp and * location. This helps in scenarios to validate what resources exist at given timestamp and location. * This API requires 'Microsoft.DocumentDB/locations/restorableDatabaseAccounts/.../read' permission. * @param location Cosmos DB region, with spaces between words and each word capitalized. * @param instanceId The instanceId GUID of a restorable database account. * @param options The options parameters. */ list(location: string, instanceId: string, options?: RestorableSqlResourcesListOptionalParams): PagedAsyncIterableIterator; private listPagingPage; private listPagingAll; /** * Return a list of database and container combo that exist on the account at the given timestamp and * location. This helps in scenarios to validate what resources exist at given timestamp and location. * This API requires 'Microsoft.DocumentDB/locations/restorableDatabaseAccounts/.../read' permission. * @param location Cosmos DB region, with spaces between words and each word capitalized. * @param instanceId The instanceId GUID of a restorable database account. * @param options The options parameters. */ private _list; } //# sourceMappingURL=restorableSqlResources.d.ts.map