import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { ManagedDatabaseQueries } from "../operationsInterfaces"; import { SqlManagementClient } from "../sqlManagementClient"; import { QueryStatistics, ManagedDatabaseQueriesListByQueryOptionalParams, ManagedDatabaseQueriesGetOptionalParams, ManagedDatabaseQueriesGetResponse } from "../models"; /** Class containing ManagedDatabaseQueries operations. */ export declare class ManagedDatabaseQueriesImpl implements ManagedDatabaseQueries { private readonly client; /** * Initialize a new instance of the class ManagedDatabaseQueries class. * @param client Reference to the service client */ constructor(client: SqlManagementClient); /** * Get query execution statistics by query id. * @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 queryId * @param options The options parameters. */ listByQuery(resourceGroupName: string, managedInstanceName: string, databaseName: string, queryId: string, options?: ManagedDatabaseQueriesListByQueryOptionalParams): PagedAsyncIterableIterator; private listByQueryPagingPage; private listByQueryPagingAll; /** * Get query by query id. * @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 queryId * @param options The options parameters. */ get(resourceGroupName: string, managedInstanceName: string, databaseName: string, queryId: string, options?: ManagedDatabaseQueriesGetOptionalParams): Promise; /** * Get query execution statistics by query id. * @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 queryId * @param options The options parameters. */ private _listByQuery; /** * ListByQueryNext * @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 queryId * @param nextLink The nextLink from the previous successful call to the ListByQuery method. * @param options The options parameters. */ private _listByQueryNext; } //# sourceMappingURL=managedDatabaseQueries.d.ts.map