X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/f5c0cb11102a006cda59711f29458b7569b9a21f..ca091dbfbc7df1a3f81eca2b16925b3225d43138:/src/models/collection.ts diff --git a/src/models/collection.ts b/src/models/collection.ts index f8e38f9a..2b16ea25 100644 --- a/src/models/collection.ts +++ b/src/models/collection.ts @@ -14,8 +14,17 @@ export interface CollectionResource extends TrashableResource { replicationDesired: number; replicationConfirmed: number; replicationConfirmedAt: string; + storageClassesDesired: string[]; + storageClassesConfirmed: string[]; + storageClassesConfirmedAt: string; } export const getCollectionUrl = (uuid: string) => { return `/collections/${uuid}`; }; + +export enum CollectionType { + GENERAL = 'nil', + OUTPUT = 'output', + LOG = 'log', +}