projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
21128: readonly collections good Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox...
[arvados.git]
/
src
/
models
/
ssh-key.ts
1
// Copyright (C) The Arvados Authors. All rights reserved.
2
//
3
// SPDX-License-Identifier: AGPL-3.0
4
5
import { Resource } from 'models/resource';
6
7
export enum KeyType {
8
SSH = 'SSH'
9
}
10
11
export interface SshKeyResource extends Resource {
12
name: string;
13
keyType: KeyType;
14
authorizedUserUuid: string;
15
publicKey: string;
16
expiresAt: string;
17
}