@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
14 lines • 554 B
TypeScript
import type { ContainerDefinition } from "./ContainerDefinition.js";
import type { PartitionKeyDefinition } from "../../documents/index.js";
import type { VerboseOmit } from "../../utils/types.js";
export interface ContainerRequest extends VerboseOmit<ContainerDefinition, "partitionKey"> {
throughput?: number;
maxThroughput?: number;
autoUpgradePolicy?: {
throughputPolicy: {
incrementPercent: number;
};
};
partitionKey?: string | PartitionKeyDefinition;
}
//# sourceMappingURL=ContainerRequest.d.ts.map