mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-23 02:41:39 +00:00
* Adding computed properties to Settings tab for containers * Fixing files for prettier and a test snapshot
53 lines
1.6 KiB
TypeScript
53 lines
1.6 KiB
TypeScript
import ko from "knockout";
|
|
import * as DataModels from "../../../Contracts/DataModels";
|
|
import * as ViewModels from "../../../Contracts/ViewModels";
|
|
import Explorer from "../../Explorer";
|
|
|
|
export const container = new Explorer();
|
|
|
|
export const collection = {
|
|
container: container,
|
|
databaseId: "test",
|
|
id: ko.observable<string>("test"),
|
|
defaultTtl: ko.observable<number>(5),
|
|
analyticalStorageTtl: ko.observable<number>(undefined),
|
|
indexingPolicy: ko.observable<DataModels.IndexingPolicy>({
|
|
automatic: true,
|
|
indexingMode: "consistent",
|
|
includedPaths: [],
|
|
excludedPaths: [],
|
|
}),
|
|
uniqueKeyPolicy: {} as DataModels.UniqueKeyPolicy,
|
|
usageSizeInKB: ko.observable(100),
|
|
offer: ko.observable<DataModels.Offer>({
|
|
autoscaleMaxThroughput: undefined,
|
|
manualThroughput: 10000,
|
|
minimumThroughput: 6000,
|
|
id: "offer",
|
|
offerReplacePending: false,
|
|
}),
|
|
conflictResolutionPolicy: ko.observable<DataModels.ConflictResolutionPolicy>(
|
|
{} as DataModels.ConflictResolutionPolicy,
|
|
),
|
|
changeFeedPolicy: ko.observable<DataModels.ChangeFeedPolicy>({} as DataModels.ChangeFeedPolicy),
|
|
geospatialConfig: ko.observable<DataModels.GeospatialConfig>({} as DataModels.GeospatialConfig),
|
|
getDatabase: () => {
|
|
return;
|
|
},
|
|
partitionKey: {
|
|
paths: [],
|
|
kind: "hash",
|
|
version: 2,
|
|
},
|
|
partitionKeyProperties: ["partitionKey"],
|
|
computedProperties: ko.observable<DataModels.ComputedProperties>([
|
|
{
|
|
name: "queryName",
|
|
query: "query",
|
|
},
|
|
]),
|
|
readSettings: () => {
|
|
return;
|
|
},
|
|
} as unknown as ViewModels.Collection;
|