api-response
[arvados-workbench2.git] / src / models / collection.ts
index cf5b4e68ce0d2d36331715461a4879b593cd5dcb..a25afeb1281bd8d0e8d13bc1367d91afed03598a 100644 (file)
@@ -2,15 +2,10 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import { Resource as R } from "./resource";
-import { Resource } from "../common/api/common-resource-service";
-import { ResourceKind } from "./kinds";
+import { ResourceKind, TrashableResource } from "./resource";
 
-export interface Collection extends R {
-}
-
-export interface CollectionResource extends Resource {
-    kind: ResourceKind.Collection;
+export interface CollectionResource extends TrashableResource {
+    kind: ResourceKind.COLLECTION;
     name: string;
     description: string;
     properties: any;
@@ -19,7 +14,12 @@ export interface CollectionResource extends Resource {
     replicationDesired: number;
     replicationConfirmed: number;
     replicationConfirmedAt: string;
-    trashAt: string;
-    deleteAt: string;
-    isTrashed: boolean;
+    fileNames: string;
+    storageClassesDesired: string[];
+    storageClassesConfirmed: string[];
+    storageClassesConfirmedAt: string;
 }
+
+export const getCollectionUrl = (uuid: string) => {
+    return `/collections/${uuid}`;
+};