1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { Resource as R } from "./resource";
6 import { Resource } from "../common/api/common-resource-service";
7 import { ResourceKind } from "./kinds";
9 export interface Collection extends R {
12 export interface CollectionResource extends Resource {
13 kind: ResourceKind.Collection;
17 portableDataHash: string;
19 replicationDesired: number;
20 replicationConfirmed: number;
21 replicationConfirmedAt: string;