import type { CosmosDBManagementContext as Client } from "../index.js"; import type { _PartitionMetricListResult, PartitionMetric, _PartitionUsagesResult, PartitionUsage } from "../../models/models.js"; import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; import type { CollectionPartitionListUsagesOptionalParams, CollectionPartitionListMetricsOptionalParams } from "./options.js"; import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; export declare function _listUsagesSend(context: Client, resourceGroupName: string, accountName: string, databaseRid: string, collectionRid: string, options?: CollectionPartitionListUsagesOptionalParams): StreamableMethod; export declare function _listUsagesDeserialize(result: PathUncheckedResponse): Promise<_PartitionUsagesResult>; /** Retrieves the usages (most recent storage data) for the given collection, split by partition. */ export declare function listUsages(context: Client, resourceGroupName: string, accountName: string, databaseRid: string, collectionRid: string, options?: CollectionPartitionListUsagesOptionalParams): PagedAsyncIterableIterator; export declare function _listMetricsSend(context: Client, resourceGroupName: string, accountName: string, databaseRid: string, collectionRid: string, filter: string, options?: CollectionPartitionListMetricsOptionalParams): StreamableMethod; export declare function _listMetricsDeserialize(result: PathUncheckedResponse): Promise<_PartitionMetricListResult>; /** Retrieves the metrics determined by the given filter for the given collection, split by partition. */ export declare function listMetrics(context: Client, resourceGroupName: string, accountName: string, databaseRid: string, collectionRid: string, filter: string, options?: CollectionPartitionListMetricsOptionalParams): PagedAsyncIterableIterator; //# sourceMappingURL=operations.d.ts.map