@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
12 lines • 380 B
TypeScript
import type { DatabaseDefinition } from "./DatabaseDefinition.js";
export interface DatabaseRequest extends DatabaseDefinition {
/** Throughput for this database. */
throughput?: number;
maxThroughput?: number;
autoUpgradePolicy?: {
throughputPolicy: {
incrementPercent: number;
};
};
}
//# sourceMappingURL=DatabaseRequest.d.ts.map