X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c276ce4c8dd3cf27ad6d17eca9af473f353fda55..c7e85a03f2726bd20bc10aeb9edb2cc826f16909:/src/models/collection.ts diff --git a/src/models/collection.ts b/src/models/collection.ts index f8e38f9a0f..2b16ea2523 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', +}