import type { CosmosDBManagementContext as Client } from "../index.js"; import type { _MetricListResult, Metric, _UsagesResult, Usage, _MetricDefinitionsListResult, MetricDefinition } from "../../models/models.js"; import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; import type { CollectionListMetricDefinitionsOptionalParams, CollectionListUsagesOptionalParams, CollectionListMetricsOptionalParams } from "./options.js"; import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; export declare function _listMetricDefinitionsSend(context: Client, resourceGroupName: string, accountName: string, databaseRid: string, collectionRid: string, options?: CollectionListMetricDefinitionsOptionalParams): StreamableMethod; export declare function _listMetricDefinitionsDeserialize(result: PathUncheckedResponse): Promise<_MetricDefinitionsListResult>; /** Retrieves metric definitions for the given collection. */ export declare function listMetricDefinitions(context: Client, resourceGroupName: string, accountName: string, databaseRid: string, collectionRid: string, options?: CollectionListMetricDefinitionsOptionalParams): PagedAsyncIterableIterator; export declare function _listUsagesSend(context: Client, resourceGroupName: string, accountName: string, databaseRid: string, collectionRid: string, options?: CollectionListUsagesOptionalParams): StreamableMethod; export declare function _listUsagesDeserialize(result: PathUncheckedResponse): Promise<_UsagesResult>; /** Retrieves the usages (most recent storage data) for the given collection. */ export declare function listUsages(context: Client, resourceGroupName: string, accountName: string, databaseRid: string, collectionRid: string, options?: CollectionListUsagesOptionalParams): PagedAsyncIterableIterator; export declare function _listMetricsSend(context: Client, resourceGroupName: string, accountName: string, databaseRid: string, collectionRid: string, filter: string, options?: CollectionListMetricsOptionalParams): StreamableMethod; export declare function _listMetricsDeserialize(result: PathUncheckedResponse): Promise<_MetricListResult>; /** Retrieves the metrics determined by the given filter for the given database account and collection. */ export declare function listMetrics(context: Client, resourceGroupName: string, accountName: string, databaseRid: string, collectionRid: string, filter: string, options?: CollectionListMetricsOptionalParams): PagedAsyncIterableIterator; //# sourceMappingURL=operations.d.ts.map